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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
JEM_Systems
Helper I
Helper I

Do a SUMIFS() excel formula but in DAX

Hello Everyone, how can I do this formula cleary simple in Excel but in DAX? I'm struggling to get it.

=T3/SUMIFS(T:T,AM:AM,AM3)

1 ACCEPTED SOLUTION
mh2587
Super User
Super User

SumIF = //try this
DIVIDE(
    Table1[T3],
    CALCULATE(
        SUM(Table1[T]),
        FILTER(
            Table1,
            Table1[AM] = EARLIER(Table1[AM])
        )
    )
)

Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



View solution in original post

1 REPLY 1
mh2587
Super User
Super User

SumIF = //try this
DIVIDE(
    Table1[T3],
    CALCULATE(
        SUM(Table1[T]),
        FILTER(
            Table1,
            Table1[AM] = EARLIER(Table1[AM])
        )
    )
)

Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors