Hi Everyone,
I have a weird use case for converting a string into the their correspoding choices in a sharepoint list.
The input string would someting like this:
A;#B;#;D#;G#
The multivalue choice items the Sharepoint item are
A, B, C, D, E, F, G
When MS Flow runs, I only want these choice items selected.
A, B, D, G
Would just replacing ";#" to "," do it?
Thanks in advance.
Solved! Go to Solution.
I tried multiple scenarios.
1) Split the entry into array
[
"A",
"B",
"D",
"G"
]
2) but to assign the array into the muti-value field. the array must read like this:
[
{
"Value": "A"
},
{
"Value": "B"
},
{
"Value": "D"
},
{
"Value": "G"
}
]
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Did you know that you could restore a deleted flow? Check out this helpful article.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
29 | |
28 | |
26 | |
26 | |
23 |
User | Count |
---|---|
63 | |
52 | |
44 | |
34 | |
30 |