Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can Excel count the number of times a file has been opened and place
the count in cell A1? I thought I had a solution when someone suggested the following response, but I couldn't get it to execute. Does anyone else have any suggestions? Thanks. Michael You could use a Workbook_Open event thus Private Sub Workbook_Open() Worksheets("Tracker").Range("A1").Value = _ Worksheets("Tracker").Range("A1").Value + 1 End Sub This put the value in A1 on a sheet called tracker, remember users have a habit of changing or deleting stuff, so you may want to hide the worksheet. To implement, right click on the small Excel icon for the workbook and select view code. Paste the code here, save and close |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count numbers of times workbook opened | Excel Programming | |||
I need to be able to count the no. of times a sprdsheet is opened | Excel Discussion (Misc queries) | |||
A macro that counts the number of times a file is opened | Excel Discussion (Misc queries) | |||
times of opened | Excel Programming | |||
stop excel file opened as read only if already opened by another u | Excel Programming |