Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
nothingnice
 
Posts: n/a
Default SET UP AUTOMATIC INVOICE NUMBERS

I need to know how to create automatic invoice numbering in excel.
thank you
  #2   Report Post  
Posted to microsoft.public.excel.misc
Paul B
 
Posts: n/a
Default SET UP AUTOMATIC INVOICE NUMBERS

nothingnice,

A simple way would be to use something like this, you could assign it to a
button, an open or before print event.

Sheets("Sheet1").Range("A1").Value = _

Sheets("Sheet1").Range("A1").Value + 1



For other ways to do this or if this is going to be used in a temple have a
look here

http://www.mcgimpsey.com/excel/udfs/sequentialnums.html
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003


"nothingnice" wrote in message
...
I need to know how to create automatic invoice numbering in excel.
thank you



  #3   Report Post  
Posted to microsoft.public.excel.misc
bbc1
 
Posts: n/a
Default SET UP AUTOMATIC INVOICE NUMBERS

You could assign this to a button set which cell has invoice no.
Sub number()
Sheet1.Unprotect
'Increment the invoice number
[G3] = [G3] + 1
Sheet1.Protect
End Sub

"Paul B" wrote:

nothingnice,

A simple way would be to use something like this, you could assign it to a
button, an open or before print event.

Sheets("Sheet1").Range("A1").Value = _

Sheets("Sheet1").Range("A1").Value + 1



For other ways to do this or if this is going to be used in a temple have a
look here

http://www.mcgimpsey.com/excel/udfs/sequentialnums.html
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003


"nothingnice" wrote in message
...
I need to know how to create automatic invoice numbering in excel.
thank you




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
Linking to a pivot table from a formatted invoice Spaceman Spiff Links and Linking in Excel 1 January 1st 06 11:02 PM
formulas to numbers Steve New Users to Excel 2 September 16th 05 01:07 AM
Hightlighting Numbers & then all Cells to the right of these Numbers. Dave Excel Worksheet Functions 4 August 29th 05 11:30 PM
How do I assign sequential numbers in an invoice? halex New Users to Excel 4 May 5th 05 07:46 PM
Invoice numbers? Missie Excel Worksheet Functions 1 December 13th 04 08:28 AM


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