Silence cell movment during processing...

P

ppsza

Hi,

I'm looking for a way to keep the spreadsheet cell from zipping aroun
all over the screen when my code processes. Anyone know of a way to d
this?

Thanks
 
P

pikus

If I'm understanding your question, put:

Application.ScreenUpdating = False

At the top of your code and:

Application.ScreenUpdating = True

at the end. - Piku
 
Top