Find path from linked xls book

mrowe

Board Regular
Joined
Feb 17, 2002
Messages
232
Hi,

Is there anyway to find the path of a linked spreadsheet to my access database.

The linked table name was changed and I can't remember what the real data source name is.

Thanks in advance
Matt
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Hi Matt,

Please open your database which you have linked table and goto VBA (Alt+F11). Goto Immediate (Debug) window (Ctrl + G) then copy and paste the following command line for the main source file name (Excel file path in this case)

print currentdb.TableDefs("tablename").Properties("Connect")

"tablename" is the current table name in Tables view.

to get the sheet or range name :

print currentdb.TableDefs("tablename").Properties("SourceTableName")

I hope it helps.
Suat
 
Upvote 0
couldn't you just go to tools -> Database Utilities -> Linked Table Manager?
 
Upvote 0

Forum statistics

Threads
1,221,827
Messages
6,162,200
Members
451,753
Latest member
freddocp

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top