I have a workflow where I need to export multiple reports based on updating a filter logic. My filter logic values are below.
I am updating the [Area] field and the [UNIT] field and then exporting a file using the Render tool. Currently I am making duplicate workflows for each Filter combination but I would like to have a single workflow where the filter values are updated along with the output report.
Example, below would output to a report named "Area_a Unit_1 report.xlsx"
[Area] = "Area_a"
AND [UNIT] ="Unit_1"
AND contains([role],'manager')
below would output to a report named "Area_b Unit_2 report.xlsx"
[Area] = "Area_b"
AND [UNIT] ="Unit_2"
AND contains([role],'manager')
I know all my iterations that I would like to update the Area field and the UNIT field. Attached is sample data, so if I have 3 Area options and 2 UNIT options, I will have a total of 6 exported reports. I can have the iterations premade in a separate excel since I may not always want every permutation (unless that is easier to do).
Thank you