Macro Tab flash

Copper Contributor

I have created a series of macros that use numerous tabs within the workbook.

During a phase I call reset for next occurrence, I reinitialize certain values

that are on different tabs.

When I execute that macro, the different tabs popup as those reinitializations are made.

I don't want to see the tabs flash during the execution, just stay on one tab. How can I turn off the tab flipping/flashing 

1 Reply

@Butch716 Add "Application.Screenupdating = False" at the beginning of the code, and "Application.Screenupdating = True" at the end.