I have an Excel file that is networked as a read-only application. The users utilize the worksheet to perform some calculations, then on close the workbook is coded not to save any changes. However, I would like to have a counterthat tells me how many times this Excel app is opened. It would be ideal if I could get a daily summary of how many times the file is opened. I have tried a simple counter that saves the file before the user can change anything. This results in an unacceptable lag time, as one waits for the networked file to be saved. Also, I'm not sure that this code would work if the file is opened as read only.
[G27] = [G27] + 1
ActiveWorkbook.Save
Any help on this would be appreciated. Thank you.
John
[G27] = [G27] + 1
ActiveWorkbook.Save
Any help on this would be appreciated. Thank you.
John