I have an Issues table with a field "Driving School." I want to link that
field with a separate table showing address information for the driving
schools which has a primary key "Policy Number".
In the Issues table, the row source I have for this "driving school"
column
is
SELECT [Company Name] FROM [Driving Schools] ORDER BY [Company Name]
would this affect me creating referential integrity and is there a way to
correct the problem without having to show the Policy number in the Issues
table?
does that make sense?
Jeff Boyce said:
If you are trying to show a relationship between two tables, the field(s)
by
which you connect them must be the same data types (e.g., "Text" doesn't
connect with "Number").
If you use more than one field to connect, you must use the same number
of
fields (and with the corresponding data types) in both tables.
Regards
Jeff Boyce
Microsoft Office/Access MVP
When I click on the referential integrity box this error msg pops up:
"Relationship must be on the same number of fields with the same data
types."
what does this mean?