Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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!
Solved! Go to Solution.
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.
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.
@cpatton10 See if this helps: S Excel to DAX Translation - Microsoft Fabric Community
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
16 | |
10 | |
9 | |
9 | |
8 |
User | Count |
---|---|
23 | |
16 | |
14 | |
12 | |
12 |