Roger asks “We are racking our brains here trying to design a form in Excel that automatically increments the number (i.e. 5600) by one each time the form is opened. Is there a formula or macro that will accomplish this task?”
In the Workbook module (Or, if it’s a Userform, in the Initialize event of that Userform) put the following:
Private Sub Workbook_Open() Sheet1.Range("A1") = Sheet1.Range("A1") + 1 End Sub
By Juan Pablo Gonzalez on 25-May-2002
MrExcel.com Consulting can be hired to implement this concept, or many other cool applications, with your data.
MrExcel.com provides examples of Visual Basic procedures for illustration only, without warranty either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. The Visual Basic procedures on this web site are provided "as is" and we do not guarantee that they can be used in all situations.
|