db structures:
MAIN:
mss_id - primary
business_Name
address
city
state
zip
....and a bunch O other stuff....
SUB-Tables:
SCAN:
scan_id - primary
mss_id - from MAIN
question responses that will report in another page
WHITEPAPER:
data_id - primary
mss_id - from MAIN
registration form information
CONTACT:
data_id - primary
mss_id - from MAIN
registration information
As the end user completes a step the data gets stored to cross-reference against their main contact entry in the MAIN table. For the main report page I just need to show with a yes or no that a step has been completed, then it will link to a more concise page that shows response to each step of completion. The problem I am running into was with Record Set Paging, it would only pull the 1st row ID in each page unless I put the queries into the loop statement to get all IDs being displayed.