Hi June7
Will there always be 5 pages?
No. the number pages will vary due to the number of field sites a field technician can visit in one day. for every site a technician visits a record will be stored in a table. each site has it own unique ID
Why are there multiple pages and why do they need to be individual PDFs?
I built one report which get its data from a query for a specific technician, so if that technician visits many sites, they will have many records (or pages), therefore generating many pages to the 1 report.
The generation of the report (or pdf) does not occur until the field technician has synchronized with the back-end, One thought just came to mind is generating a report (pdf) as soon as he saves the record, and then push all the pdfs in their proper location for linking on the back-end. I would like to avoid this kind of data storage on the field laptops.
Synopsis:
When the technician returns to the office, they will synchronize the collected field data into the back-end for office use. Since each record is a different location, I will be linking the respective .pdf with the correct records via unique IDs. The only reason I was thinking of pdf, is for security so that document may not be altered once generated.
There may be an alternate approach to this, which I am open to, but I am trying to build on what I have already completed.
Can I use your suggested For/Next loop with the .output acFormatPDF property? Options:
1. Set destination printer as AdobePDF, if you have the driver for it, and use PrintOut method to print specified pages. The AdobePDF printer dialog should open so can enter file name. I don't know if this part can be automated.
For i = 1 to 5
DoCmd.PrintOut acPages, i, i
Next
2. Print all 5 pages to a single multi-page PDF and use code to break up the PDF.
This option will not work for me since the one multi-page PDF will include different site for different records unique IDs
I hope im describing it coherently..lol. sometimes, I over-complicate my own thinking 
Any thoughts are greatly appreciated!
Naeem~