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
Hello Guys,
I may need some help on Slicers in Power BI Desktop.
I want to Filter a table by year (2020, 2021 and so on). But some of the rows are assigned to multiple years, e.g. '2020; 2021' is the entry of at least one row. This yields to three possible options in the Slicer: '2020', '2021' and '2020; 2021'.
The latter one looks pretty awkward and I want to get rid of this option, i.e. I would like the option '2020; 2021' to be contained in both filter options '2020' and '2021'.
Some ideas how to fix this?
Greetings
Solved! Go to Solution.
It sounds like you want to split the column in Power Query (using ; as the separator).
If you choose 'Rows' from the Advanced Section, it'll do what you want.
Let me know how you get on.
Hi, @Anonymous
Try follow steps:
1.create a calculated table :
Slicer Table = DISTINCT('Table'[Year])
2.create a new measure
visualfilter =
VAR s_year =
SELECTEDVALUE ( 'Slicer Table'[Year] )
VAR t_year =
SELECTEDVALUE ( 'Table'[Year] )
RETURN
IF ( CONTAINSSTRING ( t_year, s_year ), 1, 0 )
3.apply this measure to visual filter pane
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It sounds like you want to split the column in Power Query (using ; as the separator).
If you choose 'Rows' from the Advanced Section, it'll do what you want.
Let me know how you get on.
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 |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 48 | |
| 42 |