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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
gireesh1216
Creator III
Creator III

Possible values

Hello Team,

I have three fields in below table like ID,S_ID and M_ID.

IF I select ID =10 in list box , I want output in text object like 4,5,10

IF I select ID =11 in list box , I want output in text object like 4,5,6,10

I have data like below:

Load * inline [

ID,S_ID,M_ID

1,4,7

2,5,8

3,6,9

4,10,11

5,10,11

6,10,11

10, ,11

11,

];

Thanks

Gireesh

1 Solution

Accepted Solutions
gireesh1216
Creator III
Creator III
Author

Finally got solution:

this expression working fine:

=Concat({1<M_SID=p(ID)>}SID,',')

View solution in original post

6 Replies
shiveshsingh
Master
Master

The value which you want to display in textbox is S_ID??

ruanhaese
Partner - Creator II
Partner - Creator II

Try the CONCAT function

=concat(ID,'-')

gireesh1216
Creator III
Creator III
Author

Not working..

If I select 10 in ID filter, I want 4,5,6 output

ruanhaese
Partner - Creator II
Partner - Creator II

Not sure why yours doesnt work.

Just loaded your table in to the editor and added a listbox and a text object with the Concat

Capture1.PNG

gireesh1216
Creator III
Creator III
Author

Nooo..This is normal condition.

Your selected S_ID filter.I don't want this filter.

Use ID filter and select 10 ..I WANT SAME RESULTS LIKE ABOVE.

gireesh1216
Creator III
Creator III
Author

Finally got solution:

this expression working fine:

=Concat({1<M_SID=p(ID)>}SID,',')