Macro not to check compatibility when saving this workbook

  • Thread starter Thread starter fruitchunk
  • Start date Start date
F

fruitchunk

I recorded a macro in excel, it works fine but stops by "Compatibility
Checker".
Can I have it in the macro "not to check compatibility when saving this
workbook", I don't want to disable the Compatibility Checker completely in
excel only in this macro.
Please help.
 
Use this in 2007 and up and like Patrick told you stay in your first thread

ThisWorkbook.CheckCompatibility = False
ThisWorkbook.Save
 
Back
Top