Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

DAX - EXCEPT

Hi, I would like to get the Distinct value from 2 tables ( After tableA EXCEPT tableB) --> the result should be "A"

However I would like to set a expression for TableA as 

 

All(TableA)

 

TableA
Item
A
A
B
C
C
D

 

TableB
ItemDate
B1/1/2023
C1/1/2023
C1/1/2023
C1/1/2023
D1/1/2023

 

Here is how I try but not working

 

EXCEPT(
CACULATE(VALUES(TableA[Item]), ALL(TableA),
VALUES(TableB[Item]))

 

 

May I seek some advise?

Thanks so much 

2 Replies