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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
msit19
Frequent Visitor

How Convert this Sql to Dax

welcome
Can you help me to convert this instruction to Dax

 

select count(distinct(CustomerCode)) from Tab1
where Fld1=@Var1 and CustomerCode not in(select distinct(CUSTOMER_NO) from Tab2 where Fld1=@Var1)

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@msit19 , Try like

meausre =
calculate(distinctcount(Tab1[CustomerCode]) , filter(Tab1, not( CustomerCode in values(Tab2[CUSTOMER_NO]))))

 

meausre =
calculate(distinctcount(Tab1[CustomerCode]) , filter(Tab1, not( CustomerCode in allselected(Tab2[CUSTOMER_NO]))))

 

Assuming Fld1 from both tables is joined to common dimension and that dimension is used as a slicer to filer values

 

Another option in place of in is treatas

https://docs.microsoft.com/en-us/dax/treatas-function

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@msit19 , Try like

meausre =
calculate(distinctcount(Tab1[CustomerCode]) , filter(Tab1, not( CustomerCode in values(Tab2[CUSTOMER_NO]))))

 

meausre =
calculate(distinctcount(Tab1[CustomerCode]) , filter(Tab1, not( CustomerCode in allselected(Tab2[CUSTOMER_NO]))))

 

Assuming Fld1 from both tables is joined to common dimension and that dimension is used as a slicer to filer values

 

Another option in place of in is treatas

https://docs.microsoft.com/en-us/dax/treatas-function

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

thanks for your reply I don’t want to add a condition to the second table  How ?


select count(distinct(CustomerCode)) from Tab1 where Fld1=@Var1 and CustomerCode not in(select distinct(CUSTOMER_NO) from Tab2 where Fld1=2000)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.