Last active
January 25, 2017 16:17
-
-
Save ralfbecher/6534414 to your computer and use it in GitHub Desktop.
In QlikView conditional show expressions cannot handle NULL values. The object will be visible because NULL is treated as TRUE (or the expression doesn't evaluate right).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In this case it is helpful to wrap the expression to catch NULL and empty string: | |
// works for: | |
// =if(Null(), -1, 0) | |
// =if('', -1, 0) | |
=if(<expression>, -1, 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment