By blank, do you mean that there is a space in there?
If so, just use the TRIM function to drop any trailing spaces, i.e.
Code:SELECT DONORS.ACCTID, DONORS.TITLE, DONORS.FNAME, DONORS.LNAME, DONORS.ADDR1, DONORS.CITY, DONORS.STATE, DONORS.ZIP, DONORS.COUNTRY, DONORS.SUPPORT1, DONORS.EMAIL1, DONORS.EMAIL2 FROM DONORS WHERE (((DONORS.SUPPORT1)="X") AND (LEN(TRIM(DONORS.EMAIL1) & "X")=1) AND (LEN(TRIM(DONORS.EMAIL2) & "X")=1) ORDER BY DONORS.ACCTID;