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
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |