CAn anyone help me how to create a file browser
using excel macro?
Thank you guyss.
Hi imBaCodes,
This thread already marked as solved without any reply.
You can share the solution here. It will help another members who has same problem like you.
Thank You
Dim diaFolder As FileDialog
' Open the file dialog
Set diaFolder = Application.FileDialog(msoFileDialogFolderPicker)
diaFolder.AllowMultiSelect = False
diaFolder.Show
MsgBox diaFolder.SelectedItems(1)
Set diaFolder = Nothing
i found it for myself .. sorry for not Posting the Solution
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.