let's say your first table is called table1 and your second table is called table2
Table1 has fields Field1, Field2
Table2 had fields Field1a, Field2a
Create this query:
Code:
Select Field1, Right(Field1,6) as Field1aCalc, Field2 FROM Table1
Save it as query1
This should give you a query that looks like:
310110.111001 111001 242
310113.111001 111001 500
310110.111002 111002 350
310115.111002 111002 475
(I think your output is in error the last two should have a 111002 in their second column)
now create a new query with QUERY1 as the base and link it to Table2 via the Field1aCalc to Field1a and dump in the field you want.
Don't do this query with a dlookup function.