Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have 2 columns, Num Hrs & DayName. How do I count the number of hrs in Num Hrs if DayName = Sunday?
Num Hrs is in Duration format, DayName is Text.
Regards,
Gerry
Solved! Go to Solution.
Hi,
Thanks for the reply. Yeah, SUM is what I meant. I have what I need using - Sunday Hrs = CALCULATE(SUM(CarerActualWork[Num Hrs]),CarerActualWork[DayName] = "Sun")
Thanks anyway.
Gerry
Just filter and sum (I think you mean "sum" instead of "count"):
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Num Hrs", type duration}, {"Day", type text}}),
#"Filtered Rows" = Table.SelectRows(#"Changed Type", each ([Day] = "Sunday")),
#"Calculated Sum" = List.Sum(#"Filtered Rows"[Num Hrs])
in
#"Calculated Sum"
Hi,
Thanks for the reply. Yeah, SUM is what I meant. I have what I need using - Sunday Hrs = CALCULATE(SUM(CarerActualWork[Num Hrs]),CarerActualWork[DayName] = "Sun")
Thanks anyway.
Gerry
Hi @android1,
Glad to hear the issue is solved. You can accept helpful replies as answers to close this thread.
Thanks,
Lydia Zhang
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.