ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   excel vba browse file (https://www.excelbanter.com/excel-programming/306150-excel-vba-browse-file.html)

jazzy

excel vba browse file
 
I am trying to find a way to get a command button in excel to brows
through files so you can pick the file you want to open when you clic
on it

--
Message posted from http://www.ExcelForum.com


Chip Pearson

excel vba browse file
 
See Application.GetOpenFilename. E.g.,

Dim FName As Variant
FName = Application.GetOpenFilename("Excel Files (*.xls),*.xls")
If FName = False Then
' user clicked cancel
Else
MsgBox FName
End If


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"jazzy " wrote in message
...
I am trying to find a way to get a command button in excel to

browse
through files so you can pick the file you want to open when

you click
on it.


---
Message posted from http://www.ExcelForum.com/




jazzy

excel vba browse file
 
Thank you for tryng to help me but what if the file u want to open i
not an excel file its an access fil

--
Message posted from http://www.ExcelForum.com


Chip Pearson

excel vba browse file
 
Try

Dim FName As Variant
FName = Application.GetOpenFilename("All files (*.*),*.*")
If FName = False Then
' user clicked cancel
Else
MsgBox FName
End If


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"jazzy " wrote in message
...
Thank you for tryng to help me but what if the file u want to

open is
not an excel file its an access file


---
Message posted from http://www.ExcelForum.com/





All times are GMT +1. The time now is 05:05 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com