Macro

  • Thread starter Thread starter Julie
  • Start date Start date
J

Julie

Hi All,

Is there is a way that you can create a macro to do the
same as "Merge it with Microsoft Word" or "Publish it
with Microsoft Word"? It is under Tools--> Office
Links. TIA!

Thanks,
Julie
 
In a macro, use the RunCommand action with one of the following arguments:
WordMailMerge
OutputToRTF
OutputToExcel

In VBA, use:
DoCmd.RunCommand acCmdWordMailMerge
DoCmd.RunCommand acCmdOutputToRTF
DoCmd.RunCommand acCmdOutputToExcel

--

Sco

M.L. "Sco" Scofield, MCSD, MCP, MSS, Access MVP, A+
Useful Metric Conversion #16 of 19: 2 monograms = 1 diagram
Miscellaneous Access and VB "stuff" at www.ScoBiz.com
 
Hi and thanks for your response. I will give this a
try. Sorry for the multi-posting. Have a great day!

Julie
 
Back
Top