Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
ActiveWorkbook.FileFormat will 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 use If Val(Application.Version) < 12 Then What exatcly are you trying to achieve? – Siddharth Rout Jan 30 at 14:03
   
In fact what I want is really the file Format. I wanna know if I check it for xlExcel5, I can garantee it's a 2007 or lower version. Or can I have a xlExcel5 format generated in a 2010 excel? – periback2 Jan 30 at 14:07
3  
BTW the value of xlExcel5 is 39. You can check that by typing ?xlExcel5 in the immediate window. Similarly the value of FileFormat (xlExcel8) for xls is 56. For more on fileformats, see this link msdn.microsoft.com/en-us/library/office/… – Siddharth Rout Jan 30 at 14:10
I was typing when you posted the previous comment. let me check your previous comment – Siddharth Rout Jan 30 at 14:13
4  
The above link will answer your first question. For the 2nd, the answer is It Depends If you have the VBA convertor installed then yes you can have a xlExcel5 format generated in a 2010 excel. If you do not have the convertor then the xls file will be saved without the VBA project if any. xlExcel5 format is the Excel 5.0/95 format – Siddharth Rout Jan 30 at 14:20
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.