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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Huiyan
Regular Visitor

Multiple IF and return calculated results if false

Hey Guys, 

 

Can you kindly guide me on the formula below? If formula result is bigger than 1.5, i want to cap it at 1.5, otherwise I need to keep the calculated result. Is there a way to do this?

Huiyan_0-1623996216963.png

Thanks in advance! 

Huiyan

1 ACCEPTED SOLUTION

@Huiyan 

Can you try this formula?

Achievement_viz =
VAR one =
    CALCULATE (
        IF (
            [Culmulative] = 0,
            SUM ( Data[A2020] ) / SUM ( Data[M2020] ),
            (
                ( SUM ( Data[A2020] ) - SUM ( Data[Baseline] ) )
                    / ( SUM ( Data[M2020] ) - SUM ( Data[Baseline] ) )
            )
        )
    )
RETURN
    IF ( one >= 1.5, 1.5, one )
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

5 REPLIES 5
Fowmy
Super User
Super User

@Huiyan 

Can you paste the formula in this replay box as text to check?. 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

@Fowmy  Millions thanks!

Achievement_viz = CALCULATE(IF((IF([Culmulative]="0",SUM(Data[A2020])/sum(Data[M2020]),((SUM(Data[A2020])-sum(Data[Baseline]))/(SUM(Data[M2020])-SUM(Data[Baseline])))))>1.5,1.5,"")) 

@Huiyan 

Can you explain where you are getting the wrong results, you can share the screenshot that includes all the fields. Are you creating a Measure or a Calculated column?

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

I'm creating a measure. You can see in the table below, there are only '150%' because I did the cap. For the empty cells, I want them to be filled with results of the underlined formula, e.g. 140%, 130%,80% etc. I need to revise the "" part. But I don't know how. @Fowmy 

 

Huiyan_0-1623997684704.png

 

@Huiyan 

Can you try this formula?

Achievement_viz =
VAR one =
    CALCULATE (
        IF (
            [Culmulative] = 0,
            SUM ( Data[A2020] ) / SUM ( Data[M2020] ),
            (
                ( SUM ( Data[A2020] ) - SUM ( Data[Baseline] ) )
                    / ( SUM ( Data[M2020] ) - SUM ( Data[Baseline] ) )
            )
        )
    )
RETURN
    IF ( one >= 1.5, 1.5, one )
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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