Forum Discussion
How Convert this Sql to Dax
- 6 years ago
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
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