I think this is going to be an easy question (and answer), but I'm not familiar with how to get it to work and I've been trying to figure it out for a little while now. Thanks in advance for any assistance - let me know if more information is needed.
So I have two tables, with relevant fields below in a 1 to many relationship. There is an input form bound to tblProperty. When a new record is added to tblProperty via the form, I need a record added to tblCurrentOwner with the PropertyID that was just created passed to tblCurrentOwner.PropertyID.
tblProperty
PK - PropertyID (autonumber)
tblCurrentOwner
PK - autonumber ID field
PropertyID (foreign key to tblProperty)
OwnerID (foreign key to another table, Owner - this field can and will be blank at this point.)
So I have two tables, with relevant fields below in a 1 to many relationship. There is an input form bound to tblProperty. When a new record is added to tblProperty via the form, I need a record added to tblCurrentOwner with the PropertyID that was just created passed to tblCurrentOwner.PropertyID.
tblProperty
PK - PropertyID (autonumber)
tblCurrentOwner
PK - autonumber ID field
PropertyID (foreign key to tblProperty)
OwnerID (foreign key to another table, Owner - this field can and will be blank at this point.)