View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tim Williams Tim Williams is offline
external usenet poster
 
Posts: 1,588
Default Numbering Function

In the "ThisWorkbook" module:

Private Sub Workbook_Open()
With ThisWorkbook.Sheet1.Range("A1")
.Value = .Value + 1
End With
End Sub


Tim

"mdougherty44" wrote in message
...
How can I set up a cell to automatically increase it's numeric value by 1
every time the workbook is opened? Thanks!