Forum Discussion
Anonymous
5 years agoNot applicable
Matrix Total displaying wrong value for one column
Hi, I have a matrix report where I have created a measure for values "Reveue-Expenses", it is working fine for all the columns except the last column, please find the below image for reference ...
v-xicai
5 years agoCommunity Support
Hi Anonymous ,
You may create a new measure like DAX below.
Measure_New=
var _table = SUMMARIZE(Append1, Append1[Acct Type],"_Value", [Forecast] )
return
IF(HASONEVALUE(Append1[Acct Type]), [Forecast], SUMX(_table,[_Value]))
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.