I have got unique rows from column 'InquiryID' by a union expression in Compose step.
I now want to loop through each of these unique ID's by using the output of this compose, but I have not found the correct way to.
This is what my steps look like, when ran they work correct and give the correct output -
I would like to reference each individual ID in a for-each loop as I will be cross-referencing these with another table. How do i reference each item of this union?
Perfect, that worked.
Thanks!
create a for each loop with your union as the source and you can reference it within the loop using:
item()['InquiryID']
As you only have one property in your array, you can make it even easier by putting the select action into text mode, and the put the InquiryID into the map. Then you will have a plain array of InquiryIDs, then perform your union again.
If you do that, in your apply/each, it will simply be item()
Michael E. Gernaey
497
Super User 2025 Season 2
David_MA
436
Super User 2025 Season 2
Riyaz_riz11
244
Super User 2025 Season 2