Remove Leading Spaces in a Text Cell

paulfitz320

Board Regular
Joined
Jan 6, 2007
Messages
122
Office Version
  1. 365
Platform
  1. Windows
Would anyone have some code to remove the LEADING SPACE from the second line, down to and including the bottom line, in this text cell? It's in column B and needs to run on all cells down to B1000. Thank you.

9 / 2
first foal
dam, 1m/8.3f winner, half-sister to useful winner up to 1¼m Zest
fairly useful performer
won handicap at Wolverhampton (by ½ length from Outrace) in April
gambled-on 2/1, also won 12-runner similar event there last time by neck from Beau Vintage, quickening to lead close home having conceded first run
stays 8.5f
acts on polytrack and tapeta.
 
Last edited:

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
I do not see leading spaces in your example

Use the TRIM function
=TRIM( " xxxx " ) will output "xxxx" - eliminated leading and trailing spaces
 
Upvote 0
Thanks. Don't need a formula. Was looking for some code. In any event your formula will delete the leading space before the first character in the entire cell.
I need to delete each leading space on each line in the cell.
 
Upvote 0
Sorry, the initial post didn't paste very well. Each line in the cell has a leading space in front of it, that I wish to remove.
 
Upvote 0
Maybe this is clearer.
 

Attachments

  • mrexcel1.PNG
    mrexcel1.PNG
    21.3 KB · Views: 10
Upvote 0
Try this:
VBA Code:
Sub paulfitz320()
Dim i As Long, va
With Range("B1", Cells(Rows.Count, "B").End(xlUp))
    va = .Cells.Value
    For i = 1 To UBound(va, 1)
        va(i, 1) = Trim(va(i, 1))
        va(i, 1) = Replace(va(i, 1), vbLf & " ", vbLf)
    Next
    .Cells = va
End With
End Sub

I'm assuming that the leading space is only a single space, if that is not the case then we need to amend the code.
 
Upvote 0
Solution
Assuming as @Akuini did that there is only a single leading space, would a simple manual method to remove those single spaces be acceptable? If so, select Column B, then press CTRL+H to bring up the "Replace" dialog box, type CTRL+J followed by a space (that is two keystrokes) into the "Find What" field (it will not look like anything happened when you type the CTRL+J, but trust me, something happened), then type just CTRL+J into the "Replace With" field, make sure the "Match Entire Cell Contents" checkbox is NOT checked, then click the "Replace All" and your leading spaces should all be gone.
 
Upvote 0
If you really need it as a macro (instead of the manual method I posted a moment ago), this simple one-liner will work (it is the coded version of my manual method)...
VBA Code:
Sub RemoveLeadingSpaceInsideCell()
  Columns("B").Replace vbLf & " ", vbLf, xlPart
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,140
Messages
6,123,266
Members
449,093
Latest member
Vincent Khandagale

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