Forum Discussion
Filter slicer based on other slicer selection
- 5 years ago
Hi VipinReddy
You can make the following adjustments on parry2k's measure,
Project Selected = IF ( SELECTEDVALUE ( 'Table'[Project Status] ) = "Completed", 1,0 )then put the measure into the visual level filter,
result
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
In the measure you have provided there is no reference to the project status as complete. My requirement is when user selects project status as completed only then he gets to filter using Month and year. I the user selects staus as all or any other than completed then the month and year slicer should be blank.
Hi VipinReddy
You can make the following adjustments on parry2k's measure,
Project Selected = IF ( SELECTEDVALUE ( 'Table'[Project Status] ) = "Completed", 1,0 )
then put the measure into the visual level filter,
result
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
- Decal2 years ago
Helper I
I know this is sooo close to solving what I need, but I can't figure out how to apply. How would you use this if your dropdown had 3 options? In my case it's "full time", "part time", "per diem". If "per diem" is not selected I want to drive a 1 so that I can use that for the visual filter.
- idkwhatimdoing1 year ago
Advocate I
Employee Type Selected = SWITCH ( SELECTEDVALUE ( 'Table'[Employee Type] ), "full time", 0, "part time",0,1 )