Autonumbering Formula for Columns

N

NYDUDE

I am trying to format Column "A" to automatically issue numbers
starting from 10001 to infinity. I am using thsis formula:

=IF(D8<>"",COUNTA($D$7:D8)&".","")

It is important that the numbers generated in Column "A" based on the
contents of Column "D", so if there's no entry in "D", Column "A" will
be blank.

The problem I am having is that I can not start with 10001, I can
however start with 1.

Also, Excel is placing a dot after my numbers. I don't like dots! Please
help.

Eddie
 
D

Darren Hill

=IF(D8<>"",COUNTA($D$7:D8)+10000,"")

Note: the offending dot is in your original formula - the following bit:
&"."

--
Darren
I am trying to format Column "A" to automatically issue numbers
starting from 10001 to infinity. I am using thsis formula:

=IF(D8<>"",COUNTA($D$7:D8)&".","")

It is important that the numbers generated in Column "A" based on the
contents of Column "D", so if there's no entry in "D", Column "A" will
be blank.

The problem I am having is that I can not start with 10001, I can
however start with 1.

Also, Excel is placing a dot after my numbers. I don't like dots! Please
help.

Eddie
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top