Numbering series

J

Jim Martin

I have a template that is used for estimating, need to be
able to set-up my template to automatically issue the next
number in a series so that each saved estimate has a new
number in a specific cell on the template. I am unable to
find any thing in Excel help, or maybe I am not asking the
right questions.
 
L

L. Howard Kittle

Hi Jim,

There are many ways to do that depending on a few things. Seems most
recommend advancing the number with a before print event macro.

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Range("A1").Value = Range("A1").Value + 1
End Sub

HTH
Regards,
Howard
 

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

Top