Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
sivakrishna
Contributor II
Contributor II

Modify the data in data load editor as per my requirement

I have data table like this 

Team:
Load * Inline
[ Id, Teama,Teamb,WON
1,CSK,KKR,CSK
2,SRH,CSK,SRH
3,KKR,SRH,SRH

];

 

I want help to convert above data  like below table how to do


Id,Team,Won
1,CSK,CSK
1,KKR,CSK
2,CSK,SRH
2,SRH,SRH
3,KKR,SRH
3,SRH,SRH];

1 Solution

Accepted Solutions
PrashantSangle

Try like

Load Id,Teama as Team, Won From TableName;
Concatenate
Load Id,Team=b as Team, Won From TableName;

Regards,
Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

2 Replies
PrashantSangle

Try like

Load Id,Teama as Team, Won From TableName;
Concatenate
Load Id,Team=b as Team, Won From TableName;

Regards,
Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
sivakrishna
Contributor II
Contributor II
Author

Thanks a lot for your response.