Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
54 | |
38 | |
31 |
User | Count |
---|---|
71 | |
64 | |
62 | |
50 | |
46 |