Hi,
I have a sheet with lot of data in range a1: t100 all of it is text, there are no formulas in here.
Sprinkled throughout the data there are a couple of hundred instances of an exclamation mark !.
I need to turn all of these into bold format, they may appear anywhere in the text. I anticipate it being something like:
Sub bold()
Dim boldrng as range
set boldrange = (a1,t100)
for each cell in range find "!" and when found then:
With ActiveCell.Characters(!).Font
.FontStyle = "Bold"
End With
End Sub
any thoughts?
Thanks
Andy
I have a sheet with lot of data in range a1: t100 all of it is text, there are no formulas in here.
Sprinkled throughout the data there are a couple of hundred instances of an exclamation mark !.
I need to turn all of these into bold format, they may appear anywhere in the text. I anticipate it being something like:
Sub bold()
Dim boldrng as range
set boldrange = (a1,t100)
for each cell in range find "!" and when found then:
With ActiveCell.Characters(!).Font
.FontStyle = "Bold"
End With
End Sub
any thoughts?
Thanks
Andy