Date & Time stamping using 'change' event

Mr. Walnuts

Board Regular
Joined
Aug 8, 2005
Messages
176
Im using the 'Change' event to time/date stamp a spreadsheet. However, the sheet is bogging down a bit because I think the second or two after it stamps the NOW() value in the cell once something is changed, the sheet begins "calculating" for about 1 second.

Is this because the NOW() function produces date & time with hours, minutes, and seconds? Is there a way to return NOW() without the seconds?

Here's the Procedure as is..

Private Sub Worksheet_change(ByVal target As Excel.Range)
With Sheets("Status").Range("D3")
.Value = Now()
End With
End Sub

It almost seems like the date/time stamp is actually triggering the 'change' event.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
It almost seems like the date/time stamp is actually triggering the 'change' event.

It is :)

Try

Code:
Private Sub Worksheet_Change(ByVal target As Excel.Range)
Application.EnableEvents = False
With Sheets("Status").Range("D3")
    .Value = Now()
End With
Application.EnableEvents = True
End Sub
 
Upvote 0
It almost seems like the date/time stamp is actually triggering the 'change' event.

It is!

Code:
Private Sub Worksheet_change(ByVal target As Excel.Range)
application.enableevents=false
With Sheets("Status").Range("D3")
.Value = Now()
End With
application.enableevents=true
End Sub
 
Upvote 0

Forum statistics

Threads
1,203,326
Messages
6,054,744
Members
444,748
Latest member
knowak87

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