REPLACE SPECIAL CHARACTERS/SYMBOLS

F

FARAZ QURESHI

I want every new paragraph to be starting with a bullet but the same as being
inserted as a text instead of creating a bulletted/hanging form. In Replace
box in the Find What I would insert ^p but in the Replace With what should I
insert as ^p"?" (the "?" representing the symbol to be inserted)
 
G

Graham Mayor

Replace with
^p^0149^032

or better still use a macro

Dim oRng As Range
Dim i As Variant
For i = 1 To ActiveDocument.Paragraphs.Count
Set oRng = ActiveDocument.Paragraphs(i).Range
oRng.Text = Chr(149) & Chr(32) & oRng
Next i

http://www.gmayor.com/installing_macro.htm


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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