Forum Discussion
Anonymous
3 years agoNot applicable
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) T...
- 3 years ago
Anonymous , you need a new table
New table = except(all(TableA[Item]), distinct(TableB[Item]) )
other wise you need a common table to plot a measure
countrows(except(all(TableA[Item]), distinct(TableB[Item]) ) )
- 3 years ago
Anonymous
*Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
Mahesh0016
Super User
3 years agoAnonymous
*Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!