How can I access each File with Application.GetOpenFilename in Excel? I know the option Multiselect must by set to True.
My old VBA code was:
objA = Application.GetOpenFilename
A contains the path and filename
I call another macro and pass through the value of A
Now I want to do the same for a group of selected files. If objB contains the selection. How can I determine A for each file in the selection??
My old VBA code was:
objA = Application.GetOpenFilename
A contains the path and filename
I call another macro and pass through the value of A
Now I want to do the same for a group of selected files. If objB contains the selection. How can I determine A for each file in the selection??