Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
T_Qlik
Contributor III
Contributor III

Concat using Distinct

Tarun_Qlik_0-1713434470389.png

Replace (Concat(distinct KPI,''),',', ' * ')

Labels (3)
1 Solution

Accepted Solutions
MayilVahanan

Hi

Try like below

Load *, trim(SubField(KPI,',')) as KPI1 Inline
[
KPI
Sales, Customer
Sales, Source
](delimiter is '|');

Exp:

=Concat(distinct KPI1,'*')

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

Hi

Try like below

Load *, trim(SubField(KPI,',')) as KPI1 Inline
[
KPI
Sales, Customer
Sales, Source
](delimiter is '|');

Exp:

=Concat(distinct KPI1,'*')

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
T_Qlik
Contributor III
Contributor III
Author

Thanks Man!