Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
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]))
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!
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!
Hi @Happy2023_05 ,
Please Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
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]))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 21 | |
| 10 | |
| 8 | |
| 8 |