I am trying to split a comma separated field into individual rows in a google sheet. I used the split text transform function and when I run a test it looks like the string gets split. But when I connect to my google sheet and pick from the transform it does not fill in the google sheet correctly. I get the entire string.
Ex. String ‘A,B,C,D’
the result of the transform is:
1
1 A
2 B
3 C
4 D
When I look at the google sheet after the insert I get ‘A,B,C,D’ again
Thank you