SELECT tableB.data FROM tableB INNER JOIN tableA ON Left$(tableB.data, 4) =
tableA.data
You can't create a non-equi-join like this in the graphical query designer's
Design View, but you can create a query using an equi-join (tableB.data =
tableA.data) then switch to SQL View to edit it.

Signature
Brendan Reynolds
Access MVP
> Hi Everyone,
>
[quoted text clipped - 13 lines]
> Any and all help appreciated.
> Pat
Pat Backowski - 17 Oct 2006 14:20 GMT
Thanks, Brendan....that's what I neded.
> SELECT tableB.data FROM tableB INNER JOIN tableA ON Left$(tableB.data, 4) =
> tableA.data
[quoted text clipped - 20 lines]
> > Any and all help appreciated.
> > Pat