is there an equivalent to windowsoff in Excel macros?

K

Kiteman22

I am trying to write a macro in Excel and want to stop the display from
changing until the end. 1-2-3 had commands windowsoff and windowson which
achieved this. Is there anyway of doing this in Excel??
 
O

OssieMac

Application.ScreenUpdating = False 'Suppresses updating
Application.ScreenUpdating = True 'Allows screen updating

Regards,

OssieMac
 
N

nayagamvalli

I am trying to write a macro in Excel and want to stop the display from
changing until the end. 1-2-3 had commands windowsoff and windowson which
achieved this. Is there anyway of doing this in Excel??

you can use screenupdation as false, try the below code

Application.ScreenUpdating = False
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top