A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
That works greats! Now how would I add a range for all of column D, how would I write that? Thanks so much!
Hi,
Like this
Sub Truncate_ColD()
Dim c As Range, MyRange As Range
Dim LastRow As Long
LastRow = Cells(Cells.Rows.Count, "D").End(xlUp).Row
Set MyRange = Range("D1:D" & LastRow)
For Each c In MyRange
c.Value = Left(c.Value, 60)
Next
End Sub