I have a list of tests that i record the date they were done. When i update it the due date becomes 10 years from the last date tested. I would like to move the old dates to an historical table but the problem is the dates are all in separate fields in the main database but I want to just archive them as a name/date combo in the history table.
For example these would be fields in the main database
Car Number 1 SafetyValveTest Date Done: 1/1/2000 Date Due: 1/1/2010
Car Number 1 BottomValveTest Date Done: 1/1/2000 Date Due: 1/1/2010
When i save it in the history table I would like it to look like this (except car numbers would be whatever car it was)
Car TestName Test Date
1 SafetyValve 1/1/2000
7 BottomValve 1/1/2000
3 SafetyValve 1/1/2010
1 BottomValve 1/10/2000
So basically I am looking for a way to use and append query but use the field name and put it in as a field value in the table I wish to update. I am thinking of using a check box and for each box they check it will update the history table and then i can assign whatever name value I want to the check boxes.