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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.