Answers for "excel vba bold some text in cell"

VBA
1

excel vba bold some text in cell

' Occurences of pWord inside pRange's text become bold and red. Case insentive.
Sub WordToBold(ByRef pRange As Range, ByVal pWord As String, _
    ByRef pPos As Integer)
    Dim pos As Integer
    pos = InStr(pPos, pRange.Value, pWord, vbTextCompare)
    If pos > 0 Then
        With pRange.Characters(pos, Len(pWord))
            .Font.Bold = True
            .Font.Color = vbRed
        End With
        WordToBold pRange, pWord, pos + 1
    End If
End Sub
'--------------------------------------------------------------------------------
Sub TestIt()
    Range("A1") = "Run, Forrest run"
    WordToBold Range("A1"), "run", 1
End Sub
Posted by: Guest on January-18-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language