I have a collection colSelected having column Value. How to display these values in a label using concat function.
Solved! Go to Solution.
Hi @Sajith
Sample Collection
ClearCollect(colSelected, {Value: "test1"},{Value: "test2"})
Set the text property of Label to
Concat(colSelected,Value & ",")
Hi @Sajith
This should works.
ClearCollect(colSelectedlist, {Value: "test1"},{Value: "test2"});
Collect(colOrglist,colSelectedlist.Value);
Concat(colOrglist,Value & ",")
Both Collection
Hi @Sajith
Sample Collection
ClearCollect(colSelected, {Value: "test1"},{Value: "test2"})
Set the text property of Label to
Concat(colSelected,Value & ",")
Thanks a lot.
I am trying to copy the collection from colSelectedlist to a new collection called colOrglist.
Collect(colOrglist,{Value:colSelectedlist.Value});
Concat(colSelectedlist,Value & ",") works fine. However Concat(colOrglist,Value & ",") not working.
Hi @Sajith
This should works.
ClearCollect(colSelectedlist, {Value: "test1"},{Value: "test2"});
Collect(colOrglist,colSelectedlist.Value);
Concat(colOrglist,Value & ",")
Both Collection
User | Count |
---|---|
260 | |
110 | |
89 | |
53 | |
44 |