Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

DAX Contains with filter condition

Hi, I have 2 tables (TableA and TableB) both have Name fields and TableB has a field called Status. Now, I want to compare both the tables on the Name field. Condition 1: Compare only the Names tha...
  • amitchandak's avatar
    6 years ago

    Anonymous , Try a new column in Table B

    new column = if(isblank(countx(filter(TableA, TableA[NAme] =TableB[Name]),TableA[Name])),"False","True")