add leading character
Select the cells you want to process and run this:
Sub quote_me()
apos = Chr(39)
For Each r In Selection
r.Value = apos & r.Text
Next
End Sub
--
Gary''s Student - gsnu200763
"Satnam Randhawa" wrote:
I have a column of numbers to which I want to add a leading apostrophe. how
do i do it in one go?
|