Forum Discussion
Anonymous
6 years agoNot applicable
Filter matrix by standard deviation
Hi Is there a way I can filter my results in a matrix using standard deviation? For example my matrix has numerical values in the columns going down, and I would like to make blank the values whi...
- 6 years ago
Hi Anonymous ,
Is this what you want?
Measure = VAR sd_AvgMileage = CALCULATE ( STDEV.P ( 'Table'[Avg Mileage] ), ALLSELECTED ( 'Table' ) ) RETURN IF ( MAX ( 'Table'[Avg Mileage] ) > sd_AvgMileage + 2 || MAX ( 'Table'[Avg Mileage] ) < sd_AvgMileage - 2, BLANK (), MAX ( 'Table'[Avg Mileage] ) )Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
Icey
Community Support
6 years agoHi Anonymous ,
Is this what you want?
Measure =
VAR sd_AvgMileage =
CALCULATE ( STDEV.P ( 'Table'[Avg Mileage] ), ALLSELECTED ( 'Table' ) )
RETURN
IF (
MAX ( 'Table'[Avg Mileage] ) > sd_AvgMileage + 2
|| MAX ( 'Table'[Avg Mileage] ) < sd_AvgMileage - 2,
BLANK (),
MAX ( 'Table'[Avg Mileage] )
)
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.