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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.