Forum Discussion
Anonymous
6 years agoNot applicable
Compare value in two tables
Hello, I am trying to compare a single value in two table columns ie. "Table A[values] to Table B[values]" and if they match place a "Yes" in new column or "No" if no match. My DAX code listed i...
- 6 years ago
Hi,
Just in case you want to solve this without creating a relationship between the 2 Tables, write this calculated column in Table2
Column = if(ISBLANK(LOOKUPVALUE(Table1[Records],Table1[Records],Table2[Received])),"No","Yes")Hope this helps.
RanjeetK
Helper I
3 years agocan we create measure wich gives us count of matching pairs not a calculated column or calculated table,
if possiable please please let me know