Forum Discussion
Nfuentes86
2 years agoHelper I
How to hide Zero Value in Matrix
I'm trying to (hide) the columns with (zero) values in the matrix below. Is there an easy setting to do this or should I create a measure?
Greg_Deckler
2 years agoCommunity Champion
Nfuentes86 Well, you could write a measure for each one where if the value is 0, return blank, otherwise, display the number.
Nfuentes86
2 years agoHelper I
So would my measure be:
Measure = IF([Planned FTE] = 0, BLANK(), [Planned FTE])
- Greg_Deckler2 years agoCommunity Champion
Nfuentes86 Assuming that Planned FTE is a measure, yes. If it is a measure, you might be able to modify it to just return blank on its own, so a final check that if the return value is going to be 0, return blank instead.