Forum Discussion
mussaenda
7 years agoCommunity Champion
Grand Total on Matrix
Is there a way for me to put the totals on another column like the photo below? I am currently using matrix visual. Thank you!
- 7 years ago
mussaenda solution attached, take a look and feel free to change as per your need.
v-chuncz-msft
7 years agoCommunity Support
You may drag the following calculated column to Rows.
Column =
SUMX (
FILTER ( Table1, Table1[Grade] = EARLIER ( Table1[Grade] ) ),
Table1[QTY]
)
mussaenda
7 years agoCommunity Champion
Hi v-chuncz-msft ,
The calculated column might be correct but it is giving me this error:
A circular dependency was detected: Load/Unload[Column].
For the qty measure, here is my formula:
Stock Qty =
CALCULATE([Total Carico Qty],
FILTER(ALL('Date Table'),
'Date Table'[Date] <= MAX('Date Table'[Date]))) -
CALCULATE([Total Scarico Qty],
FILTER(ALL('Date Table'),
'Date Table'[Date] <= MAX('Date Table'[Date])))Thank you for your help!