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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
MBreden
Helper I
Helper I

Need help with the calculation of averages

Hi all,
I have a table with retailers, categories and values.

MBreden_4-1685025942923.png

To calculate the percentage of categories per retailer, I am using a measure from this forum.

MBreden_5-1685026000889.png

Ret % =

Var _N1=[TT Sum]

Var _N2=CALCULATE(SUM(Data[Value]),FILTER(ALL(Data),[Retailer]=SELECTEDVALUE(DimRetailer[Retailer])))

Return

DIVIDE(_N1,_N2)

 

Now I am still at a loss how to calculate the average of all retailers per category from the result of the measure.

MBreden_3-1685025933016.png 

Any help is appreciated!

1 ACCEPTED SOLUTION

Hi @Anonymous ,

This is exactly what I was looking for, thank you so much!
I have adjusted the formula with AVERAGEX and the results are perfect.

 

Measure = 

VAR _1 =

    SUMMARIZE ( DimRetailer, DimRetailer[Retailer], "aaa", [Ret %] )

RETURN

    IF ( ISINSCOPE ( DimRetailer[Retailer] ), [Ret %], AVERAGEX( _1, [aaa] ) )

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @MBreden ,

Please have a try.

Create another measure.

Measure =
VAR _1 =
    SUMMARIZE ( DimRetailer, DimRetailer[Retailer], "aaa", [Ret %] )
RETURN
    IF ( ISINSCOPE ( DimRetailer[Retailer] ), [Ret %], SUMX ( _1, [aaa] ) / 4 )

vrongtiepmsft_0-1685328059552.png

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @Anonymous ,

This is exactly what I was looking for, thank you so much!
I have adjusted the formula with AVERAGEX and the results are perfect.

 

Measure = 

VAR _1 =

    SUMMARIZE ( DimRetailer, DimRetailer[Retailer], "aaa", [Ret %] )

RETURN

    IF ( ISINSCOPE ( DimRetailer[Retailer] ), [Ret %], AVERAGEX( _1, [aaa] ) )

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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