Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello all,
I have a Slicer based on a column in the "Product Table" (red one) , i want to use this slicer to filter another column in the "SenarioFields Table" (green one), As you can see in the data model , i have an intermediate table between them, with BOTH direction filter , and for the cardinality , it is based on the business rule..
The problem : The Product_Name in Product Table CAN NOT filter a column in SenarioFields Table :
as you can see below, i should get 34 % instead of 100 % :
It is difficult to assist you without further info on the following:
My best guess is that there are relationships from other tables impacting your results. This is a shot in the dark given minimal available info, but you can try wrapping your measure in a CALCULATE that removes any filters from Scenario other than Products:
Calc Products Filter Only =
CALCULATE(
<Measure>,
REMOVEFILTERS( Scenario ),
CALCULATETABLE( Products, REMOVEFILTERS( Scenario ) )
)
Also, you may want to confirm if your relationships and measure are working as intended without interaction from the rest of your model. You can check by copying your pbix and then removing all other tables besides Products, Scenario, and Scenariofields. I'll note that if it's just those three tables with relationships as you've shown, then the filter from Products should propogate as it looks like you expect: Products --> Scenario --> Scenariofields. If this isn't working then you most likely have a mistake in your measure or perhaps set relationship between wrong columns in the table.
User | Count |
---|---|
84 | |
80 | |
70 | |
47 | |
43 |
User | Count |
---|---|
108 | |
54 | |
50 | |
40 | |
40 |