Forum Discussion

luizpansarini's avatar
luizpansarini
Regular Visitor
9 years ago
Solved

Check if columns Exists in other Table

Hi everyone!   I need to create a measure that checks how columns (Process and Problem) of my table1 exist in table 2. If it does, return the field's Deployment date in new column, it is not, retur...
  • v-chuncz-msft's avatar
    9 years ago

    luizpansarini,

     

    Better to add a calculated column instead.

    Deployment Date =
    LOOKUPVALUE (
        Table2[Deployment Date],
        Table2[Category], Table1[Category],
        Table2[Product], Table1[Product],
        Table2[Process], Table1[Process],
        Table2[Problem], Table1[Problem]
    )