Forum Discussion
MidiGlitch
9 years agoFrequent Visitor
Filter data by excluding max and min values
Hi All: I have a table grouped by Ids and for each Id there are several rows. Unfortunately, both the max and min values of a column I wish to display are spurious and I want to filter them out of t...
- 9 years ago
Hi MidiGlitch,
Add this measure to your data:
Average_Without_Max_MIN = VAR Maximum = MAX ( Table2[Values] ) VAR Minimum = MIN ( Table2[Values] ) RETURN CALCULATE ( AVERAGE ( Table2[Values] ), Table2[Values] <> Maximum && Table2[Values] <> Minimum )As you can see below it ignores the max and minimum in each group
Regards,
MFelix
MFelix
Super User
9 years agoHi MidiGlitch,
Add this measure to your data:
Average_Without_Max_MIN =
VAR Maximum =
MAX ( Table2[Values] )
VAR Minimum =
MIN ( Table2[Values] )
RETURN
CALCULATE (
AVERAGE ( Table2[Values] ),
Table2[Values] <> Maximum
&& Table2[Values] <> Minimum
)As you can see below it ignores the max and minimum in each group
Regards,
MFelix
MidiGlitch
9 years agoFrequent Visitor
Excellent, except...
After allowing DAX expressions in Options, I am just getting back zeros
- MFelix9 years ago
Super User