Selecting before a character to make bold...

R

rohit92

Hey guys,
I think this might help me in the future, but I want to use something like
this for school. Say i have this text:
"dog- an animal that barks
cat- an animal that meows"

So what I want to do is select the words before the "-" to make them bold.
The words dog and cat should be bold. Sometimes i have very large lists to do
this with and it gets annoying to constantly select each word and make it
bold.. So let me know if it is possible.
 
S

Stefan Blom

If you hold the Alt key, you can use the mouse to select vertically.

Alternatively, you should be able to use Find and Replace.
 
G

Graham Mayor

Select the list and run the following macro:

Dim oRng As Range
For i = 1 To Selection.Paragraphs.Count
Set oRng = Selection.Paragraphs(i).Range
With oRng
.MoveEndUntil "-", wdBackward
.End = .End - 1
.Bold = True
End With
Next i

If there is no list selected, the macro operates on the paragraph containing
the cursor.

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

Similar Threads


Top