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! Learn more
Hi all,
I have a measure as follows:
Hi
Not sure if i understood correctly, but if you want to remove the filter context for a certain table you can do that with the ALL() function.
Try something like this
National Average = CALCULATE(
AVERAGE('Cancer Profile'[Value]),
FILTER(
ALL('Cancer Profile')
,'Cancer Profile'[Area Code]="E92000001")
)
For further documentation check this microsoft examples, as there are some variations of ALL function that can be usefull to you
@Anonymous you can disble interaction between a slicer and a visual using edit interaction feature. see below for help.
Proud to be a Super User!
I don't want the slicer to stop interacting with the visual, I just want the measure to be present on the visual regardless of what the option is selected on the slicer.
For example:
When no area is selected on the slicer, the above visual shows the national average at the bottom, but when you chose a specific area:
The national average then disappears when an area is chosen, becasue it's obviously just looking at that area.
I want the national value average to stay on the graph, regardless of what area is chosen so you can compare.
if that makes sense?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.