
Originally Posted by
John_G
The Change_In_Date table won't (or shouldn't) have any records for an event where dates have not been changed. My suggestion would be to have a form based on the Events table instead of the Change_In_Date table. You could then add a record to the Change_In_Date table (using VBA) whenever a date is changed - the after update event of the Date field (you should rename that field - calling it "date" could cause problems) in Events would work. You can use the oldValue property to determine what the previous value was.
You could use another form to show you all the date changes for particular event.
HTH
John