Forum Discussion

kap84's avatar
kap84
New Member
3 years ago
Solved

Get value from another table if result from first is empty

Hi   I need to get a name from another table if it's empty on first table, I've tried following as a calculated column but it gives empty result.    FirstName = IF(ISBLANK ( 'Table_A'[FirstName...
  • vicky_'s avatar
    3 years ago

    I think with fields of type text, you might need to use IF('Table_A'[FirstName_TableA] = "", ...) as the condition instead.