Forum Discussion
toovishant
Helper II
2 years agoCompare two text string same field between two different tables to identify Match/No Match
Hi Team, I am trying to compare the Room Name between two tables to Match/No Match. I am using below logic to comapre Room Name field between Table 1 and Table 2 The below query dosen't seems to p...
- 2 years ago
For your eference.
toovishant
Helper II
2 years agomickey64
Super User
2 years agoStep 0: I use these data below.
Table 1
Table 2
Step 1: I add a relationship.
Step 2: I make a measure.
Validate = IF(MAX('Table 1'[Column4]) = MAX('Table 2'[Column4]),"Match","No Match")
Step 3: I make a matrix and a table.
Matrix
Table
- toovishant2 years ago
Helper II
Sorry, In this sample file column 3 has limited data, it cannot be a unique coumn, because each site may have same room will have same room code accross the floor. So to get a unique column need to add these three Column (1+2+3) (Site+Floor Code+Room Code)
- mickey642 years ago
Super User
For your reference.
I add a "Key_Column" to the each table and change a relationship.
- toovishant2 years ago
Helper II
when I use larger set of data, this query is not working.