JET uses SQL to manipulate data, usually seen in Access as queeries
so what (I think) you are looking for is a query which links the two items
the query will take the form of
SELECT a, list, of, columns, from, your, tables FROM atable
JOIN btable ON btable.somecolumn = atable.anothercolumn
WHERE acondition=true
ORDER BY some, columns
so it comes down as to how you know the two tabels are interelated
is picklist the same entity as issno?
for this exercise lets assume they are
SELECT a, list, of, columns, from, your, tables FROM compare
JOIN awbill on awbill.picklist = compare.issno
..you don't have to include a WHERE clause, but if you wanted to you could
WHERE comapre.yrmth = 1103
..you don't have to include an ORDER BY clause, but often they are used to make the data easier to read
ORDER BY trxdate
incidentally yrmth is a seriusly kludgy column, especailly as ont he face of it its derived from the transaction date