http://www.ozgrid.com/forum/showthread.php?t=115687
Option Explicit
Sub Bold1stWord()
Dim rCell As Range
With Selection
.Cells.Copy
.Cells.PasteSpecial xlValues
Application.CutCopyMode = False
For Each rCell In .Cells
rCell.Characters(1, InStr(1, rCell, ":") - 1).Font.Bold = True
Next rCell
End With
End Sub
Sunday, March 11, 2012
Posted by AG at 3:26 AM
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment