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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
carinat
Advocate II
Advocate II

Create new table with averages of columns from other table

Hi,

 

I'm trying to make a new table containing two columns. Column1 should have categories which represent column headers from another table and Column2 should contain the corresponding average of the column.

 

Example: Current table looks like:

ABC
1437
5655
334
65854
38

4

I would like to obtain the following table:

CategoryAverage
A3,6
B24,8
C174,8

 

I'm not very experienced so I hope I'm just overlooking something. I've tried to think in both advanced queries on my original source and calculated tables but didn't come up with anything.

 

Any help would be appreciated!

1 ACCEPTED SOLUTION
pqian
Microsoft Employee
Microsoft Employee

@carinat what you are describing is a unpivot and a group by with average:

 

Assuming your original table is "Table 1":

let
    Source = Table1,
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(Source, {}, "Attribute", "Value"),
    #"Grouped Rows" = Table.Group(#"Unpivoted Columns", {"Attribute"}, {{"Average", each List.Average([Value]), type number}})
in
    #"Grouped Rows"

Gives:

AttributeAverage

A3.6
B24.8
C174.8

View solution in original post

2 REPLIES 2
pqian
Microsoft Employee
Microsoft Employee

@carinat what you are describing is a unpivot and a group by with average:

 

Assuming your original table is "Table 1":

let
    Source = Table1,
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(Source, {}, "Attribute", "Value"),
    #"Grouped Rows" = Table.Group(#"Unpivoted Columns", {"Attribute"}, {{"Average", each List.Average([Value]), type number}})
in
    #"Grouped Rows"

Gives:

AttributeAverage

A3.6
B24.8
C174.8

Great thanks! It works like a charm. And I'm even learning something new 🙂

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors