Hello all,
I have multiple excels in a folder. Most of the excels have a tab called 'summary' along with other tabs.
I want to take all the files from a folder - take the data in 'summary' tab from all the excels and union the data.
The schema for all the 'summary' tabs is almost similar( meaning - there could be few less and extra columns but most of the times. That's okay, its allowed to have NULL values if a particular column is not present while performing a union)
This is what I tried
Main Workflow: I tried starting with a Directory tool.
Macro1: Then created a macro which brings only the list of sheet names.
Then I concatenated the Full Path with "|||<List of Sheet Names>" (Already applied a filter to get only 'summary' from Sheet Names column)

Macro 2: iterative: I tried to send the new full path( Full path plus summary sheet name) as parameter into the new macro which had a a union tool.
Can someone please help as I am getting the data from same file repeatedly instead of all the files.