Hi All,
Bit of a funny one this but here goes:
Is there any way to stop Excel displaying the normal mouse icon (ie pointer) whilst it is running this:
essentially due to some performance issues the mouse pointer is showing whilst a sheet is calculating which my end users think means the sheet is ready for use, then they start clicking on the sheet which messes up the VBA running, I know i know I should tell my end users to be patient but it's not working - I've managed to ensure that whilst my VBA is running that they cant do anything with the cursor by doing this:
Code: Select all
Application.Cursor = xlDefault
Application.ScreenUpdating = True
but as soon as the call to the .XLA happens the cursor defaults to the pointer and I cant stop the end user from clicking whilst its mid calculation.
any ideas?