Forum Discussion
dirkzwart
Oct 16, 2020Copper Contributor
Moving items from one list to another creates multiple entries
I setup a Flow that when a new list item is created, the flow creates a new item in the second list and copies the values from one to the next. The issue: if the new list entry has a column with mul...
- Oct 20, 2020
Hi dirkzwart,
Use an Array variable to store and format the Choice column lookup values.
Here is my sample Flow:
The "Append to array" variable is not an expression. It is simply the formatting required to pass it into the "Create item step".
{"Value":"@{items('Apply_to_each')?['Value']}"}
Let me know if that works for you.
I hope this helps.
Norm
stormin_30
MVP
Hi dirkzwart,
Use an Array variable to store and format the Choice column lookup values.
Here is my sample Flow:
The "Append to array" variable is not an expression. It is simply the formatting required to pass it into the "Create item step".
{"Value":"@{items('Apply_to_each')?['Value']}"}
Let me know if that works for you.
I hope this helps.
Norm
dirkzwart
Oct 20, 2020Copper Contributor
stormin_30 Thank you Norm! This works and is much easier to manage.