Auto-generate sequential numbers

hnkim

New Member
Joined
Aug 9, 2019
Messages
1
I am working on a project where I need to have item numbers auto generate into a table, once the user fills in a specifc cell in the title with a number (eg. Site Review No. 2) and the item list would auto generate 2.1, 2.2, 2.3 in the below table. Is this possible? I have searched online and can't find any help.
 
Last edited by a moderator:

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Would something like this work?

Cell A2 = Site Review No. 2

A
42.1
52.2
62.3
72.4
82.5
92.6
102.7
112.8
122.9

<colgroup><col style="width: 25pxpx"><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
A4=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A4)/10)
A5=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A5)/10)
A6=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A6)/10)
A7=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A7)/10)
A8=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A8)/10)
A9=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A9)/10)
A10=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A10)/10)
A11=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A11)/10)
A12=(RIGHT($A$2,LEN($A$2)-FIND(". ",$A$2))*1)+(ROWS($A$4:A12)/10)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,446
Messages
6,124,904
Members
449,194
Latest member
JayEggleton

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