Hi.,, below is a sample data that I have pasted.
Name,age,work location
John,28,London|new york|California
Mark,32,Sydney|Canberra
Susie,40,Delhi,Bangalore|Chennai|Mumbai
I want to get the above data as below
Name,age,work location
John,28,London
John,28,new york
John,28, California
Mark,32,Sydney
Mark,32,Canberra
Susie,40,Delhi
Susie,40,Bangalore
Susie,40,Chennai
Susie,40,Mumbai
Please do note that in the "work location" attribute, there is data separated using pipe and the number of pipes is not consistent. I mean, it could sometimes have two locations info or sometimes more.
Please help how I can get this done using Alteryx.