Macros

S

Sarah

I'm trying to write a word macro that automatically inserts the word 'Name',
then lets me type some text in bold, then automatically inserts 'End', before
the macro stops. So far I've this:
Selection.TypeText Text:="Name"
Selection.Font.Bold = wdToggle
Selection.TypeText Text:="End"
This macro does insert the word 'Name', then lets me type in bold, but when
I finish typing it doesn't automatically turn bold off and insert the word
'End'. Help!
 
Top