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
nmck86
Post Patron
Post Patron

SumIf in Dax

Hi All,

 

I am trying to translate a calculation I created in excel into Power Bi and am running into major issues. I was hoping that someone could take a look at the two attached files and give me some insight on what is going on. The excel file has the results that I am looking for.

 

https://docs.google.com/file/d/1-aXWaQbD_2Fh4ts6w51KhjQ53fWfbMFa/edit?usp=docslist_api&filetype=msex...

 

https://drive.google.com/open?id=1HN8Z1COYbUMyT2rptIkHfWd6RupbvHuN

 

 

1 ACCEPTED SOLUTION

I was able to get the solution! Another user was able to help! I can share the formula if needed. @danextian was able to help out!

View solution in original post

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @nmck86,

 

Please check out the demo here.

I would suggest you use the original data instead of the unpivot data. For example below, filtering out the row in the red rectangle from the unpivot table would be very hard.

Sum_If_in_Dax

Water Quality =
DIVIDE (
    CALCULATE (
        SUM ( 'Result'[Weights] ),
        FILTER (
            'Result',
            'Result'[likeliness to recommend] >= 9
                && 'Result'[water quality] = EARLIER ( Rankings[Value] )
        )
    )
        - CALCULATE (
            SUM ( 'Result'[Weights] ),
            FILTER (
                'Result',
                'Result'[likeliness to recommend] <= 6
                    && 'Result'[water quality] = EARLIER ( Rankings[Value] )
            )
        ),
    CALCULATE (
        SUM ( 'Result'[Weights] ),
        'Result'[water quality] = EARLIER ( Rankings[Value] )
    )
)
Water Prices =
DIVIDE (
    CALCULATE (
        SUM ( 'Result'[Weights] ),
        FILTER (
            'Result',
            'Result'[likeliness to recommend] >= 9
                && 'Result'[water price] = EARLIER ( Rankings[Value] )
        )
    )
        - CALCULATE (
            SUM ( 'Result'[Weights] ),
            FILTER (
                'Result',
                'Result'[likeliness to recommend] <= 6
                    && 'Result'[water price] = EARLIER ( Rankings[Value] )
            )
        ),
    CALCULATE (
        SUM ( 'Result'[Weights] ),
        'Result'[water price] = EARLIER ( Rankings[Value] )
    )
)

Sum_If_in_Dax2

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

I was able to get the solution! Another user was able to help! I can share the formula if needed. @danextian was able to help out!

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.