Hi,
One way to achieve this is creating an indicator column with the formula below:
If( Row() == 1,
1,
If( Is Missing( Lag( :Column 1, 1 ) ),
Lag( :SPLIT, 1 ) + 1,
Lag( :SPLIT, 1 )
)
)
And then split your original column (Split Table) using the new indicator column as Split By variable (see attached)
I hope it helps.
Best,
TS
Thierry R. Sornasse