Check Performance Message

keith3700

New Member
Joined
Sep 17, 2010
Messages
19
Office Version
  1. 365
Platform
  1. Windows
I keep getting a "Slow Workbook", "Check Performance" message.
Is there a way of deleting the message using VBA?
I have others using the workbook, and they click the check performance button which removes most of my formatting.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Why is your workbook creating those messages ? Correct the issue ... not cover it up.
 
Upvote 0
Why is your workbook creating those messages ? Correct the issue ... not cover it up.
Hi Logit, thanks for the reply.
I have colored cells on the menu sheets with control buttons.
I don't want to delete the colored cells as it looks bland ...

I am happy with the performance and don't have issues with it ...
Surely I can have the option of turning off this performance message ??
 
Upvote 0
There is a command "Application.DisplayAlerts = False" that can be used to stop some alerts messages from being displayed.

VBA Code:
Sub foo()

Application.DisplayAlerts = False

'your code here

Application.DisplayAlerts = True


End Sub
 
Upvote 0
There is a command "Application.DisplayAlerts = False" that can be used to stop some alerts messages from being displayed.

VBA Code:
Sub foo()

Application.DisplayAlerts = False

'your code here

Application.DisplayAlerts = True


End Sub
Hi Logit, No didn't work.
I placed it in the Private Sub Workbook Open. No luck, so then ran it in a sub, still no good :(
 
Upvote 0
You'll need to determine what is causing the error messages and make the correction.
 
Upvote 0
I keep getting a "Slow Workbook", "Check Performance" message.
Is there a way of deleting the message using VBA?
I'm afraid not. :(
Have a look at this and also the link in its first paragraph.

BTW, I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0

Forum statistics

Threads
1,226,475
Messages
6,191,226
Members
453,648
Latest member
graduateguardian

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top