Laura,
Please try replacing the SQL in your query with the amended text below. Or
in the QBE grid
remove all but the first "X" in the Member_Type criteria and in the Company
field enter your "not likes" like this:
not like "*book*" And not like "*barnes*" And not like "*Amazon*" And not
like "*Border*" in the same row
as your "X" in Member_Type.
SELECT iMIS_Name.MEMBER_TYPE, iMIS_Name.FULL_NAME, iMIS_Name.TITLE,
iMIS_Name.COMPANY, iMIS_Name.FULL_ADDRESS, iMIS_Name.WORK_PHONE,
iMIS_Name.FAX, iMIS_Name.EMAIL
FROM iMIS_Name
WHERE (((iMIS_Name.MEMBER_TYPE)="X") AND ((iMIS_Name.COMPANY) Not Like
"*book*" AND (iMIS_Name.COMPANY) Not Like "*Barnes*" AND (iMIS_Name.COMPANY)
Not Like "*Amazon*" AND (iMIS_Name.COMPANY) Not Like "*Border*"));