How to make a seril number continue
Solved/Closed
SARC
Posts
29
Registration date
Saturday August 7, 2010
Status
Member
Last seen
August 31, 2010
-
Aug 19, 2010 at 10:22 AM
SARC - Aug 21, 2010 at 11:16 PM
SARC - Aug 21, 2010 at 11:16 PM
2 responses
Hi there,
From first cell lets say F1,enter 101,F2 enter 102,F3 l03 ,now with mouse select F1 to F3 dragging it down to number desired it will be in serial.
Thanks
From first cell lets say F1,enter 101,F2 enter 102,F3 l03 ,now with mouse select F1 to F3 dragging it down to number desired it will be in serial.
Thanks
SARC
Posts
29
Registration date
Saturday August 7, 2010
Status
Member
Last seen
August 31, 2010
Aug 20, 2010 at 02:47 PM
Aug 20, 2010 at 02:47 PM
Ok thanks,.. I got this far with my knowledge of VBA...
Private Sub Workbook_Open()
End Sub
You think you can help me out with the rest of the code pls...
Private Sub Workbook_Open()
End Sub
You think you can help me out with the rest of the code pls...
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Aug 20, 2010 at 04:25 PM
Aug 20, 2010 at 04:25 PM
Private Sub Workbook_Open()
Sheets("Sheet1").Range("A5") = Sheets("Sheet1").Range("A5") + 1
End Sub
Sheets("Sheet1").Range("A5") = Sheets("Sheet1").Range("A5") + 1
End Sub
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Aug 21, 2010 at 05:55 AM
Aug 21, 2010 at 05:55 AM
look in cell A5 of sheet titled Sheet1
Aug 19, 2010 at 01:14 PM
Aug 20, 2010 at 10:09 AM
You can either have number increase when book is open or close. for that open VBE (ALT + F11) and press CTRL + R and then double click on "ThisWorkbook". There depending on you want to go for close or open, pick the right event from the drop down and code it there