UserForm interacting with the Excel sheet saved on a local server

D

Dan Tabla

We are 5 people willing to working simultaneous (if possible) on a Excel
sheet saved on a local server. I need to type new informations in the
worksheet and sometimes to call a UserForm that will compile it and save back
the results.

I have basic knowledge with VBA, definetly not enough.
I would appreciate all the suggestions.

Thanks a lot and compile succesfully!
 
J

joel

Sharing workbooks is not recommended because excel is not reall
designed for sharing and conflicts can occur.


The prefered method is to store the data in an Access database. Yo
can create work excel workbook to be used as a front end to the databas
by quering the database from an excel workbook. You cn create userform
in the excel workbook where you can put changes to the database.

To store data into the database you can use connect to the database an
use the ADO method to write new data. All your macros can be in th
excel workbook. the storage need to be in an Access database to mak
sure you don't loose data when two people are accessing the storage fil
at the same time. Using excel you could loose data
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top