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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
nkasdali
Microsoft Employee
Microsoft Employee

disabling interaction using dax

Hi All,

 

I'm using several measures and displaying them in Card Visual, on the same page have also several slicers.

 

Do you know how I can do to disable the interaction between my slicer and my card using DAX in my measures?

 

Thanks

1 ACCEPTED SOLUTION

@nkasdali ,

 

I'm afraid dax can't disable interaction between visuals, ALL() function can only remove the filters in the filter context in dax expression. You need to use "visual interaction" in the format pane.

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
DonScott9876
Regular Visitor

Don't listen to the nay sayers. I've found thinking about things in the opposite way really helps with Power BI and DAX. Try creating an inactive relationship and then simply tack on a 'USERELATIONSHIP' function for all your existing measures and leave out the USERELATIONSHIP function for that one visual where you don't want the interaction to happen. Hey presto!

JarroVGIT
Resident Rockstar
Resident Rockstar

Use context changers like ALL(table), ALLEXCEPT(table, table[col1]), etc to escape the impact of slicers on measures.
For example, measure = CALCULATE ( SUM (table[Column]), ALL (table) ) will always result in the total sum of table[column] regardless of the context created by the current slicer selection.




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @JarroVGIT 

I tried All, Allexpect ! but didn't work. You can see in the profile AAS is executing a DAX calculation on my measure when selecting a value in my slicer.

 

Knowing that I have 22 measures in 22 cards, my aim is to avoid to send useless queries to my AAS.

 

It works well by disabling the interaction in the "Format" view but want to do it using DAX.

 

Capture.JPG

@nkasdali ,

 

I'm afraid dax can't disable interaction between visuals, ALL() function can only remove the filters in the filter context in dax expression. You need to use "visual interaction" in the format pane.

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

You can't, I am sorry. I see what you are trying to achieve. Upon changing the datamodel context by selecting a slicer, you don't want all measures to reevaluated if they aren't impacted. However, this is not how PowerBI works. When selecting a slicer, your datamodel is reevaluated and so are all your measures. You can't disable this behavior in DAX and can only change interaction from the Edit Interactions button in PBI Desktop.
Hope this answers your question,
Derro123




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.