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
Bookmarks