>I need certain words in my scedules to be bold. I dont want to have to go
>through all my charts and select these individual words & i would like to
>have these specific words just become bold as i type them in the future.
>Please help.
Gordon,
for example:
Stainless Steel Wall Mounted Handrail at Auditorium
all of the above is in a single cell together. only stainless steel would
need to be in bold. they are in column B which is labeled description with
no codes.
> Are these words by themselves in a cell or part of other text in a cell?
>
[quoted text clipped - 8 lines]
> >have these specific words just become bold as i type them in the future.
> >Please help.
Don Guillett - 09 Nov 2006 20:59 GMT
Sub boldselectedword()
myword = "bbb"
fc = InStr(activecell, myword)
lc = Len(myword)
ActiveCell.Characters(fc, lc).Font.Bold = True
End Sub

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> Gordon,
>
[quoted text clipped - 21 lines]
>> >have these specific words just become bold as i type them in the future.
>> >Please help.
Don Guillett - 09 Nov 2006 21:09 GMT
to do all in selection
Sub bsw()
myword = "bbb"
For Each c In Selection
fc = InStr(c, myword)
MsgBox fc
lc = Len(myword)
MsgBox lc
If fc > 0 Then c.Characters(fc, lc).Font.Bold = True
Next
End Sub

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> Gordon,
>
[quoted text clipped - 21 lines]
>> >have these specific words just become bold as i type them in the future.
>> >Please help.