VBA for Auto insertion of serial numbers

ElPerson

New Member
Joined
Mar 16, 2017
Messages
24
Hi

I need a VBA code for auto insertion of the Serial number in column A when entry in Column B

Than you
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Copy and paste this macro into the worksheet code module. Do the following: right click the tab for your sheet and click 'View Code'. Paste the macro into the empty code window that opens up. Close the code window to return to your sheet. Enter data in the first empty cell in column B and exit the cell.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, Range("B:B")) Is Nothing Then Exit Sub
    Target.Offset(0, -1) = Target.Offset(-1, -1).Value + 1
End Sub
 
Last edited:
Upvote 0
It works well
Thank you
Copy and paste this macro into the worksheet code module. Do the following: right click the tab for your sheet and click 'View Code'. Paste the macro into the empty code window that opens up. Close the code window to return to your sheet. Enter data in the first empty cell in column B and exit the cell.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, Range("B:B")) Is Nothing Then Exit Sub
    Target.Offset(0, -1) = Target.Offset(-1, -1).Value + 1
End Sub
 
Upvote 0
It's OK just like the following
1
2
3
4

Note that i used manual method and now reached 100
But now i want to automate the process for the future
If your data starts on Row (assumes Row 1 has headers), you can do this using a formula also. Put this formula in cell A2 and copy it down to the last row you ever expect to have a serial number in...

=IF(B2="","",MAX(A$1:A1)+1)

An interesting side effect with this formula is that if you skip one or more rows when placing values in Column B, the serial count will continue without any breaks or skips in the numbering.
 
Upvote 0
the advantage of VBA is that the size of the excel file do not increase a lot and just enter the serial when needed

any way thank you
If your data starts on Row (assumes Row 1 has headers), you can do this using a formula also. Put this formula in cell A2 and copy it down to the last row you ever expect to have a serial number in...

=IF(B2="","",MAX(A$1:A1)+1)

An interesting side effect with this formula is that if you skip one or more rows when placing values in Column B, the serial count will continue without any breaks or skips in the numbering.
 
Upvote 0
the advantage of VBA is that the size of the excel file do not increase a lot and just enter the serial when needed
Can I assume you will never start with a blank sheet (with or without headers, skip a row when entering data or delete an entry? If you will, you need to test mumps code more carefully.

By the way, 100 or even 1000 formulas is not all that much of a burden to Excel.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,324
Messages
6,124,250
Members
449,149
Latest member
mwdbActuary

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