Sue:
There's no built in way to output an Access report to a PDF file
automatically. You'd have to use a third party tool to do so. If you use
either Adobe Acrobat, Win2PDF, pdfFactory, or PDF995 drivers, then you might
look at our PDF and Mail Library for Access, which will allow you to output
a report to a PDF file with as little VB code (say from a command button on
a form,) as:
Dim objPDF as New PDFClass
With objPDF
.ReportName = "Your Report"
.PDFEngine = 3 'Using Win2PDF driver
.OutputFile = "c:\some dir\some file.pdf
.PrintImage
End With
HTH