M mdougherty44 Feb 27, 2008 #1 How can I set up a cell to automatically increase it's numeric value by 1 every time the workbook is opened? Thanks!
How can I set up a cell to automatically increase it's numeric value by 1 every time the workbook is opened? Thanks!
T Tim Williams Feb 27, 2008 #2 In the "ThisWorkbook" module: Private Sub Workbook_Open() With ThisWorkbook.Sheet1.Range("A1") .Value = .Value + 1 End With End Sub Tim
In the "ThisWorkbook" module: Private Sub Workbook_Open() With ThisWorkbook.Sheet1.Range("A1") .Value = .Value + 1 End With End Sub Tim