PK
11-15-2002, 10:06 AM
I have a simple macro (visual basic) in Excel that needs to move from cell to cell, usually with something like this:
ActiveCell.Offset(0, 1).Select
Often, the move is between tabs or to cells that are off the screen. I know that there is a command I can put in my code that will stop all this from being displayed while it happens.
What is that command? Essentially, I want the macro to start with
Don't display anything while you jump around and set up all the data.
and then end with
OK, you can go back to a normal display mode.
Thanks in advance.
ActiveCell.Offset(0, 1).Select
Often, the move is between tabs or to cells that are off the screen. I know that there is a command I can put in my code that will stop all this from being displayed while it happens.
What is that command? Essentially, I want the macro to start with
Don't display anything while you jump around and set up all the data.
and then end with
OK, you can go back to a normal display mode.
Thanks in advance.