hello all,
I'm trying to figure out a good way to compare address across two tables. Example: Table 1 has the address of 12345 E Main St and table 2 has 12345 Main.
I need to just look at the numbers and actual street. If they match than I'm good. I've done the below
to split out the numbers, and I can keep going deeper with something like this, but wanted to know if anyone else has a better query or use of functions or anything that will allow me to use a query to look at this rather than manually looking at the records.
Any ideas, or need more info?
Thanks in advance.
Will
I'm trying to figure out a good way to compare address across two tables. Example: Table 1 has the address of 12345 E Main St and table 2 has 12345 Main.
I need to just look at the numbers and actual street. If they match than I'm good. I've done the below
Code:
Expr2: Left([table1]![address],InStr([table1]![address]," ")-1)
Any ideas, or need more info?
Thanks in advance.
Will
Comment