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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
cpatton10
Frequent Visitor

SumIfs referencing cells excel to Power BI

Hello.

 

I am trying to replicate an Excel SumIfs formula in Power BI. The excel formula is =SumIfs(Hours Worked,Name Column, A5,Start Date, H5). Where A5 is the name in the corresponding row and H5 is the date in the corresponding row. I need to try and use this in Power BI. The list of names and dates is very long and has many unique values.

 

Thanks!

1 ACCEPTED SOLUTION
v-junyant-msft
Community Support
Community Support

Hi @cpatton10 ,

Please try this DAX to create a calculated column:

SumHoursWorked = CALCULATE(
    SUM(WorkData[Hours Worked]),
    FILTER(
        WorkData,
        WorkData[Name Column] = EARLIER(WorkData[Name Column]) && WorkData[Start Date] = EARLIER(WorkData[Start Date])
    )
)


If this DAX doesn't work, please provide a bit of sample data and the calculations you wish to perform.

Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-junyant-msft
Community Support
Community Support

Hi @cpatton10 ,

Please try this DAX to create a calculated column:

SumHoursWorked = CALCULATE(
    SUM(WorkData[Hours Worked]),
    FILTER(
        WorkData,
        WorkData[Name Column] = EARLIER(WorkData[Name Column]) && WorkData[Start Date] = EARLIER(WorkData[Start Date])
    )
)


If this DAX doesn't work, please provide a bit of sample data and the calculations you wish to perform.

Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Super User
Super User

@cpatton10 See if this helps: S Excel to DAX Translation - Microsoft Fabric Community



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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

Top Solution Authors