Forum Discussion
Promethes_2
9 years agoHelper II
Matrix Total Question
Hello, I'm trying to display just the column total in a matrix by a specifc field and can't quite figure out what I need to do diffferently. Here is what I'm after. Under each red line I want t...
- 9 years ago
Instead, you could try to add a calculated column.
transDate operation = FORMAT ( Table1[transDate], "MM/dd/yyyy" ) & REPT ( " ", 10 ) & Table1[operation]
v-chuncz-msft
9 years agoCommunity Support
Instead, you could try to add a calculated column.
transDate operation =
FORMAT ( Table1[transDate], "MM/dd/yyyy" ) & REPT ( " ", 10 )
& Table1[operation]
- Promethes_29 years agoHelper II
This is a pretty clever work-around, thank you.