Save As File Type

  • Thread starter Thread starter swedish max
  • Start date Start date
S

swedish max

Hi there,

I have written a macro to copy a worksheet from an Excel spreadshee
into a new workbook. I then wish to save this wookbook as a CSV file.

The problem is that I want the Save As box to appear for the user, bu
I want to to default automatically to CSV in the file type drop down.
The location and name of where the file is being saved depends on th
user, the only constant is that the file must be CSV.

Can anyone help?

Thanks

Ma
 
Dim fileSaveName

fileSaveName = Application.GetSaveAsFilename( _
fileFilter:="CSV Files (*.csv), *.csv")
If fileSaveName <> False Then
ActiveWorkbook.SaveAs fileSaveName
End If

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"swedish max" <[email protected]>
wrote in message
news:[email protected]...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top