Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
143 | |
121 | |
112 | |
58 | |
57 |