excel spreadsheets with links to other spreadsheets

holdend

New Member
Joined
Dec 5, 2005
Messages
29
Hi guys

Im using excel 97 at work. I have built a spreadsheet that has links to other spreadsheets.

Is there any way i can refresh the link every so often, without having to close and reopen my sheet. Automatically would be even better !
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
You will need to know the path and file name.. Best bet is to use the record macro and go thru the links menu to update the files while recording then just make the macro from that.

Here is a sample of what you should see

Code:
Sub Updatelinks()
ActiveWorkbook.UpdateLink Name:= _
        "File Path\excelfile..xls", _ 'change to your file
        Type:=xlExcelLinks
End Sub
 
Upvote 0
The links menu is at the top of your excel under the Edit label. Just click edit and then links, this will show all things links within the workbook and the location of those links. There is also an option to open the source of the links as well. Hope that helps.
 
Upvote 0
I would guess that it should update all the links, or you can pick a link and then click update. How many links do you have in your current workbook?
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,573
Members
449,089
Latest member
Motoracer88

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