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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Community,
I am new powerbi user and I just wanted help with a dax formula that can help scale my outliers to a single value.
I am trying to scale down Monthly Income which sits with outliers greater than a $1M and I am trying to bring all the values that are greater than that down to $150k.
Your assistance would be greatly appreciated
Solved! Go to Solution.
Hi!
You can create a calculated column like this:
Calc column = IF([Monthly Income] > 1000000, 150000, [Monthly Income])
Hi!
You can create a calculated column like this:
Calc column = IF([Monthly Income] > 1000000, 150000, [Monthly Income])
Thank you so much