Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I have a column of task leads. It may include single person (Jason) or several people (Jason, May) . How do i set the slicer so that if user wanna search all the tasks from Jason, they don't need to check all the selections including Jason. Just search Jason and all the tasks Jason leads will come up?
Thanks for all the suggestions!
Solved! Go to Solution.
Hi @liyuanzhe222 ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _select=SELECTEDVALUE('Slicer_Table'[Group])
return
IF(
CONTAINSSTRING(
MAX('Table'[Task]) ,_select)=TRUE(),1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @liyuanzhe222 ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _select=SELECTEDVALUE('Slicer_Table'[Group])
return
IF(
CONTAINSSTRING(
MAX('Table'[Task]) ,_select)=TRUE(),1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 38 | |
| 36 | |
| 29 | |
| 28 |
| User | Count |
|---|---|
| 127 | |
| 88 | |
| 78 | |
| 66 | |
| 65 |