Forum Discussion
Anonymous
8 years agoNot applicable
Catch-all when no reference
I have a data table that has various info on it, all linked to location codes. I have a separate reference table that links those location codes to the common names of the locations. Sometimes there ...
- 8 years ago
Anonymous
Hi, You can use a calculated column like this
Location = IF ( RELATED ( Table2[Location] ) = BLANK (); "Misc"; RELATED ( Table2[Location] ) )Regards
Victor
Lima - Peru
Ashish_Mathur
Super User
8 years agoHi,
Try this
=IF(ISBLANK(RELATED(Table1[Location])),BLANK(),RELATED(Table1[Location]))
Hope this helps.
Anonymous
8 years agoNot applicable
Thank you both for the help, it worked