I am creating a collection using Split, like this:
ClearCollect(coll,Split(String,"|"));
Then I want to loop through the collection and reference each value in the collection. My understanding is that Split creates a simple array and the values in the collection are accessed using the Value key.
However, I get an error on the use of "Value" in ForAll():
ForAll(coll,
Collect(collCopy,{V: Value, Index: CountRows(collCopy)})
);
If I change my original ClearCollect to use a simple array from the start rather than Split():
ClearCollect(coll,["abc","def"]);
Then using "Value" in ForAll() is accepted.
How can I access the values in the collection created from Split()

Report
All responses (
Answers (