Ozgrid, Experts in Microsoft Excel Spreadsheets
Javascript DHTML Drop Down Menu Powered by dhtml-menu-builder.com
Learn how to create Excel dashboards.

Excel: Get File Name From User to Open Workbook Or Save Workbook

Information Helpful? Why Not Donate.

TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | More Free Downloads.. Best Value: Finance Templates Bundle

Back to: Excel VBA . Got any Excel/VBA Questions? Free Excel Help

Retrieve a workbook name and file path:

At some time during VBA coding it may be necessary to retrieve a file name and it's full path. You could use an Inputbox, but you would be asking for problems (typos). The best way to do this is with the "GetOpenFileName" and "GetSaveAsFilename" dialog. This will open the standard Open or Save as dialog and allow you to retrieve the name and full path.

Sub RetrieveFileName()

Dim sFileName As String



	'Show the open dialog and pass the selected _

	file name to the String variable "sFileName"

	

	sFileName = Application.GetOpenFilename

	'They have cancelled.

	If sFileName = "False" Then Exit Sub

	MsgBox sFileName

End Sub

Get the file path and name to save a Workbook as:

Sub ParseSaveAsName()

Dim sFileName As String

	'Show the open dialog and pass the selected file name  

	to the String variable "sFileName" 

	sFileName = Application.GetSaveAsFilename

	

	'They have cancelled 

	If sFileName = "False" Then Exit Sub 

	ThisWorkbook.SaveAs sFileName

End Sub

New & Less Than You Think: List Managers | Working With Excel Sheets In VBA | Excel Charting Lessons | Delete rows by condition | TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | More Free Downloads.. Best Value: Finance Templates Bundle

Excel Dashboard Reports & Excel Dashboard Charts 50% Off Become an ExcelUser Affiliate & Earn Money

Special! Free Choice of Complete Excel Training Course OR Excel Add-ins Collection on all purchases totaling over $64.00. ALL purchases totaling over $150.00 gets you BOTH! Purchases MUST be made via this site. Send payment proof to special@ozgrid.com 31 days after purchase date.



Instant Download and Money Back Guarantee on Most Software

Try out: Analyzer XL | Downloader XL | Smart VBA | Trader XL Pro (best value) | ConsoXL | MergeXL | O2OLAP for Excel | MORE>>

Excel Trader Package Technical Analysis in Excel With $139.00 of FREE software!

Microsoft ® and Microsoft Excel ® are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft

GIVE YOURSELF OR YOUR COMPANY 24/7 MICROSOFT EXCEL SUPPORT & QUESTIONS