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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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