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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
netteSJ
Frequent Visitor

Getting total sum per Month and get average per month per category

HI i need help on how to post calculation in power query.

 

i need to get the total of the Observer column per month and divide it with the total of my parameters each Safe and At risk.

 

Thanks in advance

 

netteSJ_0-1684406687770.png

 

1 ACCEPTED SOLUTION
collinsg
Super User
Super User

netteSJ,

Starting with columns Company, Date and Parameters here is method for Power Query.

  1. Transform the “Date” column to start of month and rename as “Month Starting”.
  2. Add a column called “Count”, with all rows containing 1.
  3. Pivot the “Parameters” column using the “Count” column as the values column.
  4. Replace nulls with zeroes.
  5. Group by company and start of month.
  6. Add a column for total observations.
  7. Add a column for percentage at risk.
  8. Add a column for percentage safe.

The NaNs occur when Total Observations are zero. You may wish to filter out those rows, add some test code for zeroes or replace NaN with some text like N/A.

 

Here is my sample data

collinsg_0-1684658644925.png

...here is the result

collinsg_1-1684658689480.png

...and here is the M code

let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,
{{"Company", type text}, {"Date", type datetime}, {"Parameters", type text}}),
#"Calculated Start of Month" = Table.TransformColumns(#"Changed Type",
{{"Date", Date.StartOfMonth, type datetime}}),
#"Rename Columns to Start of Month" = Table.RenameColumns(#"Calculated Start of Month",
{{"Date", "Month Starting"}}),
#"Add Count" = Table.AddColumn(#"Rename Columns to Start of Month",
"Count",
each 1,
Int64.Type),
#"Pivot Parameters Column" = Table.Pivot(#"Add Count",
List.Distinct(#"Add Count"[Parameters]),
"Parameters",
"Count",
List.Sum),
#"Replace nulls with Zeroes" = Table.ReplaceValue(#"Pivot Parameters Column",
null,
0,
Replacer.ReplaceValue,
{"Safe", "At Risk", "-"}),
#"Group by Company and Month Starting" = Table.Group(#"Replace nulls with Zeroes",
{"Company", "Month Starting"},
{
{"Safe", each List.Sum([Safe]), type nullable number},
{"At Risk", each List.Sum([At Risk]), type nullable number}
}),
#"Add Total Observations" = Table.AddColumn(#"Group by Company and Month Starting",
"Total Observations",
each [Safe] + [At Risk],
Int64.Type),
#"Add % At Risk" = Table.AddColumn(#"Add Total Observations",
"% At Risk",
each [At Risk] / [Total Observations],
Percentage.Type),
#"Add % Safe" = Table.AddColumn(#"Add % At Risk",
"% Safe",
each [Safe] / [Total Observations],
Percentage.Type)
in
#"Add % Safe"

 

View solution in original post

5 REPLIES 5
collinsg
Super User
Super User

netteSJ,

Starting with columns Company, Date and Parameters here is method for Power Query.

  1. Transform the “Date” column to start of month and rename as “Month Starting”.
  2. Add a column called “Count”, with all rows containing 1.
  3. Pivot the “Parameters” column using the “Count” column as the values column.
  4. Replace nulls with zeroes.
  5. Group by company and start of month.
  6. Add a column for total observations.
  7. Add a column for percentage at risk.
  8. Add a column for percentage safe.

The NaNs occur when Total Observations are zero. You may wish to filter out those rows, add some test code for zeroes or replace NaN with some text like N/A.

 

Here is my sample data

collinsg_0-1684658644925.png

...here is the result

collinsg_1-1684658689480.png

...and here is the M code

let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,
{{"Company", type text}, {"Date", type datetime}, {"Parameters", type text}}),
#"Calculated Start of Month" = Table.TransformColumns(#"Changed Type",
{{"Date", Date.StartOfMonth, type datetime}}),
#"Rename Columns to Start of Month" = Table.RenameColumns(#"Calculated Start of Month",
{{"Date", "Month Starting"}}),
#"Add Count" = Table.AddColumn(#"Rename Columns to Start of Month",
"Count",
each 1,
Int64.Type),
#"Pivot Parameters Column" = Table.Pivot(#"Add Count",
List.Distinct(#"Add Count"[Parameters]),
"Parameters",
"Count",
List.Sum),
#"Replace nulls with Zeroes" = Table.ReplaceValue(#"Pivot Parameters Column",
null,
0,
Replacer.ReplaceValue,
{"Safe", "At Risk", "-"}),
#"Group by Company and Month Starting" = Table.Group(#"Replace nulls with Zeroes",
{"Company", "Month Starting"},
{
{"Safe", each List.Sum([Safe]), type nullable number},
{"At Risk", each List.Sum([At Risk]), type nullable number}
}),
#"Add Total Observations" = Table.AddColumn(#"Group by Company and Month Starting",
"Total Observations",
each [Safe] + [At Risk],
Int64.Type),
#"Add % At Risk" = Table.AddColumn(#"Add Total Observations",
"% At Risk",
each [At Risk] / [Total Observations],
Percentage.Type),
#"Add % Safe" = Table.AddColumn(#"Add % At Risk",
"% Safe",
each [Safe] / [Total Observations],
Percentage.Type)
in
#"Add % Safe"

 

Thanks for your quick help😊

collinsg
Super User
Super User

If you don't, strictly, need a solution in Power Query, the calculation you describe is ideally suited to solution in DAX + visualisation. I will illustrate the DAX solution. I loaded this dummy data into a data model.

collinsg_0-1684611916613.png

Then, I created two DAX measures:

Count of Observations := COUNTROWS('Observations')

and

Fraction of Observations :=
DIVIDE(
[Count of Observations],
    CALCULATE(
[Count of Observations],
REMOVEFILTERS('Observations'[Parameters])
)
)

These measures can then be used as values in matrix visuals,

collinsg_1-1684612512827.png

 

Hi Collinsg, i need to have it in Power Query. Below is data i want to have. I need to get the total Observations submitted using Column of Observer and divide it with the Total At risk and Safe to get the percentage. Which i can filter by company and month.

 

DataPic.PNG

 

Main Data/ Source file

DataPic2.PNG

lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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