Hello All,
I am extracting some data from PDFs and I have rows split into multiple row for random reasons.
Ex:
Column 1 Column 2 Colum 3
1 default public ip n/a
[Null] delivered [Null]
2 Forte 833
[Null] [Null] [Null]
[Null] [Null] [Null]
Problem: If Column 1 has nulls, all the rows with column 1 with null should merge into 1 row.
Like:
Column 1 Column 2 Colum 3
1 default public ip delivered n/a
2 Forte 833
3 ... ...
How can we perform this task using any tools in Alteryx.
Thanks.