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
Happy2023_05
Helper I
Helper I

AvG value remain same irrespective of slicer selection

hi,    

need DAX help. I need to find avg values for store which has to remain same irrespective of slicer selection. 3rd column in the below table has same values. can some one pls help on writing DAX to achive this scenario? 

 

store name     values

store 1            10

store 2              20

 

month    avg  avg   slicer selection

Nov-22   15     15     no store sel

Nov-22   10     15      store 1 selected

Nov-22   20    15      store 2 selected

 

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

hi @Happy2023_05 ,

 

If i understand well your ask, you want an average value without matter the filter, you can do that then:

 

CALCULATE ( AVERAGE ([Values]), ALL( Table Name where is the column of slicer selection, [slicer selection]))

    

 

View solution in original post

NikhilChenna
Skilled Sharer
Skilled Sharer

Hi @Happy2023_05 , its simple and i think the below solution will help you.

 

1. Create a calculated measure - 

Avg_revised = 
CALCULATE (

       AVERAGE (table1[values]),

       ALL(table1)
)

 

Regards,

Nikhil Chenna

 

Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

View solution in original post

4 REPLIES 4
NikhilChenna
Skilled Sharer
Skilled Sharer

Hi @Happy2023_05 , its simple and i think the below solution will help you.

 

1. Create a calculated measure - 

Avg_revised = 
CALCULATE (

       AVERAGE (table1[values]),

       ALL(table1)
)

 

Regards,

Nikhil Chenna

 

Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

  • Thank you.It worked

Hi @Happy2023_05 ,

 

Please Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

Anonymous
Not applicable

hi @Happy2023_05 ,

 

If i understand well your ask, you want an average value without matter the filter, you can do that then:

 

CALCULATE ( AVERAGE ([Values]), ALL( Table Name where is the column of slicer selection, [slicer selection]))

    

 

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.