SaveAs command doesn't save extension

  • Thread starter Thread starter stewart
  • Start date Start date
S

stewart

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
 
Hi Stewart,

Try:

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

Better would be:

'=============>>
Sub Savenew()
Dim NewBook As Workbook
Dim fName As Variant

Set NewBook = Workbooks.Add
Do
fName = Application.GetSaveAsFilename _
(fileFilter:="Excel Files (*.xls), *.xls")

Loop Until fName <> False
NewBook.SaveAs Filename:=fName, _
FileFormat:=xlWorkbookNormal
End Sub
'<<=============
 
Try this:

Sub savenew()
Dim NewBook As Workbook
Dim fname As String
Set NewBook = Workbooks.Add
Do
fname = Application.GetSaveAsFilename( _
fileFilter:="Excel Files (*.xls), *.xls")

Loop Until fname <> ""
NewBook.SaveAs Filename:=fname
End Sub


Mike F
 
Back
Top