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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
poojashribanger
Creator II
Creator II

FieldSelection

Hi,

Can anyone tell me how to display multiple selections in Text box in qlik sense.

I have data like this

table1:

load

Code,desc

1,box

2,bat

3,shoe];

In frontend i have cd as filter.

if some one selects 1,3 in Code then text box must display Box,Shoe.

how to achieve this?

please help.

Thanks.

Poojashri

1 Solution

Accepted Solutions
ogautier62
Specialist II
Specialist II

Hi

= concat(desc, ',')      should do it

use distinct if multiple posible occurrences

regards

View solution in original post

2 Replies
ogautier62
Specialist II
Specialist II

Hi

= concat(desc, ',')      should do it

use distinct if multiple posible occurrences

regards

avkeep01
Partner - Specialist
Partner - Specialist

Hi Poojashri Bangera,

CONCAT(DISTINCT desc,',')