Trying to understand how tables are related.
I am guessing it is the AssignedTo field.
Oh, and what are TaskList ID's of tasks you want to create?
So as soon as new contact record is saved, need to grab that new ID and use it to create Task records.
Real trick is figuring out what event to put code into. Perhaps button Click.
If Me.Dirty Then Me.Dirty = False
CurrentDb.Execute "INSERT INTO Tasks(AssignedTo, TaskID) VALUES(" & Me.ID & ", 1)"
CurrentDb.Execute "INSERT INTO Tasks(AssignedTo, TaskID) VALUES(" & Me.ID & ", 2)"
CurrentDb.Execute "INSERT INTO Tasks(AssignedTo, TaskID) VALUES(" & Me.ID & ", 3)"