Well I guess I'll a better way of describing it...
I have one table with a list of contacts. Everyday I need to create an entry for each of those contacts verifying if data has been received. This data is to be spread between 2 different tables (1st table, "received", has entries for date, contactID, and 2 yes/no fields. The 2nd table, "issues", consists of one date, 2 memo fields, and the relevant ID on the "received" table). The "issues" table is there to collect optional data and does not have an entry for every field in the "received" table.
What would be the best method to approach this? So that, with a single click, I can create the 50 empty fields in the "received" table, then return and edit them, possibly adding fields in the "issues" table as I go?
It seems to me the second part, returning and editing can easily be done with a query. But how can i go about creating the bulk records in the first place?