View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
jseven[_2_] jseven[_2_] is offline
external usenet poster
 
Posts: 2
Default Delete first character in ActiveCell

Sub tester()
ActiveCell.Value = Right(ActiveCell.Value, Len(ActiveCell.Value) -
1)

End Sub


Others may have better ways, but this one seems to work great for me.
Jamie