Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Say I have the following data model:
The idea is to build three slicers at report level - Organization, Customer and Department.
When filtering data by Organization, the Customer and Department slicers should show the results regarding the Organization values that are selected on its slicer. That should then filter the fact tables results by intersecting the results of the Customer and Department values.
It seems that Power BI does not allow for the activation of the relationship between DIM_ORGANIZATION and DIM_DEPARTMENT because that would introduce ambiguity:
Is there any way to achieve what I need by redesigning my model? Or is the model valid and I should focus on reaching a solution based on DAX or report level functionalities?
Solved! Go to Solution.
@Anonymous , If you are looking to filter those in slicer. Create a measure in fact
countrows( Fact_sales) + countrows( Fact_order)
And use that in the visual level filter of these slicers and check for non-blank values
you can use that in other visuals too, as per need
refer
https://www.youtube.com/watch?v=cyOquvfhzNM
@amitchandak
When you write "join directly" do you mean something like this?
Having this design would not filter Customer and Department values when using the Organization slicer.
@Anonymous , If you are looking to filter those in slicer. Create a measure in fact
countrows( Fact_sales) + countrows( Fact_order)
And use that in the visual level filter of these slicers and check for non-blank values
you can use that in other visuals too, as per need
refer
@Anonymous , You are having two path to reach a Fact like sales from Organization. Power bi need only one path.
So either merge ognizations with both tables. Or, if there is a column in fact where it join directly then do not join with dimension. Join with fact
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.