Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
No worries, glad to help! Enjoy the weekend!
|
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I set up Auto sequence number in excle | Charts and Charting in Excel | |||
How do setup an auto fill form | Excel Discussion (Misc queries) | |||
auto fill sequence... | Excel Worksheet Functions | |||
Averaging Values in Auto Filter | Excel Worksheet Functions | |||
excel links update not working in auto, calculations in auto | Excel Worksheet Functions |