cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
msuser48
Helper I
Helper I

How to make one filter change when another filter changes

I have two filters:

 

msuser48_0-1669637921733.png

 

I want to create a measure such that when I click "Yes" in Y/N, I automatically also tick "Active" and "Cancelled" in the State slicer.

 

When I untick "yes", it should also untick "active" and "cancelled" once again from the State slicer.

 

How can this be done?

 

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @msuser48 ,

 

 

The filtering results of one slicer can affect the results of another slicer, but not just change its "state".
However, try turning on the "show all" function of the slicer and create the following formula, which will hopefully meet your needs.

M_ =
VAR sel =
    SELECTEDVALUE ( slicer_[Y/N] )
VAR val =
    IF ( MAX ( result[State] ) IN { "Active", "Cancelled" }, 1, 0 )
RETURN
    IF ( sel = "Yes", val, 1 )

 

vhenrykmstf_0-1669970724424.png

vhenrykmstf_1-1669970735544.png

 

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


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

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @msuser48 ,

 

 

The filtering results of one slicer can affect the results of another slicer, but not just change its "state".
However, try turning on the "show all" function of the slicer and create the following formula, which will hopefully meet your needs.

M_ =
VAR sel =
    SELECTEDVALUE ( slicer_[Y/N] )
VAR val =
    IF ( MAX ( result[State] ) IN { "Active", "Cancelled" }, 1, 0 )
RETURN
    IF ( sel = "Yes", val, 1 )

 

vhenrykmstf_0-1669970724424.png

vhenrykmstf_1-1669970735544.png

 

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


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

amitchandak
Super User
Super User

@msuser48 , it can control the values but can not tick, as far as I know



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors