Be the first user to complete this post

  • 0
Add to List

Excel-VBA : Open a Excel File using Another Excel File using Browse Option.

This tutorial will teach you how to Open a Excel File using Another Excel File using Browse Option. We will be using Application.GetOpenFile() function to accomplish this.

NOTE: You can define any type file you want to , just set the proper filter.

FileFilter:="Excel Files *.xls* (*.xls*) - to open Excel files

FileFilter:="Excel Files *.txt* (*.txt*) - To open Text File

NOTE :Do not provide any filter if you want to select any type of file as attachment

Complete Code:

Sub browse()
Dim FSO As Object
Dim blnOpen
strFileToOpen = Application.GetOpenFilename(Title:="Please choose a file to open", _
FileFilter:="Excel Files *.xls* (*.xls*),")
If strFileToOpen = False Then
MsgBox "No file selected.", vbExclamation, "Sorry!"
Exit Sub
Else
Sheet1.Range("G5").Value = strFileToOpen
Workbooks.Open Filename:=strFileToOpen
End If
End Sub

Browse File - 1
Browse File - 2



Also Read:

  1. VBA-Excel: Get all the WeekDays or Working days in Specified Date Range, (excluding Satudays and Sundays)
  2. VBA Codes - Record Macro
  3. VBA-Excel: Copy/Paste data - Copy the data from a call and paste it to another cell
  4. VBA-Excel: Create Dynamic or Run-time WorkSheets using Macro.
  5. VBA-Excel: Convert Numbers (Rupees) into Words OR Text - Updated Till 1000000 Crore With Decimal Numbers