#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,814
Default SETUP AUTO SEQUENCE

What is the simplest way to set up sequential invoice numbers in a workbook?
I have 35 Invoices. Instead of typing the Invoice number on every
invoice/sheet, can I automate the invoice numbers to start at #1310 and
increase by 1 for each invoice/sheet? (The Invoice number must be on each
sheet)
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 427
Default SETUP AUTO SEQUENCE

One possibility:
Start sheet one with invoice 1310 in cell A1 (or whatever). On the
next sheet, refer to that cell A1 and add 1 with a formula such as
=Sheet1!A1+1 and continue for remaining sheets.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,814
Default SETUP AUTO SEQUENCE

It isn't working...can you explain step by step (just do 2nd sheet. I can
figure out how to apply to the rest.

"Dave O" wrote:

One possibility:
Start sheet one with invoice 1310 in cell A1 (or whatever). On the
next sheet, refer to that cell A1 and add 1 with a formula such as
=Sheet1!A1+1 and continue for remaining sheets.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,814
Default SETUP AUTO SEQUENCE

Never mind...it works!
Thanks!


"Dave O" wrote:

One possibility:
Start sheet one with invoice 1310 in cell A1 (or whatever). On the
next sheet, refer to that cell A1 and add 1 with a formula such as
=Sheet1!A1+1 and continue for remaining sheets.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 427
Default SETUP AUTO SEQUENCE

No worries, glad to help! Enjoy the weekend!



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default SETUP AUTO SEQUENCE

Steve

A macro will do?

Sub Number_Increment()
Dim myNum As Long
Dim iCtr As Long
myNum = 1310
For iCtr = 1 To Worksheets.Count
With Worksheets(iCtr).Range("A1")
.Value = myNum - 1 + iCtr
End With
Next iCtr
End Sub


Gord Dibben MS Excel MVP

On Fri, 27 Oct 2006 06:49:02 -0700, STEVE
wrote:

What is the simplest way to set up sequential invoice numbers in a workbook?
I have 35 Invoices. Instead of typing the Invoice number on every
invoice/sheet, can I automate the invoice numbers to start at #1310 and
increase by 1 for each invoice/sheet? (The Invoice number must be on each
sheet)


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I set up Auto sequence number in excle Nassir Charts and Charting in Excel 0 June 8th 06 08:09 PM
How do setup an auto fill form Nick Excel Discussion (Misc queries) 0 May 13th 06 10:18 PM
auto fill sequence... tiaj Excel Worksheet Functions 3 March 24th 06 04:59 PM
Averaging Values in Auto Filter Mr. Jan Park Excel Worksheet Functions 1 August 3rd 05 03:51 PM
excel links update not working in auto, calculations in auto Mikey Boy Excel Worksheet Functions 0 December 7th 04 11:53 PM


All times are GMT +1. The time now is 11:58 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"