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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
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
Partner - Champion
Partner - Champion

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
Partner - Champion
Partner - Champion

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