View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Myles[_5_] Myles[_5_] is offline
external usenet poster
 
Posts: 1
Default Adding a "1" in front of everything in column A


Or,

Sub AddOne()

For each c in Range("a:a")
If Not Isempty(c) Then
c.value = 1 & c.value
End if
Next

End Sub


--
Myles
------------------------------------------------------------------------
Myles's Profile: http://www.excelforum.com/member.php...o&userid=28746
View this thread: http://www.excelforum.com/showthread...hreadid=490316