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
mumair
Helper I
Helper I

How to Group By?

How do I group my data? Let's say for example, I have data with these columns: managers, months, and sales. I want the total sales per month per manager. How would I write this in DAX?

1 ACCEPTED SOLUTION

Hi @mumair,

You can create a new table using SUMMARIZE function by New Table under Modeling on home page->type the following formula.

Group-by-table=SUMMARIZE(Table,Table[Month], Table[Managers],"Total Sales", sum(Table[sale]))  


You also can create a new calculated column using the formula.

Total-sales-column = CALCULATE(SUM(Table[sales]),ALLEXCEPT(Table,Table[Month],Table[Managersr]))


Thanks,
Angelia

View solution in original post

3 REPLIES 3
CahabaData
Memorable Member
Memorable Member

You may not need dax.  Try experimenting with a Table visual or a Matrix visual - drag the fields into the appropriate design wells in the design pane - - and for this type of data PBI is going to recognize that grouping & aggregation.

 

If you already know this - and know you need/want to model it with calculated measure/columns - provide just a few line/record samples of your raw data table as a starting point...

www.CahabaData.com

Yes, I need to use DAX. The example I provided was to assist me in my actual dataset which is much larger. I cannot share the real data because it is properitary.

 

 

Hi @mumair,

You can create a new table using SUMMARIZE function by New Table under Modeling on home page->type the following formula.

Group-by-table=SUMMARIZE(Table,Table[Month], Table[Managers],"Total Sales", sum(Table[sale]))  


You also can create a new calculated column using the formula.

Total-sales-column = CALCULATE(SUM(Table[sales]),ALLEXCEPT(Table,Table[Month],Table[Managersr]))


Thanks,
Angelia

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.