Forum Discussion
finance_124
4 years agoNew Member
Dax Code to identify Outliers
Long time reader, first time poster... I'm having a difficult time figuring out the DAX formula to identify outliers. I can easily do this in Excel but just can't figure out the needed DAX code. ...
tamerj1
Community Champion
4 years agoSorry I thought this is a source data table. However, it should also work if you create a measure the same way.
IF ( SUM ( Table[Minutes] ) > [Upper Bound], "Outlier", "Normal" )