Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAGlad to have this one out the way!
Thanks to @OllieClarke for the help, and @NicoleJohnson's solution, which helped me create the super-condensed Version 2 (and taught me a neat little trick about the Dynamic Rename: if the multiple Excel files you're reading in have a single sheet with different names, the Dynamic Rename will still read them all in.)
My solution.
Macro is 2 step.
Step 1 is to read sheet names.
Step 2 is to read Contents of file by Sheet Names.
Step1
Step 2
My solution seems to be similar to most others. I used a directory tool to get list of filenames with wildcard file?.xlsx then passed those to a batch macro which reads in filename+sheetname and returns all spreadsheet data including filename, sheetname appended at the end.
My Solution.