Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Filter context in bi-directional model

Hi,

I'm facing a problem on filter context in bi-directional model. I need a bi-direction relationship because i need a count in dimension can work in other dims.

For example, from AdvantureWorkDW, i load FactInternetSales, DimDate, DimCustomer.  And create relationship between Fact & DimCustomer as bi-direction, single direction between fact & DimDate.

 

Then, i create a meausre CustomerCount:=

DISTINCTCOUNT(DimCustomer[CustomerKey]). it's working as expected when I pull CalendarYear & CustomerCount into a table, it shows different no of customer per year.
 
Now, i would like to calculate below, 
Total Customer by Geo = CALCULATE(DISTINCTCOUNT(DimCustomer[CustomerKey]), ALLEXCEPT(DimCustomer, DimCustomer[GeographyKey])), this measure needs to ignore filter context from other dim/fact so that it's real Total. Unfortunately, it's not working as expected when drag 
GeographyKey into pivot. 
 
So i tried below to overwrite filter context, but it will give grand total and ignore GeographyKey filter.
Total Customer by Geo 2 = CALCULATE(DISTINCTCOUNT(DimCustomer[CustomerKey]), ALLEXCEPT(DimCustomer, DimCustomer[GeographyKey]), ALL(FactInternetSales))
 
Any advise?
Thanks, Di
1 ACCEPTED SOLUTION
LivioLanzo
Solution Sage
Solution Sage

Hi @Anonymous

 

I would discourage the use of bi-directional relationships:

https://www.sqlbi.com/articles/bidirectional-relationships-and-ambiguity-in-dax/

 

You can use cross filter to simulate the biredictional filter temporarily

https://www.wiseowl.co.uk/blog/s2597/cross_filter.htm

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

View solution in original post

2 REPLIES 2
LivioLanzo
Solution Sage
Solution Sage

Hi @Anonymous

 

I would discourage the use of bi-directional relationships:

https://www.sqlbi.com/articles/bidirectional-relationships-and-ambiguity-in-dax/

 

You can use cross filter to simulate the biredictional filter temporarily

https://www.wiseowl.co.uk/blog/s2597/cross_filter.htm

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

Anonymous
Not applicable

Awsome, thank you very much for such prompt response. 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.