Hi,
If I have a data field that comes into PowerApps as a comma delineated list, is there a way to seperate this into a list that is formatted so that each comma starts a new line?
Example:
Input:
Water, Lemon, Glass
Output:
Water
Lemon
Glass
Thank you for any suggestions!
Solved! Go to Solution.
Hi,
You could try the split function (https://powerapps.microsoft.com/en-us/tutorials/function-split/)
Thanks
Cherie
Set the text input's on change to
ClearCollect(items, TrimEnds(Split(TextInput1.Text, ",")))
Then insert a gallery and set Items to items.
Hope this helps.
Sean
Hi,
You could try the split function (https://powerapps.microsoft.com/en-us/tutorials/function-split/)
Thanks
Cherie
Set the text input's on change to
ClearCollect(items, TrimEnds(Split(TextInput1.Text, ",")))
Then insert a gallery and set Items to items.
Hope this helps.
Sean
User | Count |
---|---|
140 | |
138 | |
77 | |
76 | |
69 |
User | Count |
---|---|
224 | |
184 | |
68 | |
64 | |
57 |