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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors