OK, I'm kind of a novice so this may be a simple dilemma. The issue is that I had originally made one query to exclude Null values from one field, DELIVERABILITY_CODE:
SELECT current_addresses.* INTO CHANGE_OF_ADDRESS
FROM current_addresses
WHERE (Nz(current_addresses.DELIVERABILITY_CODE,"")="");
That went fine, and so I made another query to show a selection of possible values in another field, MOVE_TYPE:
SELECT current_addresses.* INTO CHANGE_OF_ADDRESS
FROM current_addresses
WHERE (((current_addresses.MOVE_TYPE)="B")) OR (((current_addresses.MOVE_TYPE)="I"));
That also went fine as well.
However, I'm now trying to combine the WHERE conditional to show the MOVE_TYPE values ONLY when the DELIVERABILITY_CODE is Null. I can't seem to combine that in a way that excludes the Null values on the DELIVERABILITY_CODE. I've tried using:
WHERE (Nz(current_addresses.DELIVERABILITY_CODE,"")="") AND (((current_addresses.MOVE_TYPE)="F")) OR (((current_addresses.MOVE_TYPE)="B")) OR (((current_addresses.MOVE_TYPE)="I"));
and also
WHERE (Nz(current_addresses.DELIVERABILITY_CODE,"")="") OR (((current_addresses.MOVE_TYPE)="F")) OR (((current_addresses.MOVE_TYPE)="B")) OR (((current_addresses.MOVE_TYPE)="I"));
but to no avail. I'm not sure where I need to make changes to get what I'm looking for.