Reputation: 4497
I want to set bold some text in string. How can I do it?
Upvotes: 12
Views: 97531
Reputation: 78210
By using Characters.
Range("A1").Characters(8, 5).Font.Bold = True
Upvotes: 23
Reputation: 21
Try this if you need to bold multiple specific text:
Sub Find_and_Bold()
Dim rCell As Range, sToFind As String, iSeek As Long
Dim Text(1 To 4) As String
Dim i As Integer
Text(1) = "text1"
Text(2) = "text2"
Text(3) = "text3"
Text(4) = "text4"
For Each rCell In Range("C7:C1000")
For i = LBound(Text) To UBound(Text)
sToFind = Text(i)
iSeek = InStr(1, rCell.Value, sToFind)
Do While iSeek > 0
rCell.Characters(iSeek, Len(sToFind)).Font.Bold = True
iSeek = InStr(iSeek + 1, rCell.Value, sToFind)
Loop
Next i
Next rCell
End Sub
The source for this solution is from: http://www.vbaexpress.com/forum/showthread.php?52245-Make-specific-text-bold-in-cells
Upvotes: 1
Reputation: 105
Another way for people who need a quick fix and aren't comfortable using VBA:
Not the fastest way but if you're not familiar with VBA and need a quick fix this will work for you!
Not just for Bold: CTRL I for italics, CTRL U for underlined.
Upvotes: 1
Reputation: 61
I would say use this dynamic formula -
Range("A1").Characters(worksheetfunction.find("Excel",Range("A1").value,1),len("Excel")).font.bold = True
Upvotes: 6