I'm coding a small programm to extract data from SAP and analyze it in Excel. I'm doing all of this with VBA.
I'm using a function called
Application.ScreenUpdating = False
But whenever i activate a sheet like this
WorkSheets("data_tmp").Activate
it does show on my screen.
So, does the function Activate actually show even when doing the previous ScreenUpdating = False
?
Are other functions showing on screen even though I'm setting screenupdating to false?
Despite the title, this is not entirely about using active and select - it is more about what shows and what doesnt on screen when setting screenupdating on false, and how to prevent the user of seeing anything at all.