Hi rpinxt,
try this:
![]()
Sub ConvertToText() Dim Rng As Range, c As Range With Sheet1 Set Rng = .Columns(5).SpecialCells(xlCellTypeConstants, xlNumbers) For Each c In Rng If Not IsDate(c) Then c.Value = "'" & c.Value End If Next c End With End Sub
Bookmarks