Forum Discussion

JulietZhu's avatar
JulietZhu
Helper IV
7 years ago

DAX help from table join

Need translate those sql into DAX.  SELECT COUNT(DISTINCT b.billId) AS BilledCount   FROM Bill b WITH (NOLOCK) LEFT JOIN dbo.Transactions t       ON (b.Billid = t.billid) WHERE t. TransactionTyp...