cross excel problems - any known resolutions?

dannyok90

Board Regular
Joined
Aug 30, 2016
Messages
115
Hi All,


I'm having some problems with a spreadsheet I have created at work.


I've created the spreadsheet in Excel 2007 and tested the spreadsheet on my computer to
ensure it works right. its got links to other spreadsheets on the network.


When I send out an email for people to go into it on their own computer, mainly the guys that have a later version of excel/windows
the links drop out and it comes up with a browser window asking them to locate the spreadsheet.

Everybody has access to he linked file but they don't necessarily know where it is so its a little frustrating.


The spreadsheet uses vba to update the links using update link sources but obviously its not remembering the location.
I've tried putting the file path in the .update link command but it just crashes.


Like i mentioned, if I open the workbook it works fine, and it does for most others but some have issues.

any ideas or resolutions?


Thanks A lot!

Dan


Code:
Private Sub Workbook_Open()
ActiveSheet.Unprotect Password:="rse1"
ActiveWorkbook.UpdateLink Name:=ActiveWorkbook.LinkSources
ActiveSheet.Protect Password:="rse1"
Application.ExecuteExcel4Macro "show.toolbar(""Ribbon"",False)"
ActiveWindow.DisplayWorkbookTabs = False
MsgBox "HOW TO USE:" & vbNewLine & "Cells to be filled in using concise wording in capital letters." & vbNewLine & "" & vbNewLine & "Progress to Plan & Resource -  Contract dates to be taken from Insight." & vbNewLine & "" & vbNewLine & "Deliverables - Only show outstanding." & vbNewLine & "" & vbNewLine & "Once you have completed the  PSR, Click 'Submit'"
Sheets("PSR Template").Calculate
End Sub
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Could it be that they've got the Network locations mapped to a different drive?

So if you're linking to G:\Book1? then someone else might not have the mapped the drive as G and instead F and so they need F:\Book1?

You might want to look at using the Network drive name instead if so? (Normally starts with \\)
 
Upvote 0

Forum statistics

Threads
1,215,237
Messages
6,123,811
Members
449,127
Latest member
Cyko

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