View Single Post
 
Old 01-23-2014, 11:41 PM
jamesdann jamesdann is offline Windows 7 32bit Office 2010 32bit
Banned
 
Join Date: Jan 2014
Posts: 26
jamesdann is on a distinguished road
Default

To disable compatibility warnings follow these steps...
Using Excel(2010)
Go on the 'File' tab
Click on 'Info' from menu options
Now click on 'Check for Issues'
Now click on 'Check Compatibility'
Now clear the check 'Compatibility when you save this Workbook' box

Using Excel(2007)
Go on the 'Office' button
Now click on 'Prepare' from the menu
Now click on 'Run Compatibility Checker'
Now clear the check 'Compatibility when you save this Workbook' box

You can also control Compatibility Checker with VBA code as like this...
Make it turn off: ActiveWorkbook.CheckCompatibility = False
Make it turn on: ActiveWorkbook.CheckCompatibility = True
Where ActiveWorkbook is name of your current file.
Reply With Quote