Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
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

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

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!!!