View Single Post
  #2  
Old February 26th, 2010, 08:05 AM posted to microsoft.public.word.mailmerge.fields
Graham Mayor
external usenet poster
 
Posts: 18,297
Default format part of merged text in field

You cannot format part of a field. One answer would be to merge to a new
document then use replace to replace (R) with its symbol i.e. ^0174.
Similarly the trademark symbol ^0169

Maybe by macro?

Sub SwapSymbols()
ActiveDocument.Range = Replace(ActiveDocument.Range, "(c)", Chr(169))
ActiveDocument.Range = Replace(ActiveDocument.Range, "(C)", Chr(169))
ActiveDocument.Range = Replace(ActiveDocument.Range, "(r)", Chr(174))
ActiveDocument.Range = Replace(ActiveDocument.Range, "(R)", Chr(174))
End Sub


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


"Marek" wrote in message
news
I am trying to fill the merged fields from SQL. It works fine. But some of
data contains the symbol of trademark, registrationmark...
How can I tell the Word to format it as superscript?
e.g.
field products:
Intel(R) Centrino(R) Duo

Thank you very much