View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Plateav Plateav is offline
external usenet poster
 
Posts: 2
Default How can I auto number rows only when data is entered in the sa

Luke! Poets will write songs about you one day! PERFECTO!!!

"Luke M" wrote:

Using a formula:

=IF(B2="","",A1+1)
copied down as far as you would ever need to go.

Using VB:
Right click on sheet tab, view code, paste this in:

'=======
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B:B")) Is Nothing Then Exit Sub
Target.Offset(0, -1).Value = Target.Offset(-1, -1).Value + 1
End Sub
'=======
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Plateav" wrote:

I'm working with Microsoft Office 2003. Is there anyway I can auto number
rows (in sequence) in column A ONLY when data is entered in column B? 9 cool
points for the first correct answer. THANKS! (0: