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
SidharthK16
Frequent Visitor

Column and Row level average

Hi All,

Hope you are doing great!

I need some help in Dax Query.

where I need to calculate Row level and Column level average.

Sharing below the excel for the reference.

Row LabelsSpriteMazzaLimcaAverage
A14.0%25.3%15.9%18.4%
B10.1%9.6%9.0%9.6%
C8.0%10.2%6.7%8.3%
D 13.1%9.7%10.3%
E20.8%39.2%22.7%27.6%
Average13.2%19.5%12.8%15.3%

 

So, as shown below we have 5 Row level and 3 Brands in column.
What I need is to calculate Column and Row average(Highlighted in Bold).
Please give your expert advice.
Thanks 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@SidharthK16 , Assume you already have % measure, Try a measure like

 

Switch(True(),
not(isninscope(Table[Drink])) && isninscope(Table[Category]), AverageX(Values(Table[Drink]), [Measure]),
not(isninscope(Table[Category])) && isninscope(Table[Drink]), AverageX(Values(Table[Category]), [Measure]),
inot(isninscope(Table[Category])) && not(isninscope(Table[Drink])) , AverageX(Summarize(Table, Table[Drink],Table[Category]), [Measure]),
[Measure])

 

 

https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@SidharthK16 , Assume you already have % measure, Try a measure like

 

Switch(True(),
not(isninscope(Table[Drink])) && isninscope(Table[Category]), AverageX(Values(Table[Drink]), [Measure]),
not(isninscope(Table[Category])) && isninscope(Table[Drink]), AverageX(Values(Table[Category]), [Measure]),
inot(isninscope(Table[Category])) && not(isninscope(Table[Drink])) , AverageX(Summarize(Table, Table[Drink],Table[Category]), [Measure]),
[Measure])

 

 

https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/

Thank you for help
I have to do some changes and its working

Thanks again

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors