Hi
in the ThisWorkbook module (right mouse click on sheet tab, choose view
code, click on ThisWorkbook under your workbook on the left hand side of the
VB Editor) ... put something in similar to this
--start code--
Sub workbook_open()
Sheets("Sheet1").Range("A1") = Range("A1").Value + 1
End Sub
--end code--
where the cell you want to increment is in cell A1 of sheet1
hope this helps
Cheers
JulieD
Lineman116 said:
I am using a repetitive form which was created in Excel. I would like to
set one cell to act as a counter, so that each time the form was opened, the
number would increase. Is there anyone with a solution?