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

Calculating average values based on filter

I want to calculate one total weighted average based on all entries in a table that responds to user selected filters on the table.

In these tables the quantity is the weight and hardiness is the base value. 

So for table 1 the weighted avg would be 4.1785

MulberyPie_0-1652903024512.pngMulberyPie_2-1652903818377.png

 

But for table 2 the overall average would be 3.625

MulberyPie_1-1652903055558.png MulberyPie_1-1652903783694.png

How could I show a weighted average for all fields in a filtered table?

 

 

1 ACCEPTED SOLUTION
johncolley
Solution Sage
Solution Sage

Hi @MulberyPie ,

 

Assuming I have your logic right - I think the answer you are expecting is 4.107 when nothing is selected? If so the following should work.

Weighted Avg = 
Var Plantvalue = SUMX(Plants, Plants[Quantity]*Plants[Hardiness ])
Var Quantity = SUM(Plants[Quantity])
Var result = Plantvalue / Quantity
Return
result

 

View solution in original post

4 REPLIES 4
johncolley
Solution Sage
Solution Sage

Hi @MulberyPie ,

 

Assuming I have your logic right - I think the answer you are expecting is 4.107 when nothing is selected? If so the following should work.

Weighted Avg = 
Var Plantvalue = SUMX(Plants, Plants[Quantity]*Plants[Hardiness ])
Var Quantity = SUM(Plants[Quantity])
Var result = Plantvalue / Quantity
Return
result

 

Sorry, I'm not super familiar with PowerBI is that a DAX function? Where would I use that?

I think I figured it out. I'm assuming that it would be put into a new measure 🙂

Hi @MulberyPie, sorry should have stated in my original message! Yes it's a new measure.

 

Hope the measure helped, if it addressed your problem please mark it as a solution!

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.