Auto re-number rows after row delete

leopardhawk

Well-known Member
Joined
May 31, 2007
Messages
611
Office Version
  1. 2016
Platform
  1. Windows
Hello forum friends, I am wondering if it might be at all possible to renumber the rows on a worksheet after a row is deleted. I have column B numbered C1 through C100. If I delete the entire row C6, then C7 would become C6, and so on... Be great if it's possible, but OK if it isn't. Appreciate any ideas. Thanks!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Hello, in the module of the inserted sheet put this code
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim j As Integer
    Application.EnableEvents = False
    For j = 1 To 100
        Cells(j, 3) = j
    Next
    Application.EnableEvents = True
End Sub
 
Upvote 0
@mart37 I like this suggestion. On my worksheet, C1 is actually in row 6, C2 is in row 7, and so on. Is there a way to do this without too much difficulty?
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,599
Messages
6,120,447
Members
448,966
Latest member
DannyC96

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top