Forum Discussion
heiavieh
2 years agoFrequent Visitor
Measure - Column reference for CALCULATE(SUM(), FILTER() based on values?
I'm sure there's a post familiar to this somewhere on the forum, but I could not find it. I have a table that records accumulated metrics for business units. Here is an example, I'm using Excel j...
- 2 years ago
You can try using ALLEXCEPT in your measure. Microsoft Learn - ALLEXCEPT
BU Actual Total = CALCULATE( SUM('Table'[Actual]), ALLEXCEPT('Table', 'Table'[Business Unit]) )
jgeddes
Super User
2 years agoYou can try using ALLEXCEPT in your measure. Microsoft Learn - ALLEXCEPT
BU Actual Total =
CALCULATE(
SUM('Table'[Actual]),
ALLEXCEPT('Table', 'Table'[Business Unit])
)