From eRed the Noobe 
I have a report that I am trying to save as a PDF using DoCmd.OutputTo
This code properly saves the report:
However, I need to filter the report. The code below properly lets me preview the report:
How can I apply the filter/where to the DoCmd.OutputTo
Thanks for your help!
eRed

I have a report that I am trying to save as a PDF using DoCmd.OutputTo
This code properly saves the report:
Code:
DoCmd.OutputTo acOutputReport, "LTCFarNF", acFormatPDF, "M:\ARMGR\Reports\" & Me.ltcfname.Value & Chr(34) & ".pdf", True
Code:
DoCmd.OpenReport "LTCFarNF", acViewPreview, , "[LTCFarNF].[ltcfname]=" & Chr(34) & Me.ltcfname.Value & Chr(34)
Thanks for your help!
eRed