Hi,
I have the below query. My thought was the part at the end would only select records that had a +4 zip code (12345-1234), however this does not seem to work. Any ideas?
Thanks.
I have the below query. My thought was the part at the end would only select records that had a +4 zip code (12345-1234), however this does not seem to work. Any ideas?
Thanks.
Code:
"SELECT Min(Len([NAME])) AS [NAME], " & _
"Min(Len([ADDR2])) As [ADDR2], Min(Len([ADDR1])) As [ADDR1], " & _
"Min(Len([CITY ST ZIP])) As [CITY ST ZIP], Min(Len([Salutation])) As [Salutation] " & _
"FROM [Test.csv] WHERE LEFT(RIGHT([CITY ST ZIP],5),1) = '-'"