Forum Discussion
ofi2023
2 years agoRegular Visitor
SUMIFS DAX Equivalent
I'm new to PowerBI and DAX and I've been stuck trying to creating a measure to sum the Amount column if the Status is either "OK to Pay" or "Paid". In excel, I would use the =SUM(SUMIFS(Education Awa...
- 2 years ago
Any of the following would work...
Sum1 = SUMX( FILTER('Table', 'Table'[Status] IN {"OK to Pay", "Paid"}), 'Table'[Amount] )Sum2 = SUMX( FILTER('Table', 'Table'[Status] = "OK to Pay" || 'Table'[Status] = "Paid"), 'Table'[Amount] )Sum3 = CALCULATE( SUM('Table'[Amount]), OR('Table'[Status] = "Ok to Pay", 'Table'[Status] = "Paid") )
jgeddes
Super User
2 years agoAny of the following would work...
Sum1 =
SUMX(
FILTER('Table', 'Table'[Status] IN {"OK to Pay", "Paid"}),
'Table'[Amount]
)Sum2 =
SUMX(
FILTER('Table', 'Table'[Status] = "OK to Pay" || 'Table'[Status] = "Paid"),
'Table'[Amount]
)Sum3 =
CALCULATE(
SUM('Table'[Amount]),
OR('Table'[Status] = "Ok to Pay", 'Table'[Status] = "Paid")
)ofi2023
2 years agoRegular Visitor
Thank you so much! This is exactly what I was looking for.