I have set
Application.ScreenUpdating = False
And, it turns off screen updating except for one thing. When i activate a different workbook (with Windows(bo).Activate) the screen changes to that different workbook. Since this is within a loop, it is happening many times.
And, this tremendously slows down the macro execution, which is what I was trying to eliminate by setting ScreenUpdating=False in the first place. Is there a more thorough way to turn off ALL screen updating so this macro can execute faster and will not show changing windows when it hits the Windows.Activate statement?
Thank you.
Application.ScreenUpdating = False
And, it turns off screen updating except for one thing. When i activate a different workbook (with Windows(bo).Activate) the screen changes to that different workbook. Since this is within a loop, it is happening many times.
And, this tremendously slows down the macro execution, which is what I was trying to eliminate by setting ScreenUpdating=False in the first place. Is there a more thorough way to turn off ALL screen updating so this macro can execute faster and will not show changing windows when it hits the Windows.Activate statement?
Thank you.