+ Reply to Thread
Results 1 to 5 of 5

how to make a series?

  1. #1
    Registered User
    Join Date
    07-26-2013
    Location
    Davao City, Phlippines
    MS-Off Ver
    Excel 2010
    Posts
    7

    how to make a series?

    hi,
    I want to make a series of voucher number. If my first voucher No. is 1001 after i save it and open it again the number will change to 1002. is this possible?

  2. #2
    Forum Contributor
    Join Date
    08-22-2011
    Location
    Texas, United States
    MS-Off Ver
    Excel 2007 and 2010
    Posts
    516

    Re: how to make a series?

    It is very difficult to do without a macro. You could do this in the open routine.
    Regards,
    amotto

    If I helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)

  3. #3
    Registered User
    Join Date
    07-26-2013
    Location
    Davao City, Phlippines
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: how to make a series?

    can you give me a method or formula on how to do this in macro?

  4. #4
    Forum Contributor
    Join Date
    08-22-2011
    Location
    Texas, United States
    MS-Off Ver
    Excel 2007 and 2010
    Posts
    516

    Re: how to make a series?

    Put this code in the ThisWorkbook routine, and change the cell reference as needed

    Private Sub Workbook_Open()
    Range("A2").Value = Range("A2").Value + 1
    End Sub

  5. #5
    Registered User
    Join Date
    07-26-2013
    Location
    Davao City, Phlippines
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: how to make a series?

    Thanks. it helps a lot.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. how to make a data series?
    By jrussell in forum Excel General
    Replies: 0
    Last Post: 09-08-2009, 02:39 PM
  2. How to make an exponential series?
    By Vasant Nanavati in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 09-06-2005, 12:05 PM
  3. How to make an exponential series?
    By sirsoto in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 10:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1