It's been a few months since I've used ACCESS and I've forgotten how to do something.
I have 2 tables:
tblClientInfo
I want to create a Form to "Enter New Client Info" with the fields:
Problem: When I attempt to enter the ClientName (the first textbox), I get an error message: cannot add record(s); join key of table 'tblClientName' not in recordset.
Any suggestions?
Thx.
I have 2 tables:
tblClientInfo
ClientID (autonumber) (PK)
StreetAddress
City
StateProv
PostalCode
tblClientNameStreetAddress
City
StateProv
PostalCode
ClientNameID (autonumber) (PK)
ClientID
ClientName
EffectiveDate
There is a 1 to many relationship between tblClientInfo and tblClientName, allowing for the database to track client name changes which may occur over time.ClientID
ClientName
EffectiveDate
I want to create a Form to "Enter New Client Info" with the fields:
ClientName
StreetAddress
City
StateProv
PostalCode
I don't really want to see sub-forms appearing on the form.StreetAddress
City
StateProv
PostalCode
Problem: When I attempt to enter the ClientName (the first textbox), I get an error message: cannot add record(s); join key of table 'tblClientName' not in recordset.
Any suggestions?
Thx.