Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
knafzal01
Frequent Visitor

GROUPBY DAX to return a table with a sum of column that group by 2 other columns from another table

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)

 

knafzal01_0-1661811457473.png

 

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:

 

Required_Hours_By_Week_And_Year = GROUPBYWorkCentre220WorkCentre220[5. Week Number]WorkCentre220[6. Year]"Total Required Hours by Week and Year", )

 

Expected Results:

 

Week NumberYearTotal Required Hours by Week and Year
38202298.70
392022264.90
40202294.90

 

I'd really appreciate if someone could help me please.

Thanks everyone and have a wonderful day!

1 ACCEPTED SOLUTION
knafzal01
Frequent Visitor

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:

 

knafzal01_0-1661813704436.png

 

View solution in original post

2 REPLIES 2
knafzal01
Frequent Visitor

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:

 

knafzal01_0-1661813704436.png

 

Hi @knafzal01 ,

 

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors