First, let me say sorry for being such a newbie.
SQL connection to dbo_jomast, dbo_joitem, and dbo_inmast
SELECT DISTINCTROW dbo_jomast.fjobno, dbo_joitem.fpartno, dbo_joitem.fmqty, dbo_inmast.fnusrcur1
FROM (dbo_inmast INNER JOIN dbo_jomast ON (dbo_inmast.frev = dbo_jomast.fpartrev) AND (dbo_inmast.fpartno = dbo_jomast.fpartno)) INNER JOIN dbo_joitem ON dbo_jomast.fjobno = dbo_joitem.fjobno
WHERE (((dbo_jomast.fjobno)=[Job #]));
This appends 1 item into a 4th table Joext(access table).
Lets say the job i7311-0000(dbo_jomast.fbobno)is for 400 (dbo_joitem.fmqty)belts. Each belt bundle is 20 (dbo_inmast.fnusrcur1). I need this query to generate rows in table joext for each bundle until all bundles are accounted for (20 bundles@20 each=400). Table joext consists of fcjobno (input from query) fcbundleno (autonumber) and fcbndlqty (input from calculation in query).
I hope this makes sense.
Guy