I'm trying to search an address within a field. For example when I search '4500' I get results, but, if I search '4500 L' or '4500 Lamont' it comes back with no results. Here's my code:
thanks in advance,
Dale
Code:
SQL = "select * from customer where charindex('" & Trim(UCase(Sch)) & "', rtrim(upper(adr)) ) > 0 order by adr;"
Set Cust = Adbs.Execute(SQL)
thanks in advance,
Dale