Forum Discussion
Nfuentes86
Helper I
2 years agoHow 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
Community Champion
2 years agoNfuentes86 Well, you could write a measure for each one where if the value is 0, return blank, otherwise, display the number.
- Nfuentes862 years ago
Helper I
So would my measure be:
Measure = IF([Planned FTE] = 0, BLANK(), [Planned FTE])
- Greg_Deckler2 years ago
Community 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.