This is a simple example, and I'm sure there are better ways to do it, but when this gets more complex, I will be needing to append to the end of a string every 'loop' of the ForAll(). Not quite sure how to do that since I'm not able to set a variable inside of it. Or, is there a way?
Set(TestList,[12345,12346,12347,12348,12350,12351]);
Set(TestString,"Test");
ClearCollect(Testdcollect,(ForAll(TestList.Value, Concatenate("Text",Text(Value))
)))
Desired result for this example is:
TestList = "12345,12346,12347,12348,12350,12352,12354,13000"
My end-all desired is:
TestList = "12345-12348, 12350, 12352-12354, 13000"
Thanks,
Rod