2

I want to exclude a value from a list selection box.

The field is called Status and there are 4 values All, Yes, No & Deleted.

I want to NOT show All

I tried this but it just renames it to 0

=IF(STATUS <> 'All', STATUS,0)
Matt
  • 14,906
  • 27
  • 99
  • 149

2 Answers2

2

Qlikview is case sensitive, please keep that in mind.

If your field is called Status then

=If(Status <> 'All', Status)

also note adding null in the second parameter is redundant.

for a failsafe you could use

=If(lower(Status) <> 'all', Status)
Shaun
  • 559
  • 1
  • 3
  • 17
0

Changing the 0 to null removed it from the list for me.

=IF(STATUS <> 'All', STATUS,null)
Matt
  • 14,906
  • 27
  • 99
  • 149