I am trying to email 3 reports with 1 function where it will email 3 attachments. Right now, i can only send 1 attachment at a time. My question is; how do I send multiple reports along with this: rptPSSRMonthlyL aborSalesByPSSR ?
I have tried something like this, but didn't work.
Code:
cmbPSSR.Value = "075" DoCmd.SendObject acOutputReport, "rptCommissionStatement", "rptPSSRMonthlyLaborSalesByPSSR", acFormatPDF, "asdf@something.com"
Code:
cmbPSSR.Value = "075" DoCmd.SendObject acOutputReport, "rptCommissionStatement" And "rptPSSRMonthlyLaborSalesByPSSR", acFormatPDF, "asdf@something.com"
Comment