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?
Nfuentes86
Helper I
2 years agoSo would my measure be:
Measure = IF([Planned FTE] = 0, BLANK(), [Planned FTE])
Greg_Deckler
Community Champion
2 years agoNfuentes86 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.