Hi All,
There is a scenario which needs to be converted into an Alteryx workflow. The requirement is such that not all Names have Surnames, but in instances where there are names having surnames, the surnames should come up as names in the next row. PLease see the input and desired output below:
The input is
| Id | Name | Surname |
| 1 | Zaid | Hashim |
| 2 | John | Cena |
| 3 | Maxwell | |
| 4 | Ross | |
| 5 | Will | Smith |
The desired output that i m looking for is:
| Id | Name |
| 1 | Zaid |
| 1 | Hashim |
| 2 | John |
| 2 | Cena |
| 3 | Maxwell |
| 4 | Ross |
| 5 | Will |
| 5 | Smith |
Hope the requirement is clear. Looking forward to a reply.
Thanks