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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
bsz412
Helper III
Helper III

calculate average of category averages

Hello, 

 

 I would like to create calculated columns:

- averages per category (per supplier per country and per etim class) - this I can calculate.

- Where I got stuck is how to calculate the average of those values above, taken every supplier, country and etim class combination only once.

 

Example: 

supplier_avg_co2_total: e.g for ABB, for MCB in France: (8+2+9+28)/4 - I can calculate this.

ETIM_country_avg: 

that would show the average of supplier’s averages. In the example below  for France and MCB: (11.75+6.67+14.16)/3

 

bsz412_0-1656331650318.png

 

thank you!

 

1 ACCEPTED SOLUTION

This DAX works: 

 

CALCULATE(
AVERAGEX(
SUMMARIZE('table', 'table'[Country],'table'[ETIM Class],'table'[supplier_avg_CO2_total]),'table'[supplier_avg_CO2_total]
),
ALLEXCEPT('table','table'[Country],'table'[ETIM Class])
)

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@bsz412 ,  Try a measure like

 

AverageX(Summarize(Table, Table[Country], Table[ETIM_country]), calculate([Suppier_Avg_col2_total], allexcept(Table, Table[Country], Table[ETIM_country])))

 

 

in case Suppier_Avg_col2_total is a column

AverageX(Summarize(Table, Table[Country], Table[ETIM_country]), calculate(Average([Suppier_Avg_col2_total]), allexcept(Table, Table[Country], Table[ETIM_country])))

hello @amitchandak ,

 

Thanks for your help! The DAX gives me this result: 

 

bsz412_0-1656340755050.png

same number for each row, probably the dax needs a bit fine-tuning, but I dont know how...

This DAX works: 

 

CALCULATE(
AVERAGEX(
SUMMARIZE('table', 'table'[Country],'table'[ETIM Class],'table'[supplier_avg_CO2_total]),'table'[supplier_avg_CO2_total]
),
ALLEXCEPT('table','table'[Country],'table'[ETIM Class])
)

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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