Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
I've got three tables, Item, Sales and Forecast:
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:
Try this expression
=If(NullCount(Forecast) > 0 or Forecast = 0, 'Show')
with ItemNr and ItemName as dimensions
Try this expression
=If(NullCount(Forecast) > 0 or Forecast = 0, 'Show')
with ItemNr and ItemName as dimensions
Hi ,
You can try like this also .
Regards