I've got a word 2013 macro which is taking quite some time to finish.
The macro is reformatting the document and the Screen keeps updating while the macro is running, which I guess is where word spends most of it's time.
How can I disable screen updating in word in a macro and refresh it when the macro is finished?
Try with adding this line at the beginning of your code:
Application.ScreenUpdating = False
and this at the end:
Application.ScreenUpdating = True
If this doesn't help you need to add more information and possibly post your code.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With