Forum Discussion
andywil456
10 years agoAdvocate II
text to type error message
I'm trying to use a calculate formula to sum our out going per payment terms. The formula i'm using is CALCULATE(SUM('supplier pymt data'[Supplier Amount]),Table1[payment category]), but i...
- 10 years ago
Try a measure like
total = CALCULATE ( SUM ( 'supplier pymt data'[Supplier Amount] ), FILTER ( 'supplier pymt data', CONTAINS ( Table1, Table1[payment category], 'supplier pymt data'[payment category] ) ) )
Eric_Zhang
10 years agoMicrosoft Employee
Try a measure like
total =
CALCULATE (
SUM ( 'supplier pymt data'[Supplier Amount] ),
FILTER (
'supplier pymt data',
CONTAINS (
Table1,
Table1[payment category], 'supplier pymt data'[payment category]
)
)
)