Here is my syntax:
SELECT ListingsTable.PubID, Count(ListingsTable.ListingID) AS CountOfListingID, ListingsTable.Agent, ListingsTable.OfficeCode, ListingsTable.Company, ListingsTable.[CompPhn#], ListingsTable.ListDate
FROM ListingsTable
GROUP BY ListingsTable.PubID, ListingsTable.Agent...
I meant i have it currently as:
DoCmd.OpenReport "CPDReport", acViewPreview, "", "[DISCLOSURE_TABLE]![ID]=[Forms]![DISCLOSURE_ENTRY_FORM]![ID]"
DoCmd.SelectObject acReport, "CPDReport"
DoCmd.PrintOut acPages, 2, 15, acMedium...
How do i specify certain pages to print using the normal view??
heres what i have that works but it always load up a preview of the report to print which takes too long
DoCmd.OpenReport "CPDReport", acViewNormal, ""...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.