Forum Discussion
filter matrix to show only negative values
- 6 years ago
Hi mhsk ,
Create a new measure as below to work on it.
Measure 2 = IF([Measure]>=0,BLANK(),[Measure])
This is a bit different scenario. please put your measure as value, weeks as column and any other dimention that measure impacts (part, etc) in row. Thing is measure filter will work for total measure value <0 and im looking for to see measure values <0 for each week / each part.
So to cut the long story short im just looking to see all items (rows) where measure was <0 at any week (like on this picture):
when there was an event = measure<0 it is coloured in red and i just want to see items impacted by red. doable?
Hi mhsk ,
Create a new measure as below to work on it.
Measure 2 = IF([Measure]>=0,BLANK(),[Measure])
- dimperio4 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.
- Anonymous3 years agoNot applicable
Thanks for your help!