Forum Discussion
Matrix - How to remove row subtotal on rows with more than 1 data point?
Hi acamar22 ,
For the 'First Failure' subtotals, I think you could do something with HASONEVALUE in your measure, maybe something like this:
First Failure =
IF(
HASONEVALUE(YourTable[AnimalName]),
[CurrentFirstFailureCalculation]
)
For the [+/-] buttons, I think they're either on or off and that's it.
Pete
- acamar222 years ago
Helper I
Hey BA_Pete thanks for your help.
I apologize, I didn't correctly demonstrate the data with the examples i provided.
The problem is that there are some rows with multiple [Animal Names], so it doesn't truly only have 1 value.
Any ideas on how to work around this?
I would still like it to display where it's circled.
Thanks again!
- BA_Pete2 years ago
Super User
Ah, I see.
Then I think you were correct initially: You'll probably get what you need using ISINSCOPE([Animal Names]). Put an IF or SWITCH around it to ensure you get blanks when it's not in scope.
Pete
- j_ocean2 years ago
Helper V
So for example you want a total on 3333 and 4444, but not Tiger?
I think this is in the visual options, go to subtotals by level and toggle off the ones you don't want.