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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
shanemc1
Frequent Visitor

Convert SQL to Dax (Count Distinct using Join)

I have the following table structure in my database.

 

Enquiry Table which stores enquiries

EnquiryVenue Table which stores venues that are attached to an enquiry

Venue Table which stores venue table

VenuePremium table which stores venues that are on our premium system.

 

I want to count the number of Enquiries that have a venue attached to it that is in the premium table.

 

The following sql captures this data 

select count(distinct fkEnquiries)
from enquiries_venues ev
inner join VenuePremium vp
on ev.fkVenue = vp.VenuePremiumId

 In Power BI I am doing the following:

CALCULATE(DISTINCTCOUNT('Enquiries_Venues'[fkEnquiries]),SUMMARIZE('VenuePremium', VenuePremium[VenueId]) )

This is giving me a much larger count than expected ?

 

Any suggestions on how this should work?

 

Thanks in advance

1 ACCEPTED SOLUTION

HI @Anonymous ,

 

Yes it seems to be running a left join because when I do a left join in SQL I am presented with the same number.

 

I have tried using a NaturalInnerJoin and it worked perfect thanks for your help.

 

Shane

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @shanemc1,

 

I think LEFT JOIN is taking place when you are using SUMMARIZE function in dax.

Can you re-run that SQL query with left join and see the count?

I think you can modify your dax query to use NATURALINNERJOIN(enquiries_venues,VenuePremium

 

Thanks,
Amit

HI @Anonymous ,

 

Yes it seems to be running a left join because when I do a left join in SQL I am presented with the same number.

 

I have tried using a NaturalInnerJoin and it worked perfect thanks for your help.

 

Shane

Stachu
Community Champion
Community Champion

There is an active direct join between these tables, correct?

try this code:

CALCULATE(DISTINCTCOUNT('Enquiries_Venues'[fkEnquiries]),  VenuePremium[VenueId]) <> BLANK())


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Hi @Stachu ,

 

I tried this and it just returned true. The  tables are not directly related in power bi but the venue id in both do correspond to each other 

Stachu
Community Champion
Community Champion

ah, if the tables were not joined then my code will not work for sure


@Anonymous has provided you with working solution, so that's the most important 🙂

 

here is a good more in depth aritcle on using joins in DAX and the implications
https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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