You said your pretty novice, are you at all familiar with macros? As long as the template format doesn't change this should work. This is assuming labels are in column A and the data is entered in column B(all of which to be changed based on however your template is set up), B1 would be your PO number. I would assign it to a big button with text something along the lines of "Save & New". Make sure it's saved as an xlsm file.
Sub Macro1()
'
' Macro1 Macro
' Public Sub AddOne()
'
Application.Dialogs(xlDialogSaveAs).Show
ActiveWorkbook.ActiveSheet.Copy After:=Sheets(1)
Range("B2:B4").Select
Range("B1").Activate
Selection.ClearContents
Range("B1").Value = Range("B1") + 1
End Sub
Bookmarks