Insert quotes around selected area

K

kiwichico

Hi all, does anyone know whether it is possible to insert quotes
around a selected block of text by pressing a macro.
Thanks in advance,
Kiwichico
 
J

Jezebel

Not sure what you mean by 'pressing a macro', but the code could look like
this ...

Selection.Range.InsertBefore chr(147)
Selection.Range.InsertAfter chr(148)
 
Top