A Alan Oct 28, 2008 #1 Is it possible in VBA to determine the file format (Excel 97, etc.) of a spreadsheet without opening the file? Thanks, Alan
Is it possible in VBA to determine the file format (Excel 97, etc.) of a spreadsheet without opening the file? Thanks, Alan
D Daniel.C Oct 28, 2008 #2 Try : Set fso = CreateObject("scripting.filesystemobject") Set f = fso.getfile("e:\temp\sample.xls") MsgBox f.Type I don't know better... Daniel
Try : Set fso = CreateObject("scripting.filesystemobject") Set f = fso.getfile("e:\temp\sample.xls") MsgBox f.Type I don't know better... Daniel