Excel workbook links?

MeaclH

Board Regular
Joined
Apr 2, 2014
Messages
118
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Howdy all,

Not sure if anyone has much experience with the below.

I have a file that is entirely full of workbook links to a source file. Both files are housed on a business Sharepoint. Managers access and amend the source file using Excel (desktop), and other users will generally access the mirrored file through Excel for Web. The problem we are finding is that when the source file is updated, the changes are not immediately reflected on the linked file, viewed in Excel for Web.

I have tested the following.

Both workbooks opened in Excel (desktop) - changes updated immediately.

Source workbook opened in Excel (desktop)/linked workbook (opened in browser - changes are only updated when original workbook is closed or saved. AutoSave function does not trigger change.

Is there a way so that the users viewing in the browser can see changes updated immediately, and not rely on another user closing the sourceworkbook or manually saving when they make changes?
Perhaps there could be a VBA code that saves intermittently?


Cheers,

H
 
Hi Meaclh,

I'm not sure about it but I would try to put this in all sheets that matters:

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    ThisWorkbook.RefreshAll
End Sub

Every time a cell is changed, the workbook will refresh the connexions.

Bests regards,

Vincent
 
Upvote 0
Hi Meaclh,

I'm not sure about it but I would try to put this in all sheets that matters:

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    ThisWorkbook.RefreshAll
End Sub

Every time a cell is changed, the workbook will refresh the connexions.

Bests regards,

Vincent
Thanks Vincent. Just to confirm, this should go in the source workbook?
Cheers,
Hayden
 
Upvote 0
Thanks Vincent. Just to confirm, this should go in the source workbook?
Cheers,
Hayden
Hi MeaclH,

Yes I would put it in every sheets off the source file to push the uptdate every time there is a change in any cell of those sheets.

Bests regards,

Vincent
 
Upvote 0

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