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
carinat
Advocate I
Advocate I

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
Employee
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
Employee
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
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.