#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel invoice number

Hello,

I need some assistance with a formula to create an incremental invoice
number. The invoice number has to increment every other page when
printed. I'm trying to print some carbon copy work orders/invoices.

Appreciate the help.

Thanks,
Josh

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,090
Default Excel invoice number

Josh
You will need a macro to do that. Something like the following. Change
the range to print to suit what you have. This macro increments A1 by 1 and
prints the range. As written it will do this 100 times. HTH Otto
Sub IncAndPrint()
Dim c As Long
For c = 1 To 100
Range("A1:G50").PrintOut
[A1].Value = [A1].Value + 1
Next c
End Sub
wrote in message
ups.com...
Hello,

I need some assistance with a formula to create an incremental invoice
number. The invoice number has to increment every other page when
printed. I'm trying to print some carbon copy work orders/invoices.

Appreciate the help.

Thanks,
Josh



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
Help needed - creating invoice from packing list (both in excel) [email protected] Excel Discussion (Misc queries) 0 August 22nd 06 10:18 AM
Help needed - creating invoice from packing list (both in excel) [email protected] Excel Discussion (Misc queries) 0 August 22nd 06 10:13 AM
need help w/sequential invoice number on excel worksheet Landfillpark Excel Worksheet Functions 1 March 3rd 06 11:48 PM
Excel not taking number format consistently KP Conrad Excel Discussion (Misc queries) 1 September 22nd 05 07:37 PM
How do I automatically assign an invoice number in Excel 2003 (I . CliveA Excel Discussion (Misc queries) 0 April 15th 05 11:55 AM


All times are GMT +1. The time now is 10:01 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"