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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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