This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi every one ,
Im working on this same issue , Solved: Re: Single slicer for multiple values in row - Microsoft Fabric Community
but the solution with below DAX is not working , im stuck can anyone help me please!
_Filter =
IF (
CONTAINSSTRING (
MAX ( 'Beer Data'[Type] ),
SELECTEDVALUE ( 'Beer Data_duplicate'[Type] )
),
1,
0
)
Solved! Go to Solution.
Hi, @faheem_Latif_BI
Based on your description, I have created these sample data below:
First, we need to go inside PowerQuery and extract our type, removing the symbols:
Open the PowerQuery Advanced Editor and use the following M code:
SplitColumn = Table.ExpandListColumn(Table.TransformColumns(#"Changed Type", {{"Type", Splitter.SplitTextByDelimiter(";#", QuoteStyle.Csv), type text}}), "Type"),
#"Removed Duplicates" = Table.Distinct(SplitColumn)
Note that you changed #“Changed Type” to the name of the step you took in the previous step:
Get the table below:
Close and apply:
Use the following DAX expression to create a new measure in Power BI:
Filter =
VAR _table1 = SELECTCOLUMNS('Table','Table'[Type])
VAR _table2 = SELECTCOLUMNS('Table (2)','Table (2)'[Type])
VAR _table3 = FILTER(ADDCOLUMNS(CROSSJOIN(_table1,_table2),"contain?",IF(FIND('Table (2)'[Type],'Table'[Type],1
,0)<>0,1,0)),[contain?]=1)
VAR _current_row = SELECTEDVALUE('Table'[Type])
RETURN MAXX(FILTER(_table3,'Table'[Type]=_current_row),[contain?])
Create a new slicer using the type column of Table (2):
Use the table table to create a new visual object and in the filter panel, place the measure at the visual level:
The results are as follows:
I have provided the PBIX file used in this instance below.
Best Regards
Jianpeng Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @faheem_Latif_BI
Based on your description, I have created these sample data below:
First, we need to go inside PowerQuery and extract our type, removing the symbols:
Open the PowerQuery Advanced Editor and use the following M code:
SplitColumn = Table.ExpandListColumn(Table.TransformColumns(#"Changed Type", {{"Type", Splitter.SplitTextByDelimiter(";#", QuoteStyle.Csv), type text}}), "Type"),
#"Removed Duplicates" = Table.Distinct(SplitColumn)
Note that you changed #“Changed Type” to the name of the step you took in the previous step:
Get the table below:
Close and apply:
Use the following DAX expression to create a new measure in Power BI:
Filter =
VAR _table1 = SELECTCOLUMNS('Table','Table'[Type])
VAR _table2 = SELECTCOLUMNS('Table (2)','Table (2)'[Type])
VAR _table3 = FILTER(ADDCOLUMNS(CROSSJOIN(_table1,_table2),"contain?",IF(FIND('Table (2)'[Type],'Table'[Type],1
,0)<>0,1,0)),[contain?]=1)
VAR _current_row = SELECTEDVALUE('Table'[Type])
RETURN MAXX(FILTER(_table3,'Table'[Type]=_current_row),[contain?])
Create a new slicer using the type column of Table (2):
Use the table table to create a new visual object and in the filter panel, place the measure at the visual level:
The results are as follows:
I have provided the PBIX file used in this instance below.
Best Regards
Jianpeng Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 38 | |
| 29 | |
| 28 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 34 | |
| 32 | |
| 25 | |
| 23 |