Hey Alteryx Gurus!
I'm new to Alteryx and I need you guys' help!
I have a file that has embedded lines within one single cell that may or not occur in two columns.
I need to break each embedded line in that way that I create new rows with each value and if the other column only has one value I'll bring it with the new row or if it has more than one value embedded it will bring it in order for the new rows.
The example will make it more clear:
My data frame:
TURBINE ID | TURBINE TYPE | CURTAILED SECTOR | CUT OUT WINDSPEED | LOAD CASE |
C-III-2 | 2.5-116 | 23-40 132-203 | 10 | EXTREME LOAD |
C-III-3 | 2.5-116 | 347-0 | 12 | EXTREME LOAD |
A-III-1 | 2.5-116 | 101-143 234-290 | 12 14 | EXTREME LOAD |
A-III-2 | 2.5-116 | 156-170 187-200 309-353 | 14 12 11 | EXTREME LOAD |
How I need the outcome to be:
TURBINE ID | TURBINE TYPE | CURTAILED SECTOR | CUT OUT WINDSPEED | LOAD CASE |
C-III-2 | 2.5-116 | 23-40 | 10 | EXTREME LOAD |
C-III2 | 2.5-116 | 132-203 | 10 | EXTREME LOAD |
C-III-3 | 2.5-116 | 347-0 | 12 | EXTREME LOAD |
A-III-1 | 2.5-116 | 101-143 | 12 | EXTREME LOAD |
A-III-1 | 2.5-116 | 234-290 | 14 | EXTREME LOAD |
A-III-2 | 2.5-116 | 156-170 | 14 | EXTREME LOAD |
A-III-2 | 2.5-116 | 187-200 | 12 | EXTREME LOAD |
A-III-2 | 2.5-116 | 309-353 | 11 | EXTREME LOAD |
I did text to column to new rows with \n as delimiter but it can only do with one column
Could you guys help me out?
thanks!!
Solved! Go to Solution.
Hi @nlgenin
Here's an example of how you could approach this:
Thanks, Luke! It did work