Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Within microsoft excel, I need to show a counter that will increase everytime
that file is opened. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The following will put a counter in Sheet1 cell A1. Paste the macro in
Workbook code: Private Sub Workbook_Open() Set r = Sheets("Sheet1").Range("A1") r.Value = r.Value + 1 End Sub -- Gary''s Student gsnu200710 "nipper" wrote: Within microsoft excel, I need to show a counter that will increase everytime that file is opened. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i increase invoice number everytime its opened? | Excel Discussion (Misc queries) | |||
increasing a value everytime excel is opened? | Excel Worksheet Functions | |||
how can I make a form number change everytime the form is opened | Excel Worksheet Functions | |||
Link not updated everytime spreadsheet opened | Excel Worksheet Functions | |||
A new sequence number in file everytime it is opened | Excel Worksheet Functions |