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

Join 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.

Reply
feralvarez994
Helper II
Helper II

Help with model

Hi everyone! I have an issue i think with the model, but for sure you gonna know better than me

 

The thing is, i want to create a visualization (horizontal bar chart) with the number of bookings (_Contar autos) by seller (column VE_APELLIDO from VENDE table)), i get the number of bookings with this DAX:

 

_Contar autos = VAR autoosCALCULATE ( COUNT ( AUTOS[AT_COAUTO] ) )
RETURN IF ( ISBLANK ( autoos ), 0, autoos )
 feralvarez994_0-1650558273747.png feralvarez994_1-1650558379154.png

 

 

I have a table in the same dashboard that has the detail with many columns from Autos table and the Seller (VE_APELLIDO), but when i try to make an horizontal bar chart, this happens

 

feralvarez994_2-1650558498641.png

Can someone help me? I think its a model thing, thank you all!

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @feralvarez994 

try to CROSSFILTER the relationship between AUTOS table and the BUCFIN table to "BOTH"

_Contar autos = VAR autoosCALCULATE ( COUNT ( AUTOS[AT_COAUTO] ), CROSSFILTER ( AUTOS[AT_COAUTO], BUCFIN[BUC_COAUTO], BOTH ))
RETURN IF ( ISBLANK ( autoos ), 0, autoos )

 

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @feralvarez994 

try to CROSSFILTER the relationship between AUTOS table and the BUCFIN table to "BOTH"

_Contar autos = VAR autoosCALCULATE ( COUNT ( AUTOS[AT_COAUTO] ), CROSSFILTER ( AUTOS[AT_COAUTO], BUCFIN[BUC_COAUTO], BOTH ))
RETURN IF ( ISBLANK ( autoos ), 0, autoos )

 

thanks bro, you are amazing!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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