speed up macro remove Leading Spaces

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,563
Office Version
  1. 2021
Platform
  1. Windows
I have the following code below to remove leading spaces

the macro does what it is supposed to do, but it a bit slow (there just under 1000 rows of data)

It would be appreciated if someone could kindly amend my code so as to speed up the process



Code:
 Sub Remove_Leading_Spaces_CommSheets()
      Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
      Dim i As Long, LR As Long, R As Range
      
      
    
        With Sheets("Data Import")
      LR = .Cells(Rows.Count, "A").End(xlUp).Row
      For Each R In .Range("A1:E" & LR)
      On Error Resume Next
      
        R.Value = LTrim(R.Value)
      Next R
    End With
  
   Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic
 End Sub
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Do you just want to remove leading spaces & ignore any other extra spaces?
 
Upvote 0
Hi Fluff

I only want to remove any leading spaces
 
Upvote 0
Ok, how about
VBA Code:
Sub howard2()
   Dim Ary As Variant
   Dim r As Long, c As Long
   
   With Sheets("Data Import")
      With .Range("A1:E" & .Range("A" & Rows.Count).End(xlUp).Row)
         Ary = .Value2
         For r = 1 To UBound(Ary)
            For c = 1 To UBound(Ary, 2)
               Ary(r, c) = LTrim(Ary(r, c))
            Next c
         Next r
         .Value = Ary
      End With
   End With
End Sub
 
Upvote 0
As you should be well aware by now:

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: speedup Code to remove leading spaces [SOLVED]
If you have posted the question at more places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0
My Apologies Rory. I forgot complete to advise of cross post
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,011
Messages
6,122,677
Members
449,092
Latest member
tayo4dgacorbanget

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