Export from and Import to Access

S

srichards

We are creating an issues tracking database using Access 2003 and would like
to export information to management, obtain their feedback and update the
database on a periodic basis. What is the best process for doing this?
Would Access 2007 make this process easier somehow?
 
P

(PeteCresswell)

Per srichards:
We are creating an issues tracking database using Access 2003 and would like
to export information to management, obtain their feedback and update the
database on a periodic basis. What is the best process for doing this?
Would Access 2007 make this process easier somehow?

Dunno from "best", but the first thing I'd look into is MS Excel.

In my environment, at least, just about everybody is comfortable
with working with Excel spreadsheets.

You could write code in the MS Access app to create spreadsheets
with everything protected except the cells that the managers are
allowed to update and with PKs, row counts, and column counts in
hidden columns.

The managers would over type data as needed and then flip the
sheet back to you.

You'd have VBA code to check the integrity of the sheet (make
sure nobody shifted columns around, deleted rows, and so-forth)
then pull it into a work table where you could do some basic
validity checking on the data before importing same into the
app's back end.

Depending on how simple/straightforward you were able to make the
sheets, you might even get away with just ODBC linking to them
and treating them as tables - bypassing the import into a work
table.
 
S

srichards

Thanks. Will give it a try.
--
gsr


(PeteCresswell) said:
Per srichards:

Dunno from "best", but the first thing I'd look into is MS Excel.

In my environment, at least, just about everybody is comfortable
with working with Excel spreadsheets.

You could write code in the MS Access app to create spreadsheets
with everything protected except the cells that the managers are
allowed to update and with PKs, row counts, and column counts in
hidden columns.

The managers would over type data as needed and then flip the
sheet back to you.

You'd have VBA code to check the integrity of the sheet (make
sure nobody shifted columns around, deleted rows, and so-forth)
then pull it into a work table where you could do some basic
validity checking on the data before importing same into the
app's back end.

Depending on how simple/straightforward you were able to make the
sheets, you might even get away with just ODBC linking to them
and treating them as tables - bypassing the import into a work
table.
 
P

(PeteCresswell)

Per srichards:
Thanks. Will give it a try.

You might want to wait a day or two and see what else comes up in
this thread.

I kind of figured that by now somebody would have come up with
some sort of IntraNet direct access suggestion.... and maybe it
will come up eventually.
 
J

James A. Fortune

srichards said:
We are creating an issues tracking database using Access 2003 and would like
to export information to management, obtain their feedback and update the
database on a periodic basis. What is the best process for doing this?
Would Access 2007 make this process easier somehow?

I haven't tried the following software but it looks like it might be a
little better than SharePoint from a purely collaborative perspective:

http://office.microsoft.com/en-us/groove/default.aspx

Groove seems to have a more well-planned and flexible synchronization
strategy than Access or SharePoint.

Depending on how much data is to be shared you might also look into:

Automatic Email updates to a database using Windows Communication Foundation

Windows Workflow Foundation or even InfoPath under SharePoint

Collaboration software from non-Microsoft vendors.

James A. Fortune
[email protected]
 
J

James A. Fortune

James said:
Automatic Email updates to a database using Windows Communication
Foundation

It appears that A2K7 has a wizard to make this happen. From PDC05 OFF307:

External Data...

Collect and Update:
Create E-mail...

"Getting started with data collection through e-mail messages" wizard

Two Options for data entry forms:

HTML form

Infopath form

James A. Fortune
[email protected]
 
Top