Problems with Shared Workbooks

daveparrinbull

New Member
Joined
Apr 8, 2002
Messages
11
Hi All,

I've got 8 shared workbooks and about 18 staff who use them all, on each worksheet is a button which saves the workbook and the re-opens it (kinda like a refresh button), now i'm having people save the workbooks but the saves are not there when the workbook is re-opened? BUT there are temporary files appearing with their saved changed in the same directory as the workbooks?.

Basically how can I stop this from happeneing?
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
What code is in the button? If you change it so that all it does is Save, it should show the changes made, as long as the other people using it are saving inbetween changes. It does on our shared workbooks
 
Upvote 0
Hi AudioJoe,

The code for the update button is:

Application.DisplayAlerts = False 'Turn off before saving
ActiveWorkbook.SaveAs Filename:= _
"H:default Directoryplanner.xls", FileFormat:= _
xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False _
, CreateBackup:=False

Workbooks.Open Filename:="H:default Directoryplanner.xls"

Is all the code after the saveas filename command needed?

Regards

Dave PB
 
Upvote 0
--------------------------------------------------------------------------------
Hi AudioJoe,

Please ignore the previous typos & the message!

The code for the update button is:

Application.DisplayAlerts = False 'Turn off before saving
ActiveWorkbook.SaveAs Filename:= _
"H:default Directoryplanner.xls", FileFormat:= _
xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False _
, CreateBackup:=False

Workbooks.Open Filename:="H:default Directoryplanner.xls"

Is all the code after the saveas filename command needed?

Regards

Dave PB
 
Upvote 0
Dave,

We use a lot of shared workbooks here, and there are as many as up to 30 or 40 people using them at a time. All we do is have people click Save after every time they make a change. This updates the whole spreadsheet with all other changes saved since the last time the user clicked Save. Try it, you'll see all the most recent saved changes highlighted in different colours around the spreadsheet.

What you could do is tell them all to just click Save, or if they're used to the button thing now, change the code to:

ActiveWorkbook.Save

Audiojoe
I'm just a jealous guy
 
Upvote 0
King AudioJoe,

Sometimes we get a message letting us know we can only access a shared file as a read-only file? dont s'pose you know why?
 
Upvote 0

Forum statistics

Threads
1,214,376
Messages
6,119,174
Members
448,870
Latest member
max_pedreira

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