Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Saro_2306
Contributor II
Contributor II

Looking for Multiple Values

Hi All,

Consider below table,

Input:

A, B

1,Area

1,Club

2,District

3,Country

3,Street

Output:

While looking for Values 1 - Area, Club 2 - District, 3 - Country, Street as like i need multiple values as output.

Anybody can help. Thanks in Advance.

11 Replies
sasikanth
Master
Master

possible to share some sample data (exact format) ?? 

JuanGerardo
Partner - Specialist
Partner - Specialist

Hello,

The solution to this problem is the Concat() function. An example:

Input:
Load *
Inline [
A, B
1,Area
1,Club
2,District
3,Country
3,Street
];


Output:
Load
	A,
    Concat(B, ',')	AS ConcatenatedB
Resident Input
Group By A;

Drop Table Input;

The Output table is:

JuanGerardo_0-1629999482575.png

 

JG