Excel auto sequence numbering

RJ1969

Board Regular
Joined
Sep 13, 2014
Messages
76
Hello all,

Trying to figure it out how to set an auto number in the worksheet i am working on without using vba code.

Here is my scenario.,,
Let say the number 1 starts in column A5. Which i have type that #1 in the cell A5 then an entry will be made in column B5. Now if i make my next entry then the #2 in B6 will auto number if i make an entry in B6. I don't need to enter the number which is just automatically numbering the cells everytime i do an entry. My worksheet is set "clear print area". It only unclear where the entry is being made. So that is why i am trying to avod putting a code in column A on a cells.
I dont know if this can be done in conditional format.

Thanks you
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Type the 1 in A5
In A6 put the formula
Code:
=IF(AND(A5<>"",B5<>""),A5 + 1,"")
and drag down as required
 
Last edited:
Upvote 0
Hi Michael
Can this be done in conditinal dormatting? Im trying to avoid putting formula in cell A6 all the down because of a printing purposes.
 
Upvote 0

Forum statistics

Threads
1,215,692
Messages
6,126,226
Members
449,303
Latest member
grantrob

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