Using VBA I need to Output Report as Snapshot

bconner

Registered User.
Local time
Today, 08:53
Joined
Dec 22, 2008
Messages
183
I am trying to Output an Access Report as a SnapShot using VBA code, below is the code I am using but I can't find SnapShot under the Output Format...


Code:
DoCmd.OutputTo acOutputReport, "Rpt_Ref_Loc_Bad_Debt_By_Paycode",
 
Set the 3rd argument to: acFormatSNP
DoCmd.OutputTo acOutputReport, "Rpt_Ref_Loc_Bad_Debt_By_Paycode", acFormatSNP
 

Users who are viewing this thread

Back
Top Bottom