Forum Discussion

Emmy66's avatar
Emmy66
Helper V
3 years ago

NOT EXISTS SQL To DAX

Hi, I have this SQL query which I want to convert to dax as per below. The aim to get data in flowAction where there are no matching records in CaseMassage.

select *
from flowAction f
WHERE NOT EXITS (
Select Null
from CaseMessage l
where l.flowActionID = f.id)

Any help on this will be appreciated. Thanks in advance.

1 Reply