Copy Paragraph to Another Location

K

Karen Yatsin

Hi,

I'm trying to prepare a template with word macros.

I've only created macros by using the keyboard and haven't
written any VBA code.

I need a macro that will copy a paragraph that is made up
of a list/bullets of points and paste it into another
specific location (i.e. on a different page. Note that I
don't want to delete this paragrapgh from it's orginal
location.

Please help if you can.

Thanks,
Karen
 
B

Bruce Brown

Hi, Karen -

One easy way would be to bookmark the bulleted paragraph then bookmark
the location where you want to paste it. The code would go like this:

ActiveDocument.Bookmarks("PasteLocation").Range.FormattedText =
ActiveDocument.Bookmarks("BulletedParagraph").Range.FormattedText

- Bruce
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top