Hi Jamie.
The cascading relationships do not cause a new record to be added to the
related table. You can use the AfterInsert event of your form to
automatically insert the other record as well, by executing an Append query
statement generated in code.
However, that won't solve the cause of your problem. If you have this many
fields, and are using another table with a one-to-one relation to get more
fields, there is a serious problem with the data structure. You need to
create a series of tables with one-to-many relations, instead of these
monster tables. There is a built-in tool that may help you to analyze the
table and suggest an alternative structure:
Tools | Analyze | Table
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users -
http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
"Jamie" <(E-Mail Removed)> wrote in message
news:31e301c470ea$9d4bdf70$(E-Mail Removed)...
> I have two tables with a one to one relationship with
> cascade update/delete checked. On the main form I have a
> button that is linked to a popup form that uses the second
> table. Everything is fine, so long I edit a current
> record, but when adding a new employee the related field
> in the second table is not added. I thought the
> update/delete is suppose to handle this? The second table
> has the same field as the main table for the primary field.
>
> Jamie