Hello,
I'm struggling a bit to store a list of integer in the "ID" column of a collection.
I have a flow that returns a list of integers as a string : "1,2,3".
I want to store those integers in a collection which as one column and I want this column to be named "ID".
This formula gives me the expected result :
ClearCollect(test;[1;2;3])
But the column name is then "Value".
I want the same result, but with a unique column named "ID".
I know it is pretty simple but I can't find the correct way to do it.
Thank you 🙂