CarlaInJax said:
So I'm going to have to modify my existing form and table and cannot use
the
ones that they e mailed to me? The new ones are drastically different,
and
I'd like to be able to bring my old data to the new table.
No, what you need to do is to import the old data from the old back end to
the new back end..
I assume while this is happening, they all stopped working and entering
data..right?
So, what you would do is open up the new back end, and then import the data
from the old back end.
since the tables don't match, then you would create a append query from that
old back end table you just
imported into the new table structures. An append query will allow you to
re-map, and send data from fields
with different names to the new table structure.
of cause, if the data structures been changed a lot, or the number of tables
don't match, then you might have write a bit
of code to re-direct, or modify the data. However, for the most part,
usually you can just use append queries to send
the data you imported from the old system into those new tables. Once you
satisfied that you salvaged as much data
as possible, then you can delete the old tables. All of this of course
occurs in your back end. It seems that the front end has already been
created
and modified for you to work with the new back end. so, it seems your
development task at hand is to import the data.
We often have to do this type of import, as often we are salvaging data from
a older application, and must import it into
a new application. So, import the old data into some tables (in the back
end...these tables will be deleted after you managed to import the data from
those tables to your new table structures). After your done..then those
older tables can be deleted.
So, the question you seem to be basking is how do you move data from one mdb
data base to another. and, the answer is that you simply import those older
tables, and then use some append queries to send the data from those older
tables to the new table structures. You need documentation, and
understanding of the field names to accomplish this goal.
So, for example, the old tables might has used
LastN
for the last name, and the new table might use:
LastName
So, when you build the append query, you can chosoe the from/to field nameas
to accomplsh this re-mapping task. It would save a good deal of work if
those poeple started with the odler data file..and modifed that data for
you. Regardless, the above is much the process you have to follow.