Excel macro to insert newline before specific text.

feudal

New Member
Joined
Oct 12, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hi, I need some help to format a spreadsheet. I need a macro that will bold specific text and insert a newline before said text. The bold works, but I don't know the best way to insert the linebreak. I tired with cell.Replace but that's acting weird. Maybe someone has a better solution.

VBA Code:
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) = "[CUSTOMIZED APPROACH OBJECTIVE]:"
Text(2) = "[APPLICABILITY NOTES]:"

For Each rCell In Range("D1:D100")
'rCell.Replace What:="[", Replacement:=vbLf & "["
    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

When I uncomment line 10 it kinda works but acts oddly when I test multiple cells. I'm sure there is a better way to accomplish this but I don't know what that would be.


The excel sheet looks like this before formatting.I would like it to look like this after I run the macro.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. [CUSTOMIZED APPROACH OBJECTIVE]: Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[APPLICABILITY NOTES]: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

[CUSTOMIZED APPROACH OBJECTIVE]: Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

[APPLICABILITY NOTES]: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Also, some cells are empty, some cells have both [TITLES] and still others have one or the other.

Thanks for your help!
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
One way.
VBA Code:
Sub Find_and_Bold()
    Dim rCell As Range, sToFind As String, iSeek As Long
    Dim Text(1 To 2) As String
    Dim i As Integer
    Dim S As String
    Dim SPos As Long
    
    Range("E4").Copy Range("D4")
    
    Text(1) = "[CUSTOMIZED APPROACH OBJECTIVE]:"
    Text(2) = "[APPLICABILITY NOTES]:"
    
    'Add LF
    For Each rCell In Range("D1:D100")
        SPos = 1
        For i = LBound(Text) To UBound(Text)
            sToFind = Text(i)
            iSeek = InStr(SPos, rCell.Value, sToFind)
            If iSeek > SPos Then
                With rCell
                    .Value = Left(.Value, iSeek - 1) & Chr(10) & Chr(10) & Mid(.Value, iSeek, Len(.Value))
                    SPos = iSeek + 1
                End With
            End If
        Next i
    
    'Add bolding
        SPos = 1
        For i = LBound(Text) To UBound(Text)
            sToFind = Text(i)
            iSeek = InStr(SPos, rCell.Value, sToFind)
            If iSeek > SPos Then
                With rCell
                    rCell.Characters(iSeek, Len(sToFind)).Font.Bold = True
                    SPos = iSeek + 1
                End With
            End If
        Next i
    Next rCell
End Sub
 
Upvote 0
An alternative approach... Original text in Column D - Output to Column E

VBA Code:
Sub Find_and_Bold()

    Dim spl, text
    Dim x As Long, s As Long, i As Long, p1 As Long
    Dim nText As String, rCell As String
  
    text = Array("[CUSTOMIZED APPROACH OBJECTIVE]:", "[APPLICABILITY NOTES]:")
  
    For x = 1 To 100
        rCell = Range("D" & x).text
        spl = Split(rCell, "[")
        If UBound(spl) > 0 Then
            For s = LBound(text) To UBound(text)
                For i = LBound(spl) To UBound(spl)
                    If InStr(spl(i), Mid(text(s), 2)) > 0 Then
                        spl(i) = "[" & spl(i)
                        spl(i) = CStr(spl(i))
                    End If
                Next
            Next
        End If
        If Not Range("D" & x) = "" Then
            For i = LBound(spl) To UBound(spl)
                nText = nText & spl(i) & vbNewLine & vbNewLine
            Next
        End If
            Range("E" & x).Font.Bold = False
            Range("E" & x) = nText
            For s = LBound(text) To UBound(text)
                p1 = InStr(Range("E" & x), text(s))
                If p1 <> 0 Then
                    With Range("E" & x).Characters(Start:=p1, Length:=Len(text(s))).Font
                        .FontStyle = "bold"
                    End With
                    p1 = 0
                End If
            Next
            nText = ""
    Next

End Sub
 
Upvote 0
One more thing about the code I posted above. This line:
VBA Code:
    Range("E4").Copy Range("D4")
should be deleted. It is some leftover test code I was using to refresh the data cell between runs that I forgot to take out. So without it, it would be:
VBA Code:
Sub Find_and_Bold()
    Dim rCell As Range, sToFind As String, iSeek As Long
    Dim Text(1 To 2) As String
    Dim i As Integer
    Dim S As String
    Dim SPos As Long
    
    Text(1) = "[CUSTOMIZED APPROACH OBJECTIVE]:"
    Text(2) = "[APPLICABILITY NOTES]:"
    
    'Add LF
    For Each rCell In Range("D1:D100")
        SPos = 1
        For i = LBound(Text) To UBound(Text)
            sToFind = Text(i)
            iSeek = InStr(SPos, rCell.Value, sToFind)
            If iSeek > SPos Then
                With rCell
                    .Value = Left(.Value, iSeek - 1) & Chr(10) & Chr(10) & Mid(.Value, iSeek, Len(.Value))
                    SPos = iSeek + 1
                End With
            End If
        Next i
    
    'Add bolding
        SPos = 1
        For i = LBound(Text) To UBound(Text)
            sToFind = Text(i)
            iSeek = InStr(SPos, rCell.Value, sToFind)
            If iSeek > SPos Then
                With rCell
                    rCell.Characters(iSeek, Len(sToFind)).Font.Bold = True
                    SPos = iSeek + 1
                End With
            End If
        Next i
    Next rCell
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,560
Members
449,089
Latest member
Motoracer88

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