I have a table of sales transactions for all clients.
I want to loop through this table, to email each client a PDF file.
I use below command to generate PDF.
But it generate all clients' transaction into 1 PDF.Code:Docmd.OutputTo acReport, "ClientTransactionsReport", acFormatPDF, "C:\Temp\ClientTran.pdf"
How to output 1 PDF for each client?
Thanks.