I have a column of strings containing data split by semicolons:
game1;video1;photo1
game2;video2;
event1;recape1;videoe1;photoe1
etc
i would like to convert it into one column containing:
game1
video1
photo1
game2
video2
event1
recape1
videoe1
photoe1
so what i'm thinking is using SPLIT and then using FLATTEN (and filter for the empty ones) on the result. but that means i have to use up N columns just for the transition.is it possible to pack it into one neat formula? so i have one input column and one output column?thanks!