ajking
Technical User
- Aug 13, 2002
- 229
Is it possible to set up a number that programmatically increments each time a workbook is opened?TIA
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Workbook_Open()
Range("a1") = Range("a1") + 1
Application.DisplayAlerts = False
With ActiveWorkbook
.SaveAs .Path & "\" & "Tempname.xlt"
End With
End Sub