I have a multi-line text field where the data is delimited by commas. The field can contain from 1-32 items. Example: Chicago, Boston, Seattle. I need to determine the number items in the field (in the example it is 3).
I tried using split with a variable counter: split(variables('Locations'),',')[variables('varIndex')] This split sits in a DoUntil loop that increments varIndex by one. However, when the index count exceeds the number of items, I get an error of 'out of bounds array index'.
How can I get a count of the commas or the items? If I know the count beforehand, I can set the DoUntil to stop before it tries the split and throw the error.
Thanks!
Solved! Go to Solution.
Pieter,
That worked perfectly. Thank you very much!!
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
85 | |
60 | |
51 | |
42 | |
38 |
User | Count |
---|---|
89 | |
81 | |
74 | |
62 | |
44 |