Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Deepan
Regular Visitor

Set a maximum value for a decimal column

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?

2 ACCEPTED SOLUTIONS
Phil_Seamark
Employee
Employee

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


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

Just replace the code for the core measure with your own code.


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

2 REPLIES 2
Phil_Seamark
Employee
Employee

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


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Just replace the code for the core measure with your own code.


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.