I have an Excel 2007 workbook that contains a macro that performs calculations and exports results into a seperate "report" workbook. The initial creation of the report workbook is handled by the following code:
My workbook is now being used by users who have Excel 2007, but who's group policy is to open / save workbooks in (97 - 2003) compatability mode. This causes trouble in my export process due to Row and Column size differences between the 2007 .xlsx and the combatability mode files. Is there an easy way to circumvent the default compatability mode setting?
Thanks for any suggestions.
Code:
Set reportWorkbook = Workbooks.Add
My workbook is now being used by users who have Excel 2007, but who's group policy is to open / save workbooks in (97 - 2003) compatability mode. This causes trouble in my export process due to Row and Column size differences between the 2007 .xlsx and the combatability mode files. Is there an easy way to circumvent the default compatability mode setting?
Thanks for any suggestions.