Thanks for your help in advance.
Regards, Raj
Adding the values to MAX()
values would skew the data even if it were possible. There are two hacks to do this though.
MIN
range value and MAX
range values to something that would eliminate all outliers. This is really only suitable for box plots that are close in all values to each other (all percentiles)`
case
when [y-axisColumn]<(Q1([y-axisColumn]) - (1.5 * IQR([y-axisColumn]) OVER ([x-axisColumn]))) then "LowerOutlier"
when [y-axisColumn]>(Q3([y-axisColumn]) + (1.5 * IQR([y-axisColumn]) OVER ([x-axisColumn]))) then "UpperOutlier"
else "NotOutlier"
end as [Outlier]
`