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: 
nima94
Contributor III
Contributor III

hide the Filter field if value is not there

Hi

i have filter of group of Customers

if i select a range of date, some of Customer filter color changes to gray which means there is no value of selected date for those Customer Group.

 

now  instead of being gray, i want to those filter be disappierd  those Gray Group.

2 Solutions

Accepted Solutions
tresesco
MVP
MVP

You can use expression instead of using direct field.

Aggr( [Customer Group], [Customer Group])

View solution in original post

tresesco
MVP
MVP

Aggr(

if(IsNull([Customer Group]),'NA',[Customer Group])

, [Customer Group]

)

View solution in original post

4 Replies
tresesco
MVP
MVP

You can use expression instead of using direct field.

Aggr( [Customer Group], [Customer Group])

nima94
Contributor III
Contributor III
Author

thanks it works.

 

but im using the belloew :

=if(IsNull(Customer Group),'NA',Customer Group)

 

can you may guide me how i can combine both of them ?

tresesco
MVP
MVP

Aggr(

if(IsNull([Customer Group]),'NA',[Customer Group])

, [Customer Group]

)

nima94
Contributor III
Contributor III
Author

Thanks