We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Help Required!

Eug_teng
7 - Meteor

Hi all,

 

I need some help this problem below:

 

Sample Input:

No.Details
1{"data":[{"code":"abc"},{"code":"bcg"}]}
2{"data":[{"number":"27","code":"hkr"}]}
3{"data":[{"number":"123","street":"alpha 3474"}]}
4{"data":[{"street":"beta 2748","number":"789"}]}

 

Within the "Details" field, I have a complex string of data classified into various categories: code, number and street. I would like to extract these data and present these as individual columns. How do I go about doing this?

 

Sample Output:

 

No.Detailscodenumberstreet
1{"data":[{"code":"abc"},{"code":"bcg"}]}abc, bcgnullnull
2{"data":[{"number":"27","code":"hkr"}]}hkr27null
3{"data":[{"number":"123","street":"alpha 3474"}]}null123alpha 3474
4{"data":[{"street":"beta 2748","number":"789"}]}null789beta 2748

 

Thank you!

2 REPLIES 2
afv2688
16 - Nebula
16 - Nebula

Hello @Eug_teng ,

 

Does this look good to you?

 

Regards

Eug_teng
7 - Meteor

Yes thank you!

Labels
Top Solution Authors