Excel remove ONLY trailing carriage returns

bluemarlin

New Member
Joined
Mar 25, 2019
Messages
2
I'm trying to remove only the trailing carriage returns from my data. Sometimes there's 1, sometimes 2 or more. I don't want to remove other line breaks, only the trailing ones. Can anyone kindly assist?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try this method on a COPY of your data

Code:
Sub RemoveTrailingLineFeed()

    Dim myStr As String, JobIsDone As Boolean, Cel As Range

    For Each Cel In Range("A1:A100")
        If Cel.Value <> "" Then
            myStr = Cel.Value
            JobIsDone = False
            Do Until JobIsDone
                Select Case Right(myStr, 1)
                    Case Chr(13), Chr(10)
                        myStr = Left(myStr, Len(myStr) - 1)
                    Case Else
                        JobIsDone = True
                End Select
            Loop
            Cel = myStr
        End If
    Next Cel
    
End Sub
 
Last edited:
Upvote 0
Thanks so much Yongle, this works perfectly. You have saved me LOTS of time!

Try this method on a COPY of your data

Code:
Sub RemoveTrailingLineFeed()

    Dim myStr As String, JobIsDone As Boolean, Cel As Range

    For Each Cel In Range("A1:A100")
        If Cel.Value <> "" Then
            myStr = Cel.Value
            JobIsDone = False
            Do Until JobIsDone
                Select Case Right(myStr, 1)
                    Case Chr(13), Chr(10)
                        myStr = Left(myStr, Len(myStr) - 1)
                    Case Else
                        JobIsDone = True
                End Select
            Loop
            Cel = myStr
        End If
    Next Cel
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,217
Members
449,074
Latest member
cancansova

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