Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Hi
= concat(desc, ',') should do it
use distinct if multiple posible occurrences
regards
Hi
= concat(desc, ',') should do it
use distinct if multiple posible occurrences
regards
CONCAT(DISTINCT desc,',')