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

Set a default value to Filter Pane - Qlik Sense

Hi All, 

I have a filter pane called Segment with values  A, B and C. Is it possible if nothing is selected, by default the value displays as 'All' ? 

Qlik Sense Business #filterpane #default 

1 Solution

Accepted Solutions
AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Hi, 

On what selection do you want to show values ?

You can use something like below.

If(GetSelectedCount([Selection Field]) = 0, 'ALL', SEGMENT)

View solution in original post

3 Replies
AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Hi, 

On what selection do you want to show values ?

You can use something like below.

If(GetSelectedCount([Selection Field]) = 0, 'ALL', SEGMENT)

manisha10
Contributor III
Contributor III
Author

Thanks a lot Ashutosh! It is working now! 😊

If(GetSelectedCount([cust_seg]) = 0, 'ALL', cust_seg)

Digvijay_Singh

I was wondering whats the purpose of this filter pane. If there is no selection made in cust_seg when the app is opened, it will show 'ALL', so I think you won't be able to make selections through this filter pane, right?