Q QB May 21, 2009 #1 How can I make a copy of a report using vba? Report - Proposal Copy - Proposal_Bak20090521 Thank you, QB
How can I make a copy of a report using vba? Report - Proposal Copy - Proposal_Bak20090521 Thank you, QB
Q QB May 21, 2009 #2 Figured it out. Here is the solution, should it serve someone else. DoCmd.CopyObject CurrentDb, "Proposal_bak" & Format(Date, "yyyymmdd"), acReport, "Proposal" QB
Figured it out. Here is the solution, should it serve someone else. DoCmd.CopyObject CurrentDb, "Proposal_bak" & Format(Date, "yyyymmdd"), acReport, "Proposal" QB
Q QB May 21, 2009 #3 Figured it out. Here is the solution, should it serve someone else. DoCmd.CopyObject CurrentDb, "Proposal_bak" & Format(Date, "yyyymmdd"), acReport, "Proposal" QB
Figured it out. Here is the solution, should it serve someone else. DoCmd.CopyObject CurrentDb, "Proposal_bak" & Format(Date, "yyyymmdd"), acReport, "Proposal" QB
A Alex Dybenko May 21, 2009 #4 Hi, you can use docmd.copyobject -- Best regards, ___________ Alex Dybenko (MVP) http://accessblog.net http://www.PointLtd.com
Hi, you can use docmd.copyobject -- Best regards, ___________ Alex Dybenko (MVP) http://accessblog.net http://www.PointLtd.com
A Alex Dybenko May 21, 2009 #5 Hi, you can use docmd.copyobject -- Best regards, ___________ Alex Dybenko (MVP) http://accessblog.net http://www.PointLtd.com
Hi, you can use docmd.copyobject -- Best regards, ___________ Alex Dybenko (MVP) http://accessblog.net http://www.PointLtd.com