macros over different sheets

R

Robb.rich

can you keep the current sheet viewable whilst a macro updates or copies from
another sheet, when i try this the screen jumps.
 
G

Gary''s Student

Application.ScreenUpdating = False
do_some_sutff
Application.ScreenUpdating = True
 
Top