Forum Discussion
Anonymous
3 years agoNot applicable
Sum Total by specific rows in Matrix
Hi Everyone! Need some help with DAX formula wherein I have a matrix that would only sum a specific 'division'. See my screenshot below, I have totals per division and I only wanted the grand tota...
- 3 years ago
Measure=IF(ISFILTERED(Table[Division]),SUM(Table[Amount]),CALCULATE(SUM(Table[Amount]),Table[Division] IN {"Corporate","Enterprise","Global","Product","Transformation"}))
wdx223_Daniel
Community Champion
3 years agoMeasure=IF(ISFILTERED(Table[Division]),SUM(Table[Amount]),CALCULATE(SUM(Table[Amount]),Table[Division] IN {"Corporate","Enterprise","Global","Product","Transformation"}))
- Anonymous3 years agoNot applicable
it works perfectly!! Thank you!