In order to create an approval flow I decided to use for each approval flow a separate excel sheet (called Flow1, Flow2 and so on)
These sheets will contain names that compose the actual approval flow. Names will be listed in rows.
My question is:
How to structure the flow and what activities should I use in order to read the correct sheet and list the names?
the name of the sheet will be given as an input variable of the transaction item.
In this case you can try with Get Workbook Sheets activity to get all the sheet name dynamically.
Use Read range activity and pass the output of Get Workbook Sheets
After proceeding the first example, who can I manage to list the names that I wrote in a specified Sheet?
I was thinking to use a For each to loop the list of sheets and check with an If condition if the current item (sheet) is the one that I want to list its content. But who can I list this content?