M
M B
Hi all!
I'm trying to find duplicates by matching the address
fields in 2 different tables:
SELECT [Table1].Address, [Table1].City, [Table1].State,
[Tabel1].ZIP
FROM [Table1] INNER JOIN Table ON
([Table1].Address=Table2.Address) AND
([Table1].City=Table2.City);
Even though 123 Main Street in Table1 is the same as 123
Main ST. in Table2, it doesnt query through because the
text is not exactly the same. I tryied using LIKE vs. =
but no luck... Is there a way to have Access match the
number and the first word truncating, trimming or
ignoring whatever is past the second space in the field
(I.e. St., Street, Ave., Lane,etc.)??
Anything would be very much appreciated.
Thanks!!
..
I'm trying to find duplicates by matching the address
fields in 2 different tables:
SELECT [Table1].Address, [Table1].City, [Table1].State,
[Tabel1].ZIP
FROM [Table1] INNER JOIN Table ON
([Table1].Address=Table2.Address) AND
([Table1].City=Table2.City);
Even though 123 Main Street in Table1 is the same as 123
Main ST. in Table2, it doesnt query through because the
text is not exactly the same. I tryied using LIKE vs. =
but no luck... Is there a way to have Access match the
number and the first word truncating, trimming or
ignoring whatever is past the second space in the field
(I.e. St., Street, Ave., Lane,etc.)??
Anything would be very much appreciated.
Thanks!!
..