Hello:
I am trying to remove spaces from the cells in column C of the sample file.
Anyone could help me write a code for that purpose?
Many many thanks,
Chris
2-PM TO INTERAL-remove unnecessary spaces from description.xlsx
Hello:
I am trying to remove spaces from the cells in column C of the sample file.
Anyone could help me write a code for that purpose?
Many many thanks,
Chris
2-PM TO INTERAL-remove unnecessary spaces from description.xlsx
Try this VBA code:
Is that something you can work with?![]()
Sub CleanCol_C() Dim rng As Range Dim cCell As Range With Worksheets("origional") Set rng = Range(.Range("C3"), .Range("C" & .Rows.Count).End(Direction:=xlUp)) For Each cCell In rng If Len(cCell) Then cCell.Value = WorksheetFunction.Trim(cCell) End If Next cCell End With End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks