Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
arusanah
Creator II
Creator II

set analysis fro not null values

I'm writing  set analysis for total charges where charge id is not null.

Sum({<[Charge ID]-={"' '"}, REVENUE_DATE={"<= $([REPORT DATE]) "}>} TOTAL_CHARGE_AMT)

but it doesn't seems to work . it gives me same result as sum(TOTAL_CHARGE_AMT). which is not right .

Any help is highly appreciated.

1 Solution

Accepted Solutions
sunny_talwar

How about this

Sum({<[Patient Charge ID] ={"*"}, TOTAL_CHARGE_AMT = {">0"}>} TOTAL_CHARGE_AMT)

View solution in original post

10 Replies
sunny_talwar

How about this

Sum({<[Charge ID] ={"*"}, REVENUE_DATE={"<=$(=[REPORT DATE])"}>} TOTAL_CHARGE_AMT)

arusanah
Creator II
Creator II
Author

this doesn't seems to work either

joseduque
Partner - Contributor III
Partner - Contributor III

Hi,

Null values are kinda tricky but you can read this article:

https://community.qlik.com/docs/DOC-3155

I'll also recommend you add value to null maybe a '-' This way you can do the set analysis like this

Sum({<[Charge ID]-={"-"}, REVENUE_DATE={"<= $([REPORT DATE]) "}>} TOTAL_CHARGE_AMT)

Hope this helps

Jose

sunny_talwar

What is the output that you are expecting to see?

arusanah
Creator II
Creator II
Author

sunny_talwar

How about this

Sum({<[Patient Charge ID] ={"*"}, TOTAL_CHARGE_AMT = {">0"}>} TOTAL_CHARGE_AMT)

arusanah
Creator II
Creator II
Author

As always you are my life savor !!! thank you so much

sunny_talwar

Not always, but I try

arusanah
Creator II
Creator II
Author

Thank you jose ,even this with additional condition works now .