I'm trying to build an automation that refers to a SharePoint Document Library, checks to see which items match a certain status and for each item that matches that status, it takes a number of actions (creating a file, share link, and approval, and sending it to someone for review).
I was initially using a condition to check the content of the 'Status' field but the flow stopped recognizing the matching items. It would run and then complete successfully as if it hadn't found any (I copy/pasted to make sure I was matching exactly what was in the flow). So I turned to removing the Condition and instead using the Filter query in the Get files action. This worked fine during my test but when I ran the flow and there were multiple files with the matching status, it only acted on the first one. Concurrency control was already off at the trigger and apply to each.
Now to my question: With this configuration, will Power Automate only pull and work on one result at a time in the apply to each? Should I go back to using the Condition action instead of the filter in the Get files action?