Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SaveAs, Dialog Box, Help Needed 1

Status
Not open for further replies.

OzzieOwl

Technical User
Dec 13, 2001
45
GB
Hi

I am trying to get excel to open the SaveAs Dialog box through VBA, and so enable the user to select filepath & filename, but I am struggling with the syntax, any help greatly appreciated.

Thanx

Martin

 
to show the actual Excel SaveAs dialog box:

Code:
Application.Dialogs(xlDialogSaveAs).Show

you may also want to play around with this:

Code:
Debug.Print Application.GetSaveAsFilename
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top