Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a sheet, where I need to batch 500 products each containing 26 rows of information (13000 rows). after each batch of 26 there must be a space, which I have set up.
I now need to add in column 1 an SKU number for each batch, starting at SKU-00001 going upto SKU-00500. I am wondering is there a way of using the drag and fill to run these numbers consecutively in batches of 26, to save me having to edit each one? |
#2
![]() |
|||
|
|||
![]() Quote:
|
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Monday, March 26, 2012 10:31:10 AM UTC-5, joe74 wrote:
I have a sheet, where I need to batch 500 products each containing 26 rows of information (13000 rows). after each batch of 26 there must be a space, which I have set up. I now need to add in column 1 an SKU number for each batch, starting at SKU-00001 going upto SKU-00500. I am wondering is there a way of using the drag and fill to run these numbers consecutively in batches of 26, to save me having to edit each one? -- joe74 Sub numbersincolumn() n = 1 For i = 1 To 500 Step 26 Cells(i, 3).Resize(26).Value = "00A" & n n = n + 1 Next i End Sub |
#4
![]() |
|||
|
|||
![]() Quote:
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Incrementing numbers in a column | Excel Discussion (Misc queries) | |||
Incrementing numbers | Excel Programming | |||
Incrementing Cell Numbers | Excel Programming | |||
Incrementing numbers | Excel Worksheet Functions | |||
Incrementing Cell Numbers | Excel Discussion (Misc queries) |