Forum Discussion
rmcgrath
1 year agoAdvocate III
Filter in CALCULATE
I'm working with Accounts Receivable data and I have two DAX measures. One controls the [Amount Due] to grab everything greater than $500. The other one calculates the AR total less anything consi...
- 1 year ago
rmcgrath , Try using
DAX
ARtotal =
CALCULATE (
SUM ( 'Accounts Receivable'[Amount Due] ),
Customer[EGG/NON-EGG] = "EGG",
Delinquency[Delinquency] <> "Current",
Customer[INTERNAL/EXTERNAL] = "EXTERNAL",
FILTER (
'Accounts Receivable',
[AmountDuewithAllDelinquency] > 500
)
)
bhanu_gautam
1 year agoSuper User
rmcgrath , Try using
DAX
ARtotal =
CALCULATE (
SUM ( 'Accounts Receivable'[Amount Due] ),
Customer[EGG/NON-EGG] = "EGG",
Delinquency[Delinquency] <> "Current",
Customer[INTERNAL/EXTERNAL] = "EXTERNAL",
FILTER (
'Accounts Receivable',
[AmountDuewithAllDelinquency] > 500
)
)