Count Number of Times worksheet has been Open

Peterleee

Board Regular
Joined
Jun 3, 2003
Messages
114
is there any way to programatically add 1 to a counter whenever a worksheet/ workbook is open? and explain the process

thanks
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
For workbook OPENS:


Code placed in ThisWorkbook module

Code:
Private Sub Workbook_Open()
 Sheets("sheet1").Range("a1") = Sheets("sheet1").Range("a1") + 1
End Sub


For worksheet ACTIVATES:

code placed in the Sheet module

Code:
Private Sub Worksheet_Activate()
 me.Range("a1") = me.Range("a1") + 1
End Sub

HTH
 
Upvote 0
Hello Peterleee,

Plase the number into the specific cell, and add number when workbook is opened with useing Workbook_Open Event.

Code:
'Place this in the ThisWorkbook module
Private Sub Workbook_Open()
	Sheets("Sheet1").Range("A1").Value = Sheets("Sheet1").Range("A1").Value + 1
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,259
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top