I have two columns in an SP list that I need to use the Split() function with a comma separator to get the individual items.
Ex.
| Column1 |
Column2 |
| test1,test2,test3 |
atest1,atest2,atest3 |
ForAll(Split(currItem.Column1, ","), Value)
ForAll(Split(currItem.Column2, ","), Value)
I could create individual collections for each column (2 collections for the columns and 1 collection for the row using Sequence()), but is there a way to combine these three collections or just do it in one clearcollect function?
Expected output of my collection should be like this:
Collection
| row |
name1 |
name2 |
| 1 |
test1 |
atest1 |
| 2 |
test2 |
atest2 |
| 3 |
test3 |
atest3 |
Any help is appreciated.