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

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
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,833
Messages
6,121,857
Members
449,051
Latest member
excelquestion515

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