How can I add a "Linked" database name to my report?

T

Tommy

In my Master database, I have several tables linked to another database. I
want to run a report in the Master database that includes the name of the
database the Master database is linked to. Can this be done?
 
D

Duane Hookom

You can try set a text box control source to:
=Mid([Currentdb].[tabledefs]("A Linked Table Name").[Connect],11)
 
Top