Wednesday 15 March 2023

Power Automate: Use FIRST Instead of "Apply to each" When Pulling Out a Single Value


Credit: Patrick Tomasso

If you're returning rows from a spreadsheet or a SharePoint list, you normally use an "Apply to each" action to pull out the data.

But when you use "Apply to each" the entire row is pulled into memory and this can be slow, especially if you've got a lot of columns. 

If there is only one row this isn't necessary; instead you can use the "First" expression, which is much quicker as it just loads a specific column value rather than the whole row.

Let's say you're filtering on a unique refeerence number column called "URN" to return a specific row using an OData Filter Query, such as urn eq 'example', and you want to get the value of a column from that row called "Start Date".

A screenshot of a "List rows present in a table" action showing a filter query

Rather than using "Apply to each" to pull the value out, use the following expression in a Compose or Set Variable action:

First(outputs('List_rows_present_in_a_table')?['body']?['value'])?['Start Date']

An "Initialize variable" action showing the FIRST expression

And now you've got the value you need without having to load all the rows - it's quicker, uses one less step, and is easy to implement.