• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Compatibility Checker in Excel 2007-2013

Abhijeet

Active Member
Hi

I have .xls & .xlsx files when i open .xls file in Excel 2010 then show
Compatibility Checker message box i want to avoid this every file pls tell me any option for this
Plesae tell me how to do this
 
I have macro macro open the files when this message pop up then macro stop when i click on this message then macro pull next file i want to avoid this so please tell me is any method to disable this message
 
Then try one of the code below. Or both.

Code:
ThisWorkBook.DoNotPromptForConvert = true

Code:
workbook.CheckCompatibility = false
 
Back
Top