Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello wonderful community, I will try my best to be brief in this request.
For simplicity, I have a table below (the table name is WorkCentre220) that I have filtered Week Number = 38 and Year = 2022. The total sum of Required Hours under these filters is 98.698 (98.70 round off)
Challenge:
I want to return a new table using GROUPBY function that group [Week Number] and [Year] into a single row and sum the total value of column [Required Hours] into One Row.
I have worked out the DAX formula to return the table but can't quite figure out how to finish this:
Expected Results:
Week Number | Year | Total Required Hours by Week and Year |
38 | 2022 | 98.70 |
39 | 2022 | 264.90 |
40 | 2022 | 94.90 |
I'd really appreciate if someone could help me please.
Thanks everyone and have a wonderful day!
Solved! Go to Solution.
Hi wonderful community, I have figured it out!!
Use SUMMARIZE instead of GROUPBY:
NewTable = SUMMARIZE(WorkCentre220,WorkCentre220[5. Week Number],WorkCentre220[6. Year],"Total",SUM(WorkCentre220[3. Required Hours]))
Results:
Hi wonderful community, I have figured it out!!
Use SUMMARIZE instead of GROUPBY:
NewTable = SUMMARIZE(WorkCentre220,WorkCentre220[5. Week Number],WorkCentre220[6. Year],"Total",SUM(WorkCentre220[3. Required Hours]))
Results:
Hi @Anonymous ,
I am so glad to hear that your problem has been solved . Please consider Accept it as the solution to help the other members find it more quickly.
Best regards,
Yadong Fang
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |