Forum Discussion
kap84
3 years agoNew Member
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...
- 3 years ago
I think with fields of type text, you might need to use IF('Table_A'[FirstName_TableA] = "", ...) as the condition instead.
kap84
3 years agoNew Member
This one did it. Excellent 🙂 Thank you.