Adding a Date Column to a Power BI Grouped Table for Monthly Totals by Business Unit

tazeo

Board Regular
Joined
Feb 15, 2007
Messages
132
Office Version
  1. 365
Platform
  1. Windows
I have a (successful) query that Groups Rows by a business unit name, and sums a few columns to give totals those units. In a previous step I had already filtered my data to just be one month so I could check my totals against the manual report we use.

Now I have opened it up to all the dates, I just have the totals for all the dates.

How do I add a column to the grouped table for the date (consolidated to year and month)?
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
From Bing AI:
To group by two columns in Power Query, you can use the Group By feature. Here’s how you can do it:

  1. Select the columns you want to group by.
  2. Go to the Home tab and click on the Group By button in the Transform Data section.
  3. In the Group By dialog box, select the columns you want to group by and click OK.
  4. In the new column that is created, you can see the grouped data.
You can also use Power Query M formula language to group by two columns. Here’s an example:

= Table.Group(#"Previous Step", {"Column1", "Column2"}, {{"Sum", each List.Sum([Column3]), type number}})

This formula groups data by Column1 and Column2 and calculates the sum of Column3 for each group.

I hope this helps! Let me know if you have any other questions.
 
Upvote 0
Solution

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top