I have a Excel spreadsheet of email usernames. This file is emailed to me automatically by the system. I imported the usernames into a separate table, tblUsernames. I have another table that contains all customer records and their email addresses,tblCustomers. I created a query from all active customers who do have a email address on record, qryAllUsernames.
I'm trying to create a separate unmatched query comparing tblUsernames with qryAllUsernames. This query seems to work (it has 27 results). I encounters problems with the reverse, compare qryAllUsernames with tblUsernames (it has 4987 results).
I did define a relationship between qryAllUsernames.EmailAddress and
tblUsernames.Usernames. My concern is my qryAllUsernames contains multiple usernames fields,Email1, Email2, Email3, etc., to reflect customers having multiple email addresses. tblUsernames, in contrast, contains all email usernames in one field.
I'm trying to create a separate unmatched query comparing tblUsernames with qryAllUsernames. This query seems to work (it has 27 results). I encounters problems with the reverse, compare qryAllUsernames with tblUsernames (it has 4987 results).
I did define a relationship between qryAllUsernames.EmailAddress and
tblUsernames.Usernames. My concern is my qryAllUsernames contains multiple usernames fields,Email1, Email2, Email3, etc., to reflect customers having multiple email addresses. tblUsernames, in contrast, contains all email usernames in one field.