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: 
Not applicable

Show only missing and 0 values

Hi!

I've got three tables, Item, Sales and Forecast:

ScreenHunter_01 Feb. 26 08.47.gif

In an object, I want to show only the Items (ItemNr and ItemName) where Forecast is set to 0 or missing at all.

In this case, the result should be:

ScreenHunter_03 Feb. 26 08.48.gif

1 Solution

Accepted Solutions
sunny_talwar

Try this expression

=If(NullCount(Forecast) > 0 or Forecast = 0, 'Show')

with ItemNr and ItemName as dimensions

Capture.PNG

View solution in original post

2 Replies
sunny_talwar

Try this expression

=If(NullCount(Forecast) > 0 or Forecast = 0, 'Show')

with ItemNr and ItemName as dimensions

Capture.PNG

Not applicable
Author

Hi ,

You can try like this also .

Regards