View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Papou Papou is offline
external usenet poster
 
Posts: 67
Default Macro to enter record number in column A

Hello
With Worksheets("YourSheet")
For i = 2 to .Range("D65536").End(xlUp).Row
..Cells(i,1).Value = 'Your Number here
Next i
End With

HTH
Cordially
Pascal