Re: SaveAs command doesn't save extension

Tech-Archive recommends: Speed Up your PC by fixing your registry



Hi Stewart,

Try:

NewBook.SaveAs Filename:=fName & "xls", _
FileFormat:=xlWorkbookNormal

---
Regards,
Norman



"stewart" <smccallister@xxxxxxxxx> wrote in message
news:1176037647.873368.192150@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
I am trying to pull a SaveAs dialog box from a VB command that will
prompt the user to save their work. The problem is when the user
types in the filename it does not save as an excel file. The user
would have to type the extension themselves and that is not feasible
for this application. Below is the code I got from VB Help. Is there
another way?


sub savenew()
Set NewBook = Workbooks.Add
Do
fName = Application.GetSaveAsFilename
Loop Until fName <> False
NewBook.SaveAs Filename:=fName
end sub



.



Relevant Pages