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
Dellis81
Continued Contributor
Continued Contributor

Weighted Average

Hello - I am needing help with a weighted average calculate across multiple combination of categories.   This is a first attempt, utilizing PBI quickmeasures - unfortunately only allows one category

 

Moisture WtAvg per Field = 
VAR __CATEGORY_VALUES = VALUES('Table'[Field])
RETURN
	DIVIDE(
		SUMX(
			KEEPFILTERS(__CATEGORY_VALUES),
			CALCULATE([SumMoisture] * [WetBushels])
		),
		SUMX(KEEPFILTERS(__CATEGORY_VALUES), CALCULATE([WetBushels]))
	)

 

I am really needing a single? measure that can handle most any combination of categories.

 

The three most needed are identified in the attached file - as visuals.

 

The blue circled should be 14.0% and Red 20.87%

 

WtAvg.PNG

Hopefully this google link with example file will work for you!

https://drive.google.com/open?id=1H4-ELiGSIK-v3el6zlBNABFugJfModo0

 

As Always - thank you!

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

You need to iterate at the lowest level of granularity for it to work properly at all levels.

 

In this case, you can iterate at the table row level to keep things simple.

 

 

Avg Moisture =
DIVIDE (
    SUMX ( 'Table', [SumMoisture] * [WetBushels] ),
    SUMX ( 'Table', [WetBushels] )
)

 

Note that this gives 14% for both numbers circled. The value 20.87% makes no sense when all of the moisture measurements are below 16%.

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

How did you calculate the 20.87%?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Sorry, I was working off a spreadsheet, and had a transposed number.   Appreciate your time - solution has been found.

AlexisOlson
Super User
Super User

You need to iterate at the lowest level of granularity for it to work properly at all levels.

 

In this case, you can iterate at the table row level to keep things simple.

 

 

Avg Moisture =
DIVIDE (
    SUMX ( 'Table', [SumMoisture] * [WetBushels] ),
    SUMX ( 'Table', [WetBushels] )
)

 

Note that this gives 14% for both numbers circled. The value 20.87% makes no sense when all of the moisture measurements are below 16%.

Dellis81
Continued Contributor
Continued Contributor

Thank you very much.   After all my google searches, your solution is so elegant.   Apologize on the 20% number, I was working off a spreadsheet, and had a wrong number typed in.

 

Thank you!

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.