Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Mailmerge and Fax / May 2007

Tip: Looking for answers? Try searching our database.

Marking up data in Access to import in Word mail merge

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Brendan - 02 May 2007 18:06 GMT
I have a field in my database that stores an outline of topics covered in a
course. The data is made up of headings and text.

In my Word document I've created a new style called "heading3". Is there
anyway to mark up the entries in the database field so that Word will know to
apply "heading3" to the headings?
Peter Jamieson - 03 May 2007 10:14 GMT
Not really, if you mean that you want to be able to store /any/ style name
with the data. If you want to do that, you would probably have to use VBA
and Word's Mailmerge Events to apply the style specified in your data.

You could probably apply a limited number of predefined styles using an
INCLUDETEXT, e.g. you put the following in a file called
c:\include\myfield.doc:

bookmark the following line as "style1" and apply style "style1" to it:
{ MERGEFIELD myfield }
bookmark the following line as "style2" and apply style "style2" to it:
{ MERGEFIELD myfield }
bookmark the following line as "style3" and apply style "style3" to it:
{ MERGEFIELD myfield }
and so on...

then in your mail merge main document, use

{ INCLUDETEXT "c:\\include\\myfield.doc" "{ MERGEFIELD mystyle }" }

However, I haven't checked and you may find that the style in the main
document is used anyway.

Peter Jamieson

>I have a field in my database that stores an outline of topics covered in a
> course. The data is made up of headings and text.
[quoted text clipped - 3 lines]
> to
> apply "heading3" to the headings?
Brendan - 03 May 2007 13:08 GMT
I think I understand where this is going, but I'm not clear on how I would
need to mark-up the content of the database field to indicate where a header
begins and ends.

Can you provide further insight?

Thanks.
Brendan

> Not really, if you mean that you want to be able to store /any/ style name
> with the data. If you want to do that, you would probably have to use VBA
[quoted text clipped - 28 lines]
> > to
> > apply "heading3" to the headings?
Peter Jamieson - 03 May 2007 17:37 GMT
OK, I re-read your message and I don't think what I suggested is going to be
enough.

If you need to mark up parts of your text field, the task becomes much
harder. Either you would have to write VBA and use Word events to look for
markup in your text field and apply the appropriate formatting, or you would
probably have to markup your text in a way that allowed you to export the
content of your field to files (one for each record in your data source)
that you then included either with code or with an INCLUDETEXT. In that case
the markup would have to be in a format that Word already understood. It
might be HTML markup (but I don't know off the top of my head whether you
would be able to mark up using paragraph or character style names that Word
would recognise and apply) or RTF markup (even if that could be made to
work, it would render your field substantially less readable even than using
HTML markup).

Out of those three choices I think I'd probably opt for the "VBA and merge
events" one, if I really had to do it at all.

Peter Jamieson

>I think I understand where this is going, but I'm not clear on how I would
> need to mark-up the content of the database field to indicate where a
[quoted text clipped - 42 lines]
>> > to
>> > apply "heading3" to the headings?
Brendan - 03 May 2007 19:13 GMT
Hi Peter,

Thanks again. You've been a great help.

I recorded the following macro and tested running it on merged documents. It
works nicely. Do you know of a way to have it run automatically for each
merged document? Right now I'm having to run it manually (which is still a
step forward, at least).

Sub StyleReplace()
'
' StyleReplace Macro
' Macro recorded 5/3/2007 by Brendan
'
   Selection.Find.ClearFormatting
   Selection.Find.Replacement.ClearFormatting
   Selection.Find.Replacement.Style = ActiveDocument.Styles("Heading 3")
   Selection.Find.Replacement.ParagraphFormat.Borders.Shadow = False
   With Selection.Find
       .Text = "\<h3\>(*)\</h3\>"
       .Replacement.Text = "\1"
       .Forward = True
       .Wrap = wdFindContinue
       .Format = True
       .MatchCase = False
       .MatchWholeWord = False
       .MatchAllWordForms = False
       .MatchSoundsLike = False
       .MatchWildcards = True
   End With
   Selection.Find.Execute Replace:=wdReplaceAll
End Sub
Peter Jamieson - 03 May 2007 21:21 GMT
> Do you know of a way to have it run automatically for each
> merged document? Right now I'm having to run it manually (which is still a
> step forward, at least).

I would probably create a macro that perforrmed the merge /then/ did the
find/replace. e.g.

Sub MergeThenReplace()
Dim objMMMD As Word.Document 'Mail Merge Main Document

' After the merge, the new document becomes the active document
' So make a reference to the activeDocument in case we
' need to refer to it post-merge (although in this case, we don't)

Set objMMMD = ActiveDocument

With objMMMD.MailMerge
 .Destination = wdSendToNewDocument
 .SuppressBlankLines = True
 With .DataSource
   .FirstRecord = wdDefaultFirstRecord
   .LastRecord = wdDefaultLastRecord
 End With
 .Execute Pause:=False
End With

With ActiveDocument.Content.Find
 .ClearFormatting
 .Replacement.ClearFormatting
 .Replacement.Style = ActiveDocument.Styles("Heading 3")
 .Replacement.ParagraphFormat.Borders.Shadow = False
 .Text = "\<h3\>(*)\</h3\>"
 .Replacement.Text = "\1"
 .Forward = True
 .Wrap = wdFindContinue
 .Format = True
 .MatchCase = False
 .MatchWholeWord = False
 .MatchAllWordForms = False
 .MatchSoundsLike = False
 .MatchWildcards = True
 .Execute Replace:=wdReplaceAll
End With

Set objMMMD = Nothing

End Sub

Peter Jamieson

> Hi Peter,
>
[quoted text clipped - 29 lines]
>    Selection.Find.Execute Replace:=wdReplaceAll
> End Sub
Brendan - 04 May 2007 20:15 GMT
Hi Peter,

Thank you so much for your help!

Your script worked very well. Unfortunately my master document was full of
section breaks for formatting and I haven't found a way to fully adapt it, so
we'll still be doing some extra work. But again, thank you for your help.
Much appreciated.

Brendan

> > Do you know of a way to have it run automatically for each
> > merged document? Right now I'm having to run it manually (which is still a
[quoted text clipped - 79 lines]
> >    Selection.Find.Execute Replace:=wdReplaceAll
> > End Sub
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.