I have two tables
Table1(TripEventTypes)
Table2(TripEventTypeDe tails)
I am trying to insert multiple records into table 2 from a form. Is there a way to do this? example would be a form for a Flight event
Where EventTypeDetail ID = DepartureCity EventTypeDetail Value = City Name
Where EventTypeDetail ID = DepartureDate EventTypeDetail Value = Date
and so on.. for Arrival City, ArrivalDate, Flight Number, SeatNumber
All this would be store in the TripEventTypeDe tails for each type of event.
Right now I have a Main Form(Table1) linked to a Continous SubForm(Table2) where I can input the many details as necessary.
Table1(TripEventTypes)
Code:
TripEventyTypeID EventTypeID
Code:
TripEventTypeID EventTypeDetailID EventTypeDetailValue
Where EventTypeDetail ID = DepartureCity EventTypeDetail Value = City Name
Where EventTypeDetail ID = DepartureDate EventTypeDetail Value = Date
and so on.. for Arrival City, ArrivalDate, Flight Number, SeatNumber
All this would be store in the TripEventTypeDe tails for each type of event.
Right now I have a Main Form(Table1) linked to a Continous SubForm(Table2) where I can input the many details as necessary.
Comment