The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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