Private Sub Workbook_Open()
Application.DisplayAlerts = False
Sheets("Sheet1").Select
ActiveSheet.Unprotect ("Your Password Here")
Sheets("Sheet1").Range("A1").Value = Sheets("Sheet1").Range("A1").Value + 1
ActiveSheet.Protect ("Your Password Here")
ActiveWorkbook.Save
Application.DisplayAlerts = True
End Sub