File Already Open...

Shedbandit

New Member
Joined
Jul 3, 2004
Messages
6
Im currently developing a system at work that has users writing to an excel file on a shared drive. Users fill in a VB form that submits the values into a seperate excel workbook. This works fine up until 2 people decide to click submit at the same time, at which point it does one of 3 things, either only writes the first one, only wites the second one....or renames the destination file with a tempory name with now extention, and writes nothing.

What im wondering is what would be the best way of ensuring both data sets write... maybe have an error catch if the files open that it writes to a temp file instead, maybe csv, then adds the values after a count of some sort? Any ideas?
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Then all you need to do is this:
On Error Resume Next
'The code that writes to the workbook here.
If Err.Number <> 0 then
Err.Clear
'Do whatever you want to do if the write fails.
End if
On Error Goto 0
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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