Macro to Bold tet within wrapped text in B2

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,563
Office Version
  1. 2021
Platform
  1. Windows
I have code below to bold this portion of text "Do NOT amend my links." in B2 that contains other text as well that is wrapped

It would be appreciated if someone coild amend my code

Code:
Sub BoldTextInCell()
    Dim searchText As String
    Dim cellText As String
    Dim cellRange As Range
    Dim startPos As Long
    Dim found As Boolean

    ' Set the text you want to bold
    searchText = "Do NOT amend my links"

    ' Set the cell range
    Set cellRange = ThisWorkbook.Sheets("Email").Range("B2")

    ' Get the cell's text
    cellText = cellRange.Value

    ' Initialize the starting position
    startPos = 1
    found = False

    Do
        startPos = InStr(startPos, cellText, searchText, vbTextCompare)
        If startPos > 0 Then
            cellRange.Characters(startPos, Len(searchText)).Font.Bold = True
            startPos = startPos + 1
            found = True
        End If
    Loop While startPos > 0

    ' Display a message if the text was not found
    If Not found Then
        MsgBox "Text not found in the cell."
    End If
End Sub
 
Thanks Georgiboy

I used your code in Post # 9 and it works 100%
 
Upvote 0

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN

Forum statistics

Threads
1,215,079
Messages
6,123,009
Members
449,093
Latest member
ikke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top