I am using 3 multi value tokens: token_name (values contained)
token1 (1, 2, 3, 4, 5)
token2 (test1, test2, test3, test4, test5)
token3 (5, 10, 15, 20, 25)
I want to be able to iterate through as many times as there are values and store in the DB like so:
Column1 | Column 2 | Column 3
1 test1 5
2 test2 10
3 test3 15
4 test4 20
5 test5 25
I am using workflow for each value to get the token iteration. But the Query is not able to cycle through the values in all the multivalue tokens.