Sydcomebak
Registered User.
- Local time
- Today, 16:37
- Joined
- Apr 14, 2008
- Messages
- 46
This works:
But I end up with a 53 page .PDF of all 53 listings. I only want 1, but I don't know where to put the filter...
Any help would be great!
Thanks!
Code:
Private Sub Command127_Click()
DoCmd.SendObject acSendReport, "MLS_Report", acFormatPDF, "", , , "", , True
End Sub
Code:
Private Sub Command127_Click()
sWHERE = "Listings.ID = " &[Listings.ID].Value
DoCmd.SendObject acSendReport, "MLS_Report", acFormatPDF, "", , , "", , True
End Sub
Thanks!