Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have a group of data in a table "ItemGroups" with the following format:
I want to use a slicer to select a single item. Currently, this returns all the groups in which that item number is a part of. What I am looking for is the table visualization to return all item numbers that share the group. In the example below, I want the table visualization to return all item numbers that contain group B (this will include the selection in the slicer), group H, group N, etc.
Can this be done as a visual filter using a measure?
Solved! Go to Solution.
HI @Anonymous,
For original slicer, it is impossible to achieve your requirement.
You need to create new table as source of slicer and coding measure to filter records.
Steps:
1. Create table with 'item number' and 'groups' from original table as select table.(these tables not have relationship)
Selector =
SELECTCOLUMNS ( Table, "Item Number", [Item Number], "Groups", [Groups] )
2. Use Item Number(from selector table) as source column of slicer.
3. Write measure to get selected group list and check original table row content to return tag.
Tag =
VAR selectList =
CALCULATETABLE ( VALUE ( Selector[Groups] ), ALLSELECTED ( Selector ) )
RETURN
IF ( SELECTEDVALUE ( Table[Groups] ) IN selectList, "Y", "N" )
4. Drag above measure to visual level filter with advanced filter mode to filter records who not equal to "Y" tag.
Regards,
Xiaoxin Sheng
HI @Anonymous,
For original slicer, it is impossible to achieve your requirement.
You need to create new table as source of slicer and coding measure to filter records.
Steps:
1. Create table with 'item number' and 'groups' from original table as select table.(these tables not have relationship)
Selector =
SELECTCOLUMNS ( Table, "Item Number", [Item Number], "Groups", [Groups] )
2. Use Item Number(from selector table) as source column of slicer.
3. Write measure to get selected group list and check original table row content to return tag.
Tag =
VAR selectList =
CALCULATETABLE ( VALUE ( Selector[Groups] ), ALLSELECTED ( Selector ) )
RETURN
IF ( SELECTEDVALUE ( Table[Groups] ) IN selectList, "Y", "N" )
4. Drag above measure to visual level filter with advanced filter mode to filter records who not equal to "Y" tag.
Regards,
Xiaoxin Sheng
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 23 | |
| 14 |
| User | Count |
|---|---|
| 46 | |
| 33 | |
| 20 | |
| 18 | |
| 16 |