Inside Power Automate flow if i have a variable of type Array that stores ID-Title, as follow:-
[
"5-Open",
"9-Closed",
"3-With"
]
Now inside a Select action, which allow me to access the ID of a collection using:-
item()?['ID']
How i can get the title of the array item using the item()?['ID']? In other words how i can filter the array using formula? Can i benefit from XPath?
Thanks