M Microedge Active Member Joined Apr 17, 2007 Messages 40 Reaction score 0 Jun 12, 2007 #1 I recorded a macro to jump from sheet to sheet. The macro runs ok but you can see the screen flashing when the macro runs as it jumps from sheet to sheet. Does anyone know how I can run the macro in the background?
I recorded a macro to jump from sheet to sheet. The macro runs ok but you can see the screen flashing when the macro runs as it jumps from sheet to sheet. Does anyone know how I can run the macro in the background?
L Lockjaw Member Joined Apr 18, 2007 Messages 10 Reaction score 0 Jun 13, 2007 #2 Application.screenupdating = false This will turn off the visual you are seeing when the macro jumps from sheet to sheet.
Application.screenupdating = false This will turn off the visual you are seeing when the macro jumps from sheet to sheet.
M Microedge Active Member Joined Apr 17, 2007 Messages 40 Reaction score 0 Jun 13, 2007 #3 Ok Thanks i have tried it and it works