How do I remove the ' from the begining of value in a cell
This worked a treat, many thanks for your help.....
"Gary''s Student" wrote:
Sub tic_killer()
Set rr = ActiveSheet.UsedRange.SpecialCells(xlCellTypeConst ants, xlTextValues)
For Each r In rr
If r.PrefixCharacter = "'" Then
r.Value = r.Value
End If
Next
End Sub
--
Gary''s Student - gsnu200733
|