Hi,
I have the information that I get from Flow and I set it as a variable varFlow. varFlow returns a string flowapprovers from Flow.
so the information can be retreived using varFlow.flowapprovers. It returns {"a":"apple","b":"banana","o":"orange"}.
Now I want to split this so it is more readable., like this:
a: apple
b: banana
o: orange
When I try to use Split(Text(varFlow.flowapprovers),","), it gave me an error saying Expected Text Value.
How to fix this? Thanks!
Solved! Go to Solution.
Hi @lavint
If you want to display the result in a label, something like this should work better for you.
Concat(Split(Text(varFlow.flowapprovers),","),
Result & Char(13)
)
Hi @lavint
If you want to display the result in a label, something like this should work better for you.
Concat(Split(Text(varFlow.flowapprovers),","),
Result & Char(13)
)
User | Count |
---|---|
134 | |
131 | |
78 | |
75 | |
71 |
User | Count |
---|---|
210 | |
198 | |
67 | |
62 | |
53 |