Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
10 | |
6 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |