I'm trying to build a flow which will eventually run a loop. It will read values from a list of individual Excel files and write them to a single master Excel file. I have more or less figured out how to write the steps for the loop, but only when all the individual Excel files are stored into one folder. However, I want to figure out how to deal with a situation where the loop can work even when these individual Excel files are stored in a series of disparate folders.
For reference, the individual Excel files are now stored in various subfolders, all with the same name of 'Docs':

So my first command for PAD is to "Get subfolders in folder", with the folder path as 'File 1', and the folder filter as 'Docs' (see above: File 1 is the main folder in which various subfolders exist):

As far as I can tell, this works when run. PAD correctly collects every folder with the name 'Docs' and stores them in the Variable value: %Folders%

Next, what I want to do is retrieve only the files in these folders with the extension .xlsx, and store them into a %Files% variable so I can run the loop.
But for some reason, I keep getting an error message when I try to use the %Folders% variable as a starting point for this action:

I don't get it...what am I doing wrong?