Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
kiranpatil123
Contributor III
Contributor III

Help Needed !

Hi All , 

i have below data set flowing  ( Both columns in same Table )

IDArticle Name
1WW
1QE
2SS
3QZ
3QC
3QN
4QE
5KK
6JH
6LM
6TT
6PP

 

and i need to achieve as below in front end or Back end how to be done.

IDArticle Name
1WW/QE
2SS
3QZ/QC/QN
4QE
5KK
6JH/LM/TT/PP

 

Pleaes help

Advance Thank:) 

1 Solution

Accepted Solutions
martinpohl
Partner - Master
Partner - Master

Hi!

usethis:

Data:
LOAD * INLINE [
ID, Article Name
1, WW
1, QE
2, SS
3, QZ
3, QC
3, QN
4, QE
5, KK
6, JH
6, LM
6, TT
6, PP
];

Data_new:
NoConcatenate
load
ID,
Concat("Article Name",'/',) as "Article Name"
resident Data
group by ID;

drop table Data;

View solution in original post

2 Replies
martinpohl
Partner - Master
Partner - Master

Hi!

usethis:

Data:
LOAD * INLINE [
ID, Article Name
1, WW
1, QE
2, SS
3, QZ
3, QC
3, QN
4, QE
5, KK
6, JH
6, LM
6, TT
6, PP
];

Data_new:
NoConcatenate
load
ID,
Concat("Article Name",'/',) as "Article Name"
resident Data
group by ID;

drop table Data;

kiranpatil123
Contributor III
Contributor III
Author

Thanks Martin ,
It worked 🙂