I have the following statements:
DataFileName = Application.GetOpenFilename(fileFilter:="Text or ASC Files,
*.txt; *.asc", Title:="Select the Data File")
...code
'Saves The File (As Sheetx) And Leaves It Open
ActiveWorkbook.SaveAs
'Saves File As DataFileName But With The Extension Of the File Opened TXT
Format And Not In Excel Format
ActiveWorkbook.SaveAs (DataFileName)
'Receive Syntax Error
ActiveWorkbook.SaveAs (DataFileName, FileFormat:="Excel (*.xls), *.xls")
What am I missing?
Dave Peterson - 16 Aug 2006 21:48 GMT
You have a response at your other post.
> I have the following statements:
>
[quoted text clipped - 14 lines]
>
> What am I missing?

Signature
Dave Peterson