External Data Network Path Keeps Changing

David20

Board Regular
Joined
May 7, 2009
Messages
57
I have a workbook, stored as Read-Only on a network, that has external data links (for vlookup functions) to files on the same network but different folders.

My problem is that the network path in the formulas seem to randomly change. I started with a full path, \\server\folder\folder\file. Occasionally the path will change to match my mapped drive, Z:\folder\file, but the data links usually still work.

Today it change to C:\folder\file, which is, of course, completely wrong and the data links won't work at all.

It's a large file with 100+ links. When this happens it costs me a lot of time to fix. Anybody out there know how I can prevent this? I'm using 2007, as are the other people in the office who use the workbook.

Thanks.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
idunnonutink, but UDFs might work.
Rich (BB code):
Public Function EastDivision3rdQtrSalesPath () As String
OnError Goto Oops
EastDivision3rdQtrSalesPath = "'\\server\EastDivision\3rd Qtr\Sales'"
Exit Function
Oops:
EastDivision3rdQtrSalesPath = "error"
End Function

of course that means you get to rewrite all 100 formulas one more time
Rich (BB code):
=If(EastDivision3rdQtrSalesPath="error","",VlookUp((EastDivision3rdQtrSalesPath+totals) etc)
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,777
Members
449,049
Latest member
greyangel23

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