2-way workbook updating

Lade

New Member
Joined
Jun 7, 2023
Messages
13
Office Version
  1. 365
Platform
  1. Windows
Hello,

I've looked for a bit and haven't found anything that works for what I'm trying to do.
I have a worksheet in one workbook that one person enters information in, and I have another workbook that I want the first one to update to, and vise versa. The solution I thought would work for that would be a VBA Worksheet_Change, but so far that only works if both sheets are in the same workbook. But both sheets are in different workbooks on different computers on a network. Is it possible for the VBA to call out a certain workbook through a file path to update it?

Thanks
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
With both workbooks open, you can create a formula to get information the other workbook.

* This is not going to create new lines of data
* You won't be able to update a single table on both workbooks
* Only saved data can be viewed unless you have both open at the same time

VBA can update values from another workbook, but ONLY saved data. The user on the other end would have to save often. There are ways to share workbooks so you can see live changes. I personally don't like them.
 
Upvote 0
With both workbooks open, you can create a formula to get information the other workbook.

* This is not going to create new lines of data
* You won't be able to update a single table on both workbooks
* Only saved data can be viewed unless you have both open at the same time

VBA can update values from another workbook, but ONLY saved data. The user on the other end would have to save often. There are ways to share workbooks so you can see live changes. I personally don't like them.
What formula would you recommend? How would I call the file path?
 
Upvote 0
When you have both WBs open, just start a formula (even a simple formula that returns the value from a single cell). Press = and navigate to the other WB, choose a cell and press enter. When you save the WB, it remembers the path. It won't show the path when the other WB is open, it will show the path when the other WB is closed.
 
Upvote 0
Hello,
both sheets are in different workbooks on different computers on a network. Is it possible for the VBA to call out a certain workbook through a file path to update it?

In the early days of VBA one way we overcome data sharing between workbooks on corporate network was, when it was not possible to connect them to our corporate database, to create a common workbook (database) with single table placed on the server.

User Workbooks were coded to open the database (readonly) to populate their workbook with common data then closed.

any changes posted back to the database coding was created to resolve read/write conflicts (two people having database open at the same time to write data) Whilst approach won’t display real time updates & user(s) may need to refresh their data before posting changes, approach did resolve requirement to share common data between workbooks.

if later versions of excel 365 with co-authoring - Collaborate on Excel workbooks at the same time with co-authoring
do not meet your need, then perhaps this approach worth considering?



Dave
 
Upvote 0
When you have both WBs open, just start a formula (even a simple formula that returns the value from a single cell). Press = and navigate to the other WB, choose a cell and press enter. When you save the WB, it remembers the path. It won't show the path when the other WB is open, it will show the path when the other WB is closed.
Seems like the thing with linking the cells together is that it's only one way editing. Is there another way to do it? I was wanting to be able to edit both workbooks from either workbook. And that would also include inserting and deleting rows unfortunately.
 
Upvote 0
The need you're requiring would be a lot of VBA code. I have created two separate Excel Applications using a Read Only Form that any number of people can open, and an external workbook that saves all the data. The last one I have yet to finish has taken me over a month of coding so far.
 
Upvote 0

Forum statistics

Threads
1,215,137
Messages
6,123,252
Members
449,093
Latest member
Vincent Khandagale

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