Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

excluding listbox selections in current selections box?

I have 3 list boxes named LB1, LB2 and LB3.Current Selections Box should not show the selected values from LB3.This is my requirement.How can do that?

Thanks in Advance

1 Solution

Accepted Solutions
Colin-Albert

If you tag a field as $hidden in the load script then the field selection will not display in the current selection box.
The selections are still active in the data though.

TAG FIELD [Your Field Name] with '$hidden' ;

In your load script, add the following (assuming the field displayed in listbox LB3 is named LB3

TAG FIELD LB3 with '$hidden' ;

View solution in original post

5 Replies
Colin-Albert

If you tag a field as $hidden in the load script then the field selection will not display in the current selection box.
The selections are still active in the data though.

TAG FIELD [Your Field Name] with '$hidden' ;

In your load script, add the following (assuming the field displayed in listbox LB3 is named LB3

TAG FIELD LB3 with '$hidden' ;

maxgro
MVP
MVP

you can use hideprefix or hidesuffix to hide the fields starting with the char you want

set HidePrefix='_' ;

the field names beginning with an underscore will not be shown in the current selections

Anonymous
Not applicable
Author

Thanks Massimo...

Anonymous
Not applicable
Author

Thanks Colin..

kmswetha
Creator
Creator

Hi Colin,

TAG FIELD LB3 with '$hidden'  in my load script it is not working.

pls suggest