Hi, I'm using microsoft dataverse to connect to my Dynamics 365 trial instance. and I'm using "List Rows" action. So I'm looking for a way for do something like value.all(new_status eq 20) then update related data...
Is there in Power Automate a expression or similar Like .net LINQ Collection.All(predicate)?

e.g.: List Result =
[
{"name":"foo1", "statuscode":100},
{"name":"foo2", "statuscode":2},
]
now how to validate if all retrieved records the statuscode is 100 in this example the result would be FALSE.
if I use foreach control I don't want to trigger the update action each time per record, just one for hole collection, thanks.