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: 
paulyeo11
Master
Master

Can Qlik Sense hide some of the value label ?

Hi All

I create a Filter Pane , i select add dimension = SOURCE , Now it display 6 value label. My question how to make it display only 2 value label ? that is only display TDSS & ADL. and hide the rest of the value label.

In my actual app , my field COMPETITOR , it have 30 value label , and i only want to display 5 of them.

Paul

4 Replies
paulyeo11
Master
Master
Author

my qvf

Anonymous
Not applicable

Do you want the data in the app at all? if not you can limit it in the script with a where statement on the load. if you do want it in the data set but just not in the filter pane then you need to use a if statement e.g. if(SOURCE='TDSS', SOURCE, if(SOURCE='ADL', SOURCE, Null()))

Not applicable

need to drop the null() or a blank option appears in the filter pane

if(SOURCE='TDSS', SOURCE, if(SOURCE='ADL', SOURCE))

paulyeo11
Master
Master
Author

Hi James

Thank you very much , your script work fine , i am unable to mark as correct. sorry

Paul Yeo