open save as dialog box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am exporting information from a table to an Excel file. I can open the
Excel file for the user but now I want to open the Save As dialog box so they
can save the file to a location and name of their choice and NOT what I named
the file programmatically. Any suggestions on how to do this is appreciated.

Following is the code I am using to open the file:

With ExcelApp
.Visible = True
.Application.WindowState = xlMaximized
.Workbooks.Open (TargetFile)

End With
 
Back
Top