Forum Discussion
matrix subtotal formatting
- 7 years ago
Anonymous
That's not a problem. What field are you using in rows of your matrix visual? That is the one you have to use in ISFILTERED( ). That's what I meant by
ISFILTERED ( Table1[ColumnInRowsOfTheMatrix] )
Using it like that, the ISFILTERED tells you where you are in the matrix visual, Total or not Total.
If you share the pbix or at least show the structure of your table(s), the code of your measure and how you build the matrix visual where you use the measure (i.e. what fields go where) I will be able to help you further.
Hi Anonymous
One way to do it would be to use ISFILTERED to determine whther you are in the Total row and FORMAT. Create a measure like:
MeasureDiffFormat =
VAR _Result = Write here the code for your calculation
RETURN
IF (
ISFILTERED ( Table1[ColumnInRowsOfTheMarix] ),
FORMAT ( _Result, "#,#" ), //When not in the Total row
FORMAT ( _Result, "#,#.##" )//In the Total row
)
- Anonymous7 years agoNot applicable
Thanks for replying AlB.
I'm still not sure how I work out if I am in the total row/column of the matrix though. I have a measure as values for the matrix as opposed to the values being directly from a column, so I'm not sure using ISFILTERED will work in my case.
- AlB7 years agoCommunity Champion
Anonymous
That's not a problem. What field are you using in rows of your matrix visual? That is the one you have to use in ISFILTERED( ). That's what I meant by
ISFILTERED ( Table1[ColumnInRowsOfTheMatrix] )
Using it like that, the ISFILTERED tells you where you are in the matrix visual, Total or not Total.
If you share the pbix or at least show the structure of your table(s), the code of your measure and how you build the matrix visual where you use the measure (i.e. what fields go where) I will be able to help you further.
- Anonymous7 years agoNot applicable
Ah! So what I wanted was the column subtotals rather than the row subtotals, and as I had the row subtotals switched off I didn't see that it was actually working. I managed to amend it so the column to filter on was correct to format the total column, thank you!