Hello welcome to the forum..
1. use the "Don't keep change history" option in Excel
2. Make sure it is open in "Compatibility Mode" xl2007
3.check any images, logo, picture even small they can be large embedded images.
4. saving xls to xl2007 will increase the size 5 times. you can try to copy the contents to another workbook and this will be saved as higher version.
5. delet unused rows and column before exit.
try it first in a dummy file.....
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Dim objSh As Object
For Each objSh In ThisWorkbook.Sheets
objSh.Rows("35:65535").Delete objSh.Columns("P:IV").Delete
Next
ThisWorkbook.Save
Set objSh = Nothing
End sub
6. xlsx are zip files so when we save it to xls(2003) it will include all the xml metadata(formatting etc.) so if the file is in xlsx remove all formatting first before saving to lower version (compatibility)
7.very basic formatting in Office 2007 should be used.
Bookmarks