View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Givnik Givnik is offline
external usenet poster
 
Posts: 8
Default 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