In the Workbook open event, use code like this:
Private Sub Workbook_Open()
Worksheets("Sheet1").Range("L1").Value =
Worksheets("Sheet1").Range("L1").Value +1
Application.DisplayAlerts = False
Thisworkbook.Save
Application.DisplayAlerts = True
End Sub
I'm assuming that the number is actually a number and is not a string like
"PO #00001" If you need a string like that, use a custom format like
"PO #"00000
and only enter the number 1 into cell L1.
HTH,
Bernie
MS Excel MVP
"Jessica" <Jes...@discussions.microsoft.com> wrote in message
news:596FE504-17BE-4BAD...@microsoft.com...