Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to automatically add one number to an existing number each time
I open that document. (i.e. 5329 to 5330) in the same cell. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Create a procedure named Auto_Open.
Sub Auto_Open() With ThisWorkbook.Worksheets("Sheet1").Range("A1") .Value = .Value + 1 ' note leading periods End With End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "Susan" wrote in message ... I would like to automatically add one number to an existing number each time I open that document. (i.e. 5329 to 5330) in the same cell. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to format existing entry on a cell | Excel Discussion (Misc queries) | |||
download existing spreadsheets into another existing spreadsheet | Excel Discussion (Misc queries) | |||
Leave existing data in a cell alone | Excel Worksheet Functions | |||
Use VBA to add to existing number in cell | Excel Discussion (Misc queries) | |||
How do I find out how many different cell formats an existing wor. | Excel Discussion (Misc queries) |