Forum Discussion
Alex_G7
Helper I
5 years agoSecond Total in same Matrix
I have Matrix see example bellow Matrix 1 show all the records Matrix 2 has filter to exclude "client" from calculation in just this visual Client want to have single matrix with 2 totals (o...
- Anonymous5 years ago
Hi Alex_G7 ,
You can create a measure like this
Measure = IF(HASONEVALUE('Table'[User]),BLANK(),CALCULATE(SUM('Table'[Values]),'Table'[User]<>"A"))Then in the Field formatting, set the font color to white and apply it to header.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
5 years agoNot applicable
Hi Alex_G7 ,
You can create a measure like this
Measure = IF(HASONEVALUE('Table'[User]),BLANK(),CALCULATE(SUM('Table'[Values]),'Table'[User]<>"A"))
Then in the Field formatting, set the font color to white and apply it to header.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.