First, press F1, type "macro" in the keyword box and click "Search". Then
read the Word Help topics on:
About macros
Create a macro
Run a macro
If you need more info, go here:
http://word.mvps.org/FAQs/MacrosVBA/index.htm
After that, this will make much more sense:
Are you saying I need to start the macro recoder and do the process
manually
once then subsequent ones will be automated?
The sequence of steps - menu commands, keystrokes, mouse clicks, etc - that
you perform while the macro recorder is on are saved. Any time you call up
that macro and run it, those same steps will be performed again. Because
the steps will be performed again in the exact same order, doing the exact
same thing, and looking for the exact same "stuff" ("objects", in macro
language) to work on, you must have the same conditions when you run the
macro.
I suggested that you open your Excel workbook and copy the range of cells
that you want in Word, then open your Word document and find then place you
want them to be inserted. THEN start the recorder. Your first command,
then, would be Paste. If you do this, then whenever you ran the macro, the
first command would Paste whatever is on the Clipboard (whatever you Copied
last). If the Clipboard is blank, you'll get an error. If it was a picture
or text and your next command is a table formatting command, then the macro
will error.
I suggest you walk slowly through this first WITHOUT recording, and write
down every command you use. Make any adjustments you need - did you do
something out of turn? or do something and then have to re-do it? If you
record it, the macro will do it.
After you record it, try it. The recorder isn't the most efficient way to
write a macro, although it works for most small macros. Don't be surprised
if it gives you an error and doesn't work. Click "Debug" on the dialog box
that comes up, note which line is highlighted in yellow (as you can tell,
I've been down this road _many_ times before!!), and then copy the entire
macro code and post back here in this thread. We can help you refine it.
Ed