Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I currently have a table where a cell (Title) can contain multiple Brand values, so I made for each Brand a check to see if it is contained in that Title - visible under the BrandNames table, if yes then it will return the name of the brand.
Then I used the Distinct function in the BrandNameList table to get all unique brand names.
Now I want to have this slicer (which is the values from the BrandNameList) to filter the BrandNames table.
The Relationship works for 1 column in the BrandNames table as it is active, in this case "AUDI", but it does not work for the other brands since their relationship is inactive.
How can I have the slicer filter all the values based on what brands are found in the title using the USERELATIONSHIP() DAX function or a complete other way?
(The main issue is that 1 cell can contain multiple brands)
I have looked up how to do this but found nothing, please help!
Solved! Go to Solution.
Hi @Anonymous ,
If you want to add the measure into filter, you may try this code to create a measure. I suggest you to change all relationships between two tables to inactive.
BrandSlicer =
VAR _tab =
VALUES ( BrandNameList[BrandNames] )
RETURN
IF (
MAX ( BrandNames[AUDI] )
IN _tab
|| MAX ( BrandNames[VW] )
IN _tab
|| MAX ( BrandNames[SBA] )
IN _tab
|| MAX ( BrandNames[CUPRA] )
IN _tab
|| MAX ( BrandNames[SKODA] ) IN _tab,
1,
0
)
Then add this measure into the visual level filter in your visual and set it to show items when value =1.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Do not join or make all inactive
measure =
Var _tab = values(Slicer[Brand])
return
calculate(Sum(Table[Value]), filter(Table, Table[Brand 1] in Tab && Table1[Brand 2] in _tab))
Add more, use OR (||) if needed
Currently my DAX looks like this:
But I am unsure what to put as the Table after SUM(
because if I use it the way I wrote and put the measure as a filter on a visual it does not work.
(I have also removed all the relationships prior to doing this)
Hi @Anonymous ,
If you want to add the measure into filter, you may try this code to create a measure. I suggest you to change all relationships between two tables to inactive.
BrandSlicer =
VAR _tab =
VALUES ( BrandNameList[BrandNames] )
RETURN
IF (
MAX ( BrandNames[AUDI] )
IN _tab
|| MAX ( BrandNames[VW] )
IN _tab
|| MAX ( BrandNames[SBA] )
IN _tab
|| MAX ( BrandNames[CUPRA] )
IN _tab
|| MAX ( BrandNames[SKODA] ) IN _tab,
1,
0
)
Then add this measure into the visual level filter in your visual and set it to show items when value =1.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 12 | |
| 9 | |
| 5 | |
| 5 |