J
JJ
I am trying to create a code that will go through a table of criteria. It
will run a query for a row, append that query to an output table, and then
move down a row and do the same thing over until there are no rows left.
Example of Criteria_Table:
Fields are - AutoID: Name : Level : Location
456 : Joe : Level 1 : East
524 : Sam : Level 3 : West
789 : Bob : Level 10 : North
Example of Criteria_Qry (Criteria_Table linked Position_Table)
Fields are - Name : Level : Location : Position_Num
Example of Ouput_Table
Fields are - Name : Level : Location : Position_Num
Joe : Level 1 : East : 2
Sam : Level 3 : West : 6
Bob : Level 10 : North : 9
Any suggestions would be appreciated. Thanks!
will run a query for a row, append that query to an output table, and then
move down a row and do the same thing over until there are no rows left.
Example of Criteria_Table:
Fields are - AutoID: Name : Level : Location
456 : Joe : Level 1 : East
524 : Sam : Level 3 : West
789 : Bob : Level 10 : North
Example of Criteria_Qry (Criteria_Table linked Position_Table)
Fields are - Name : Level : Location : Position_Num
Example of Ouput_Table
Fields are - Name : Level : Location : Position_Num
Joe : Level 1 : East : 2
Sam : Level 3 : West : 6
Bob : Level 10 : North : 9
Any suggestions would be appreciated. Thanks!