Reputation: 4428
Is any chance simply display Grand Total in matrix and not display subtotals for each column?
as a value I am using a measure :
Total Premium = CALCULATE(SUM(fact_Premium[Premium]))
I only need a number 44,025,328.
I saw that it is possible in a Table. But is any trick to do that in Matrix?
Thank you
Upvotes: 1
Views: 8730
Reputation: 40204
I don't know that you can do that with the GUI like for a table, but it's possible to modify your DAX a bit using ISFILTERED
or HASONEVALUE
type of functions.
Something like this, for example:
Total Premium =
VAR Prem = CALCULATE(SUM(fact_Premium[Premium]))
RETURN IF(NOT(HASONEVALUE(Dates[Year])) && HASONEVALUE(Dates[Month]),
BLANK(),
Prem
)
Upvotes: 1