Forum Discussion
mterry
8 years agoHelper V
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 ...
Ashish_Mathur
8 years agoSuper User
Hi,
Try this
=IF(ISBLANK(RELATED(Table1[Location])),BLANK(),RELATED(Table1[Location]))
Hope this helps.
mterry
8 years agoHelper V
Thank you both for the help, it worked