Hi there,
I have a collection with three words inside of it.
like so :

I am trying to query this collection with other rows in Dataverse and i am attempting to use the ForAll Command - like so :
ForAll(CarrierNameA,
If(
CountRows(
Filter(
RippleCarriers,
CarrierName = ThisRecord.CarrierName && 'Send to RUM (RippleCarriers)'.Yes
)
) > 0,
Collect (
Triglav,
{Result: "True"}
),
Collect (
Triglav,
{Result: "False"}
)
));
And it is working but it is giving me 3 trues in the new collection and not just one. I want it to query each row itself and not give me 3 results.
What can i do to get ForAll to work over the collection but only give me one row on the collection that the ForAll updates ?
I am so stuck.