
Signature
"The only true wisdom is in knowing you know nothing." -Socrates
You do not have [Columbus Table] in yoour FROM.

Signature
KARL DEWEY
Build a little - Test a little
> Microsoft Jet database engine does not recognize '[Columbus
> Table].[3_digit_zip] ' as a valid field name or expression.
[quoted text clipped - 5 lines]
> Exists (SELECT 1 FROM [3D_Zip_Codes4_Removel] WHERE
> [3D_Zip_Codes4_Removel].[3DZip] = [Columbus Table].[3_digit_zip] )
Douglas J. Steele - 30 May 2008 21:35 GMT
If [Columbus Table] is a table in the main query, you need to use an Alias
on it:
SELECT Field1, Field2
FROM [Columbus Table] As X
WHERE EXISTS (SELECT 1 FROM [3D_Zip_Codes4_Removel] WHERE
[3D_Zip_Codes4_Removel].[3DZip] = X.[3_digit_zip] )

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> You do not have [Columbus Table] in yoour FROM.
>
[quoted text clipped - 8 lines]
>> Exists (SELECT 1 FROM [3D_Zip_Codes4_Removel] WHERE
>> [3D_Zip_Codes4_Removel].[3DZip] = [Columbus Table].[3_digit_zip] )