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: 
BrianDH
Creator II
Creator II

SUM IF AND

I am trying to get the total(sum) of a field based on more than one condition.  Suggestions?

=Sum({$<X_BANK_ACCT_KEY ={'RFND'}>}AND {$<X_BUSINESS_UNIT = {'80801'}>} AND {$<X_PAID_AMT <={'10.00'}>}, X_PAID_AMT)

 

Error in Expression

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this

=Sum({$<X_BANK_ACCT_KEY = {'RFND'}, X_BUSINESS_UNIT = {'80801'}, X_PAID_AMT = {"<=10.00"}>} X_PAID_AMT)

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

Try this

=Sum({$<X_BANK_ACCT_KEY = {'RFND'}, X_BUSINESS_UNIT = {'80801'}, X_PAID_AMT = {"<=10.00"}>} X_PAID_AMT)
BrianDH
Creator II
Creator II
Author

Perfect!!!!!!!!!  Thank you!!!