E
Esaw
I have the following query:
SELECT ArtSubmissions.DateSent, ArtSubmissions.SentTo,
ArtSubmissions.FormSent, ArtSubmissions.StyleNumber,
ArtSubmissions.StyleDescription, ArtSubmissions.SentBy,
ContactList.ContactName
FROM ArtSubmissions INNER JOIN ContactList ON ArtSubmissions.ID =
ContactList.ContactName;
Which is bringing up the mismatch error because the join is between
ArtSubmissions.ID and ContactList.ContactName These two fields (from two
different tables) have a relationship and I understand why there is an error
(different types of fields), but I don't know how to run this so the
ContactName related to the ArtSubmissionsID shows up in the query. Right now,
if I take out the join, nothing shows in the ContactName field, but the the
info from the ArtSubmissions table shows up.
In the end, I would like to be able to create a report that groups the
ArtSubmissions by ContactName.
Could someone help me with this?
thanks so much for you time!
SELECT ArtSubmissions.DateSent, ArtSubmissions.SentTo,
ArtSubmissions.FormSent, ArtSubmissions.StyleNumber,
ArtSubmissions.StyleDescription, ArtSubmissions.SentBy,
ContactList.ContactName
FROM ArtSubmissions INNER JOIN ContactList ON ArtSubmissions.ID =
ContactList.ContactName;
Which is bringing up the mismatch error because the join is between
ArtSubmissions.ID and ContactList.ContactName These two fields (from two
different tables) have a relationship and I understand why there is an error
(different types of fields), but I don't know how to run this so the
ContactName related to the ArtSubmissionsID shows up in the query. Right now,
if I take out the join, nothing shows in the ContactName field, but the the
info from the ArtSubmissions table shows up.
In the end, I would like to be able to create a report that groups the
ArtSubmissions by ContactName.
Could someone help me with this?
thanks so much for you time!