Forum Discussion
Matrix and total for one column...
- 6 years ago
Hi, Anonymous
Based on my research, I created data to reproduce your scenario.
You may create a measure as follows.
DepositValue = IF( ISFILTERED('Table'[Deposit]), BLANK(), SUM('Table'[Deposit]) )Then you can make the matrix visual selected, go to 'Format' ribbon, click 'Row headers', uncheck 'Stepped layout', then click 'Subtotals', check 'Row subtotals' and 'Per row level', finally set Id and Name as Off and Deposit as On.
Finally you need to confirm that 'show data without item' is checked. Here is the result.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, Anonymous
Based on my research, I created data to reproduce your scenario.
You may create a measure as follows.
DepositValue =
IF(
ISFILTERED('Table'[Deposit]),
BLANK(),
SUM('Table'[Deposit])
)
Then you can make the matrix visual selected, go to 'Format' ribbon, click 'Row headers', uncheck 'Stepped layout', then click 'Subtotals', check 'Row subtotals' and 'Per row level', finally set Id and Name as Off and Deposit as On.
Finally you need to confirm that 'show data without item' is checked. Here is the result.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.