Forum Discussion
mhsk
Helper II
6 years agofilter matrix to show only negative values
Hi, I would like to ask you for advise if it is possible to filter only items that have minus in matrix? im interested in only those where minus will appear (in any week). what i have: ...
- 6 years ago
Hi mhsk ,
Create a new measure as below to work on it.
Measure 2 = IF([Measure]>=0,BLANK(),[Measure])
v-frfei-msft
Community Support
6 years agoHi mhsk ,
Create a new measure as below to work on it.
Measure 2 = IF([Measure]>=0,BLANK(),[Measure])
dimperio
4 years agoFrequent Visitor
This is not actually 100% an accurate solution. As you can see, the total of the matrix is blank as well. The positive values had been hidden, but not removed from the calculation.