I'm looking for a way to use Alteryx for the following data wrangling task.
I have a table like this:
Var1 | Var2 |
---|---|
A | 1-3 |
B | 0-2 |
and I would like that to result in this:
I have a table like this:
Var1 | Var2 |
---|---|
A | 1 |
A | 2 |
A | 3 |
B | 0 |
B | 1 |
B | 2 |
So I'm trying to "break open" the list of numbers in Var2
and create a row for every possible number in the range.