Referencing Closed via open workbook external links - VBA

spydey

Active Member
Joined
Sep 19, 2017
Messages
314
Office Version
  1. 2013
Platform
  1. Windows
EDIT: Sorry, the title should have read:

"Referencing Closed Workbook via Open Workbook's external links - VBA"

---------------------------------

I have some code in WorkbookA where I ask for the location of WorkbookB (the data and location constantly change). Via a prompt I am able to select WorkbookB and store that location as a variable and change the LinkSources(xlExcelLink) in WorkbookA to the newly selected WorkbookB file location. This allows me to update different in-cell formulas I have in WorkkbookA that depend on the data in WorkbookB. Works great!

I need to ad some new code to perform some additional tasks.

My question is two-fold:

1.) Am I able to "refresh" or "update" a variable mid-stride so that I don't have to manually re-assign what it contains?

Example:
Code:
cLinks = ThisWorkbook.LinkSources(xlExcelLinks)
This gives me the current link (there is only one) found in WorkBookA.
After running some code (as mentioned above), the link has changed, however, if I look at the value of cLinks after selecting the new WorkbookB, it is still the old value; which makes sense because that value was stored. The 'ThisWorkbook.LinkSource(xlExcelLinks)' has changed though, but cLinks has not.

Can I simply update cLinks to refresh its value?

Perhaps something like:

Code:
cLinks.Update

or

Code:
cLinks.Refresh

This would force cLinks to go back to 'ThisWorkbook.LinkSources(xlExcelLinks)' and get the now newest value/location.

I guess I could simply write:

Code:
cLinks = ThisWorkbook.LinkSources(xlExcelLinks)

but I would prefer not to have to do it that way if possible. I am trying to do this as efficiently as possible ..... granted I bet all my other code is nowhere even near as efficient as it could probably be, but I am getting there, hehehehe. :LOL::LOL:



2.) On to the bigger question. Due to already having the WorkbookB location saved as a variable, could I use that variable (i.e. .'cLink') to reference different sheets/Ranges/Named Ranges in WorkbookB (without opening it) from within WorkbookA?

When I pull up cLink from cLinks in the Immediate window via this code:

Code:
For Each cLink In cLinks
Debug.Print cLink
Next


it gives me the actual file path and name.

e.g. cLink = C:\Location\Of\WorkbookB\WorkbookB.xlsx

Because WorkbookB is not open, we would typically need to refer to WorkbookB by it's full path/name (right?), so thus could I simply use the cLink variable to refer to the worksheets/ranges in WorkbookB because cLink contains WorkbookB's full path/name?

Such as:

Code:
For Each cLink in cLinks
Set rng = cLink.Worksheet("Testing").Range("Named Range")

Other code here

Next

Anything quirky I should know about?

Thanks as always!!

-Spydey

P.S. Sorry about the long write up ..... writing it up tends to help me see the steps needed, etc. There have been many a write up that I never posted because as I wrote it, I realized that I already had the answer ... but there have many more where I did and am grateful for your help and assistance in understanding all this. :pray::pray:
 
Last edited:

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
So I figured that for part 1, perhaps the best way to do it is to just re-state:

Code:
cLinks = ThisWorkbook.LinkSources(xlExcelLinks)

So that is what I am going to do.

But what about part 2? Anyone have any insight, thoughts, advise, etc?

Thanks!

-Spydey
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,718
Members
448,986
Latest member
andreguerra

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