This Excel VBA tutorial explains how to select multiple files in dialog using Application.GetOpenFileName.
Excel VBA select file in dialog
In many applications, you would see a "browse" button where you can select files for the application to process.
In Excel VBA, you can create a Macro to open the browse dialog. After you select the target file, the file path is stored in a VBA Array, then you can loop through the array to get items, and then do whatever you like with the file.
The...
Read More