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)
)
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
214 | |
209 | |
84 | |
57 | |
36 |