U
UBSara
HI
I have two tables in my database. The first table, New
Events, holds updated and new information for the most
recent time frame. The second table, All Events, houses
all of the events from the inception of the database.
I do not know how to update and append the information
from the New Events table to the All Events table.
Currently, my simple append query duplicates the rows of
my updatable infomation and adds rows of the new
information. The All Events table needs to have the
updated information to overwrite its existing respective
row in this table as well as capture the new information.
My attempt is to make two queries: An delete query to
remove the old, updatable information and a simple append
query to then all of these New Events to the All table.
The entire row of information needs to be captured, so a
one-to-many link will not suffice. Please walk me through
these steps I'll need to take.
Many thanks
Sara
I have two tables in my database. The first table, New
Events, holds updated and new information for the most
recent time frame. The second table, All Events, houses
all of the events from the inception of the database.
I do not know how to update and append the information
from the New Events table to the All Events table.
Currently, my simple append query duplicates the rows of
my updatable infomation and adds rows of the new
information. The All Events table needs to have the
updated information to overwrite its existing respective
row in this table as well as capture the new information.
My attempt is to make two queries: An delete query to
remove the old, updatable information and a simple append
query to then all of these New Events to the All table.
The entire row of information needs to be captured, so a
one-to-many link will not suffice. Please walk me through
these steps I'll need to take.
Many thanks
Sara