I'm running into an issue with the database I'm trying to create. I have about 200 fields (and thousands of records), so I split them into about 8 different tables based on category, which all share the same PK. I only want to have to write the PK once, and store it in each table.
I've been trying to create a form with information from multiple tables (I'll need to make about 6 of these), but I've been getting the error "The Microsoft Access database engine cannot find a record in the table 'Contracts' with key matching field(s) 'ClientID'".
I originally wanted to have a main form with buttons to open other forms to the same record.
It would work like this:
Open main form.
For new customer, fill in information (including PK based on unique client ID), click buttons to open additional forms to fill out for new record (but same PK).
For existing customer, click buttons to open additional forms to correct record.
I know there has to be a better way to do this, but I'm lacking in technical experience. Hopefully someone can help me solve this in terms I can understand.