Forum Discussion

Kristofferaabo's avatar
8 years ago
Solved

lookup between tables

Hi! I have a table which is linked to two tables thorugh the same relationship: "Project number"   I now want to make a column which returns 'Yes' if the given project number is in either of the l...
  • Zubair_Muhammad's avatar
    8 years ago

    HI Kristofferaabo

     

    Try this COlumn

     

    Column =
    IF (
        OR (
            CALCULATE ( COUNTROWS ( LinkedTable1 ) ) > 0,
            CALCULATE ( COUNTROWS ( LinkedTable2 ) ) > 0
        ),
        "Yes"
    )