Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I am currently trying to to find data points of a column called "EPG" which fall outside of 2 standard deviations to remove outliers.
to get the Average:
To find outliers in the data:
Solved! Go to Solution.
+2Std = VAR StandardDev =
CALCULATE(
STDEV.P( 'PhenRQCJoinData'[EPG] ),
REMOVEFILTERS( 'PhenRQCJoinData' )
)
VAR OverallAverage =
CALCULATE(
[Internal Average],
REMOVEFILTERS( 'PhenRQCJoinData' )
)
VAR NumOver =
COUNTROWS(
FILTER(
'PhenRQCJoinData',
'PhenRQCJoinData'[EPG] > OverallAverage + StandardDev * 2
)
)
RETURN
NumOver
+2Std = VAR StandardDev =
CALCULATE(
STDEV.P( 'PhenRQCJoinData'[EPG] ),
REMOVEFILTERS( 'PhenRQCJoinData' )
)
VAR OverallAverage =
CALCULATE(
[Internal Average],
REMOVEFILTERS( 'PhenRQCJoinData' )
)
VAR NumOver =
COUNTROWS(
FILTER(
'PhenRQCJoinData',
'PhenRQCJoinData'[EPG] > OverallAverage + StandardDev * 2
)
)
RETURN
NumOver
Thanks heaps, Worked well.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |