Forum Discussion

sokatenaj's avatar
sokatenaj
Advocate II
9 years ago
Solved

Creating Relationships & Matching - Need some help

Hi Folks,   I have two tables. One table is all applicants and one table is filled/hires. I want to create a relationship between the two tables by the "Candidate Name" field, but unfortunately sin...
  • v-ljerr-msft's avatar
    v-ljerr-msft
    9 years ago

    Hi sokatenaj,

    Additionally on my applicant table I have a field I that says "current status name" with a field that says "Linked". I want to say, if 'Applicant'[Name] that have a status of  'Applicant'[Current status name]="Linked" and that Applicant Name matches the name in 'Filled'[Name] then write MATCH, otherwise "Not Matched". 

    If I understand you correctly, you should be able to use the formula below to create a new calculate column in this scenario. :smileyhappy:

    Column =
    IF (
        Applicant[Current Status Name] = "Linked"
            && CONTAINS (
                Filled,
                Filled[Candidate Identifier], Applicant[Candidate Identifier]
            ),
        "Match",
        "Not Matched"
    )
    

     

    Regards