here’s the process that i am running from a macro:
- i open a worksheet
- i add data to the worksheet
- i save it
- i close it
and i repeat the steps: 1, 2, 3… etc. (when i say I, i mean the stupid macro)
is it possible to open the worksheet in the background so that the user doesnt actually see that the worksheet is being opened?
Try using
Application.ScreenUpdating. Set it to false before opening the worksheet, add the data and set it back to true afterwards.