
Announcements
I currently have an app that adds sets of pre-filled rows to a SharePoint list based on which checkboxes are selected. Users can select one or more options, and the linked flow(s) will run when the submit button is pressed.
What I would like to do is include a dropdown control next to each option which will dictate how many times the flow(s) should run (e.g. if a user selects Option 1 and a value of 2 in the dropdown, the flow associated with Option 1 will run two times, adding two sets of rows to my SharePoint list).
Is this something that's possible?
Hi @renteriadg ,
Please try this
ForAll(sequnece(dropdown.selected.<column name>),<flow name>.run(...) )
Best Regards,
Wearsky