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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
You can try set a text box control source to:
=Mid([Currentdb].[tabledefs]("A Linked Table Name").[Connect],11)
 
Back
Top