counting starting with a number other than 1

  • Thread starter Thread starter norman mellow
  • Start date Start date
N

norman mellow

I am creating automatically generated tracking numbers for groups of data by
using the following formula: =IF('Sheet !'!A1 = 0,COUNT($A$6:A6)+1, " ") ( in
these groups of data the header row is 0 in the A column, if that ake sense).
What I need to do now is make the count start at a number other than 1, say,
2000. What do I need to add to the forumla to accomplish that?
 
Instead of +1 as you've shown here, do +2001.
=IF('Sheet !'!A1 = 0,COUNT($A$6:A6)+1, " ")
becomes
=IF('Sheet !'!A1 = 0,COUNT($A$6:A6)+2001, " ")
 

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

Back
Top