I have a flow that triggers on a change in a dataverse table.
I am working on two different tables (Projects and Bids). Projects and Bids are related in a one to many relationship. There can be one or more bids associated with each project.
The flow is triggered when a bid status is changed to "Closed" in the Bids table. I then have a step to list the rows in the Bids table that are associated with this Project.
When there is only one Bid associated with a Project, there is a step that changes the status on the Project. But when there are multiple Bids on a Project, the flow stops.
I want to continue the Flow so it checks the status of the multiple Bids and updates the Project accordingly. How can I do that? For instance, if one or more Bids is still "Open" then do nothing with the Project status. Or if the Bid change that triggered this flow is the last to be marked "Closed", then the Project status changes.
Any insight you might be able to offer would be greatly appreciated. Thank you.