Hi everyone,
I'm really struggling to build this flow and could use some advice.
I have a Sharepoint list that shows sales territories & the assigned rep. The Sale rep column is setup as a Person/Group object, and there can sometimes be multiple sales reps assigned to a single territory.
Sharepoint List Setup
| Sales Territory | Sales Rep |
| UK | Rep 1; Rep 2; Rep 3 |
| Germany | Rep 4 |
| Canada | Rep 5 |
What I would ideally like to do, is to create a flow that spits out a CSV file each time a change is made to the list, but the CSV file must be delimited to show 1 rep per row with a repeated sales territory name.
Example Output
| Sales Territory | Sales Rep |
| UK | Rep 1 |
| UK | Rep 2 |
| UK | Rep 3 |
| Germany | Rep 4 |
| Canada | Rep 5 |
I have a flow built already to look for modifications and pull the display name from the person/group object, but the output is that it shows reps 1, 2 & 3 on a single row.
Any help would be greatly appreciated!