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
lucas_dantasc
Frequent Visitor

Average using M (Power Query)

Hi,

 

I would like to create a column named as "average" to calculate the avarage for each ag_regional for this whole periods in my data base (the script has to select all dates registred to make the average , I have to select all columns with dates at once instead of write one by one and exclude NULL values from the average)

 

How do I make it happen?

 

Average.jpg

2 ACCEPTED SOLUTIONS
artemus
Employee
Employee

It would be something like

each List.Average(Record.FieldValues(_ & [ag_regional=null]))

 

View solution in original post

Oh sorry if I wasn't clear, you put that line in a add colums - custom column dialog.

In that case, the line would have:

Average = Table.AddColumns(#"Pivoted Column", "Average", <the line I provided starting with each>)

View solution in original post

3 REPLIES 3
artemus
Employee
Employee

It would be something like

each List.Average(Record.FieldValues(_ & [ag_regional=null]))

 

When I put the Script:

 

scriptmedia.jpg

 

Then It happens, what do I have to put in this blank space?

 

scriptmedia.jpg

Oh sorry if I wasn't clear, you put that line in a add colums - custom column dialog.

In that case, the line would have:

Average = Table.AddColumns(#"Pivoted Column", "Average", <the line I provided starting with each>)

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