Forum Discussion
ChantelleP
2 years agoNew Member
Sum DAX Measure with Multiple Filters in One Column
Hi,
I am trying to run a sum total to include a filter that only includes specific codes in the flow column.
The below is what I have tried yet the error I get is "Operator or expression '()' is not supported in this context.
Sum of Payment =
CALCULATE(
SUM('Kyriba AGTL'[Ledger amount (value)],
KEEPFILTERS('Kyriba AGTL'[Flow] IN ("-AP", "-ICPAY", "-VAT", "-EXP", "-RENT", "-ICPAYR", "-PAYROLL")
)
Any help is appreciated
Please try something like below if it suits your requirement.
Sum of Payment = CALCULATE ( SUM ( 'Kyriba AGTL'[Ledger amount (value)] ), KEEPFILTERS ( 'Kyriba AGTL'[Flow] IN { "-AP", "-ICPAY", "-VAT", "-EXP", "-RENT", "-ICPAYR", "-PAYROLL" } ) )
2 Replies
- ChantellePNew Member
This is perfect, thank you so much for your help!
- Jihwan_KimSuper User
Please try something like below if it suits your requirement.
Sum of Payment = CALCULATE ( SUM ( 'Kyriba AGTL'[Ledger amount (value)] ), KEEPFILTERS ( 'Kyriba AGTL'[Flow] IN { "-AP", "-ICPAY", "-VAT", "-EXP", "-RENT", "-ICPAYR", "-PAYROLL" } ) )