Converting Bullets/Numberings to FONTS

  • Thread starter Thread starter Faraz A. Qureshi
  • Start date Start date
F

Faraz A. Qureshi

Is there a way/code to have the bullets or auto numbers be converted to
actual fonts?
 
You can convert either to text with a macro

Sub NumbersToText()
ActiveDocument.ConvertNumbersToText
End Sub

Though in the case of (say) picture bullets the replaced bullet will be
replaced by a simple bullet.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
If I understand your question, one way to "convert" the numbers or bullets to
text characters is to select the passage with bullets/numbers, cut the
passage out, and then use Edit - Paste Special - Unformatted Text to paste it
back in.

I hope this does what you wanted.

Fred
 
Note that pasting as unformatted text clears any direct formatting that may
be applied to the original text. The pasted text assumes the formatting at
the insertion point (which may originate from a style or from direct
formatting).
 
Back
Top