This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have a decimal column in my table which can have values in the range 0-200. But When ploting in a line graph I want the maximun value to be 100. For example let's say there is a value in that column which is 150, I want it to be 100 in the graph visual. All the values above 100 should be displayed as 100. This is not same as setting a filter and excluding all the values above 100. I need the values chopped to 100. Any idea how to do this?
Solved! Go to Solution.
Hi @Deepan
You could try a calculated measure like this.
Measure =
VAR coreMeasure = CALCULATE(SUM('Table2'[Values]))
RETURN
IF(
coreMeasure>100,
-- THEN --
100,
-- ELSE --
coreMeasure
)You can apply the same approach on a Calculated Column if you prefer
Just replace the code for the core measure with your own code.
Hi @Deepan
You could try a calculated measure like this.
Measure =
VAR coreMeasure = CALCULATE(SUM('Table2'[Values]))
RETURN
IF(
coreMeasure>100,
-- THEN --
100,
-- ELSE --
coreMeasure
)You can apply the same approach on a Calculated Column if you prefer
Just replace the code for the core measure with your own code.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 36 | |
| 32 | |
| 25 | |
| 23 |