+ Reply to Thread
Results 1 to 7 of 7

Saving an Excel file with 12-NNN (increasing number)

  1. #1
    Registered User
    Join Date
    05-25-2012
    Location
    Oregon
    MS-Off Ver
    Excel 2010
    Posts
    4

    Saving an Excel file with 12-NNN (increasing number)

    Hello,

    I need help tyring to duplicate a formula and apply it to another document. I would like to have an excel file, when saved create a number in a cell with the last 2 digits of year 12-NNN and the NNN be increasing from 001. I have attached the document I would like to duplicate the formula in cell H2. Can't figure it out. Any help would be appreciated.

    Thanks
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    05-25-2012
    Location
    Oregon
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Saving an Excel file with 12-NNN (increasing number)

    I will add that the document gets saved to SharePoint. Also, I have attached a copy of the documnet I would like to copy that formula into. The cell I want to copy it into is A3.
    Attached Files Attached Files

  3. #3
    Forum Contributor
    Join Date
    05-25-2012
    Location
    California
    MS-Off Ver
    Excel 2010
    Posts
    194

    Re: Saving an Excel file with 12-NNN (increasing number)

    So this file would overwrite the previous file, e.g. 11-002 would replace 11-001? Or is each automatically created file separate from the previous file.

    Sounds like you want a source document that when you click save, will save the file as the next number in order, and then also upload it to sharepoint, correct?

    **Might also add that there is no event currently in Excel that will trigger solely off the "save" button - e.g. you'll have to figure out a different event to trigger this - either a button with the macro assigned that you click when you want to upload/save to sharepoint or you can write the macro to trigger when the document is closing.

    *** Might also add one more thing... you can view the hidden "FORMULAS" sheets, by going into the vba editor (alt + f11), and then viewing the immediate window and executing the following code:

    excel.ActiveWorkbook.Sheets("Formulas").visible = true
    Last edited by Medpack; 05-25-2012 at 02:28 PM.

  4. #4
    Registered User
    Join Date
    05-25-2012
    Location
    Oregon
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Saving an Excel file with 12-NNN (increasing number)

    Correct. When I click save, the file will save as the next number in order and then upload it to sharepoint.

  5. #5
    Forum Contributor
    Join Date
    05-25-2012
    Location
    California
    MS-Off Ver
    Excel 2010
    Posts
    194

    Re: Saving an Excel file with 12-NNN (increasing number)

    Ok, well again, you unfortunately can't execute events soley off the default save button for Excel. However, you can create a custom "save" button, or have the event triggered off a different event (e.g. when the document closes).

    The code would look something like the following to upload to sharepoint & save as the next number in line.

    Sub SaveAsNext()
    On Error Resume Next
    Activeworkbook.CustomDocumentProperties.Add Name:="NNN", LinkToContent:=False, Value:=1, Type:=msoPropertyTypeString
    On Error GoTo 0
    If ActiveWorkbook.CustomDocumentProperties("NNN").Value <> 1 Then
    ActiveWorkbook.CustomDocumentProperties("NNN").Value = ActiveWorkbook.CustomDocumentProperties("NNN").Value + 1
    End if
    ActiveWorkbook.Save
    Dim NNNValue As String
    Select Case Len(ActiveWorkbook.CustomDocumentProperties("NNN").Value)
    Case Is = 1
    NNNValue = "00" & ActiveWorkbook.CustomDocumentProperties("NNN").Value
    Case Is = 2
    NNNValue = "0" & ActiveWorkbook.CustomDocumentProperties("NNN").Value
    Case Is = 3
    NNNValue = ActiveWorkbook.CustomDocumentProperties("NNN").Value
    End Select
    ActiveWorkbook.SaveAs "INSERT YOUR SHAREPOINT PATH HERE AND END WITH A \" & Mid(Year(now), 3, 2) & "-" & NNNValue & ".xlsx" 'Use xls for 2003 excel, or xlsx for 2010
    'You can get your sharepoint path by going to the folder you want the file to upload in, hand upload a sample file, then click on the file and click "send link" - This will open outlook and create an email with your full sharepoint path and file name - copy everything up to the last slash
    ActiveWorkbook.CheckIn savechanges:=True, Comments:="", MakePublic:=""
    End Sub

  6. #6
    Registered User
    Join Date
    05-25-2012
    Location
    Oregon
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Saving an Excel file with 12-NNN (increasing number)

    Thank you for the help. The only problem is that the formula keeps adding just a one at the end of the name. 12-0131. I also want to add one digit on the end of the naming convention. What I am trying to do is increase the last number by like 12-013 is the first one and when i save a new one i want it to be 12-014.

  7. #7
    Forum Contributor
    Join Date
    05-25-2012
    Location
    California
    MS-Off Ver
    Excel 2010
    Posts
    194

    Re: Saving an Excel file with 12-NNN (increasing number)

    Can you share your updated code?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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