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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
dialika_bantog
Partner - Contributor II
Partner - Contributor II

Create a list box or filter with only 2 options

Hi!

I wanted to create a list or app-wide filter with only two options. The options will be All and exclude 0 or null on the field. How will I be able to do that?

 

Cheers!

Dialika

1 Solution

Accepted Solutions
MindaugasBacius
Partner - Specialist III
Partner - Specialist III

I guess that impossible.

If you wish you can create this option for chosen dimensions:

1. Data that is not 0 or null

2.Data that is 0 or null

,If(Field = 0 or Len(Trim(Field)) = 0, 1, 0) as Flag

After that you will have to create two buttons:

1. All Data - it means it activates all Flag field's both values 1 and 0.

2.Exluded 0 - it mean it have to activate Flag = 1

View solution in original post

2 Replies
MindaugasBacius
Partner - Specialist III
Partner - Specialist III

I guess that impossible.

If you wish you can create this option for chosen dimensions:

1. Data that is not 0 or null

2.Data that is 0 or null

,If(Field = 0 or Len(Trim(Field)) = 0, 1, 0) as Flag

After that you will have to create two buttons:

1. All Data - it means it activates all Flag field's both values 1 and 0.

2.Exluded 0 - it mean it have to activate Flag = 1

dialika_bantog
Partner - Contributor II
Partner - Contributor II
Author

Got it. Thanks heaps!