-----Original Message-----
OK, I see what you're doing. Essentially, you're capturing a snapshot of the
record before you "change" it to the next season.
You can use an Append Query that will copy the record from one table to
another. What you could do is put a command button on your form (the one you
use to update the records) that a user would click to "copy" the record to
the permanent table. You then would run code on that command button's
OnClick event that would run an append query to do this.
Let's assume that your form (let's assume it's named frmUpdate) shows only
one record at a time. Let's assume that the primary key value is displayed
on this form in a control that is named txtPKey. Let's also assume that the
first table is named tblFirst and the permanent table is named tblPerm; and
let's assume that the field names are the same in both tables. Create a
query (let's call it qryAppending) that is based on the tblFirst. Select the
* "field" and put it on the query grid. Then add the primary key field
(whatever it is) to the query grid. In the "Criteria:" cell under the
primary key field, type this expression:
[Forms]![frmUpdate]![txtPKey]
Click on the Query Type icon on the query's toolbar. Select Append Query.
Choose tblPerm from the list of tables shown in the dropdown list. Under the
primary key field in the query grid, delete any name of a field from the
"Append To:" cell. Save and close the query.
In the design view of the form frmUpdate, click on the command button (let's
assume it's called cmdSave), click on the Properties icon on the toolbar,
click on Event tab, click in box next to On Click, and then click the "..."
box at far right of the box. Select "Code Builder" from the list box choices
that are displayed. You'll then see the Visual Basic Editor open up, with
three lines displayed:
Private Sub cmdSave_Click()
End Sub
with the cursor on the second, blank line. Type the following lines between
the first and third lines:
If vbNo = MsgBox("Are you sure you wish to save this record to " & _
"the permanent table?",