I want my VBA code to execute only if the file format is xls. Is this correct? I'm doing this:
#If ActiveWorkbook.FileFormat = xlExcel5 Then
//my code
Else
//my code
#End if
I tested using Excel 2010 (xlsm file) and it worked fine. I already used PHPExcel library and this is why I chose the xlExcel5, because It's similar to the excel5 I had to choose if I wanted to work with the old excel versions (2003 or lower) while programming in Php.
ActiveWorkbook.FileFormatwill not give you the Excel Version. It will only give you the file format as you already mentioned. If you want to check the Excel Version on a particular pc then you have to useIf Val(Application.Version) < 12 ThenWhat exatcly are you trying to achieve? – Siddharth Rout Jan 30 at 14:03xlExcel5is 39. You can check that by typing?xlExcel5in the immediate window. Similarly the value ofFileFormat (xlExcel8)forxlsis 56. For more on fileformats, see this link msdn.microsoft.com/en-us/library/office/… – Siddharth Rout Jan 30 at 14:10It DependsIf you have the VBA convertor installed then yes you can have axlExcel5format generated in a 2010 excel. If you do not have the convertor then thexlsfile will be saved without the VBA project if any.xlExcel5format is theExcel 5.0/95 format– Siddharth Rout Jan 30 at 14:20