JumboCactuar
Well-known Member
- Joined
- Nov 16, 2016
- Messages
- 788
- Office Version
- 365
- Platform
- Windows
Hi,
macro is set up as below
Now usually it works fine but the macro im working with does calculations on 30000 ish rows (takes around 90 seconds) and causes Excel to display "Not Responding" for a short time and i see some of the calculations happening.
Anyone experienced this? And is there anything i can add to application.screenupdating to make sure the window doesnt change at all while the macro is running?
Thanks in advance
macro is set up as below
Code:
Sub Start Macro()
application.screenupdating = false
call macro2
application.screenupdating = true
End Sub
Now usually it works fine but the macro im working with does calculations on 30000 ish rows (takes around 90 seconds) and causes Excel to display "Not Responding" for a short time and i see some of the calculations happening.
Anyone experienced this? And is there anything i can add to application.screenupdating to make sure the window doesnt change at all while the macro is running?
Thanks in advance