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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
krithikarees
Contributor III
Contributor III

Return 0 when there is clearing date (Invoices report)

Hello All,

I have a table where I am trying to get null values when there is a clearing date and not bucket it. As net due date is the day an invoice was opened and if a clearing date exists it should return null values. Any suggestions?

3 Replies
OmarBenSalem
Partner - Champion II
Partner - Champion II

basically if there a clearing date, the net due should be null()?

maybe change ur net due measure to:

if(len(trim(clearing))>0,null(),sum(NetDue))

krithikarees
Contributor III
Contributor III
Author

No - If I have a clearing date . I do not want any amounts to reflect in the buckets I have  and If there is no clearing date - I want it to show in the bucket.

OmarBenSalem
Partner - Champion II
Partner - Champion II

then u'll have to change the measures of all of ur buckets the same way as previously shown