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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

get available items from list

Hello,

I am using qlikview 11.

I have a field fld1 with values as val1, val2, val3.

At some particular selection only val3 is enabled and val1 and val2 are disabled.

Still I want to get val1, val2 and val3.

I have used below expression in variable but getting only the possible available items.

=Concat(fld1, ',')

1 Solution

Accepted Solutions
MayilVahanan

Hi

Try like this

=Concat({1}fld1, ',')

Edit:

{1} - ignore all the selections

=Concat({<fld1=>}fld1, ',') ignore fld1 selection alone.

hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

5 Replies
MayilVahanan

Hi

Try like this

=Concat({1}fld1, ',')

Edit:

{1} - ignore all the selections

=Concat({<fld1=>}fld1, ',') ignore fld1 selection alone.

hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
tresesco
MVP
MVP

=Concat({1} fld1, ',')            // '{1}' ignores the selection

Not applicable
Author

yes it is working.

Thanks a lot.

Not applicable
Author

Hi,

also can we get the count of Concat({1}fld1, ',')

MayilVahanan

Hi

Try like this

=Count({1}distinct fld1) - to get the count of distinct fld1 values which exclude the selection.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.