Home Power Automate: The First Function
Post
Cancel
Power Automate logo: stylized arrow

Power Automate: The First Function

A scenario I’ve encountered several times in Power Automate is needing to get just one item from a data source, such as a SharePoint list, based on a specific column such as Title matching what I am looking for. Power Automate only has a function to get all the SharePoint items that match the criteria, unless you already know the specific ID you are looking for. So you end up with an array returned, even if there’s only one item in it. That then creates a bit of nuisance when you want to access that one item, since Power Automate will go ahead and put that within a for each loop structure. Knowing there’s only one item, it is a negligible difference in Flow speed, but it is suboptimal code looking at a for each loop that isn’t really looping.

How do you get around that? The Microsoft Tech Community recently answered that with the first() function. The full details are in the link below:

Avoid Unnecessary Looping (Apply to each) in Power Automate – Microsoft Tech Community

This post is licensed under CC BY 4.0 by the author.