• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to auto update time after any change

Hi Sanjeev,

Where you need to update the date and time if any changes made, do you want to track the changes if made in any of the sheet or only a particular sheet? Brief the requirement.

Regards
Abdul Matheen
 
I want to t Track the changes made in any of the sheet and the time update should be on first sheet.
Hi Sanjeev,

Where you need to update the date and time if any changes made, do you want to track the changes if made in any of the sheet or only a particular sheet? Brief the requirement.

Regards
Abdul Matheen
 
Hope! you are looking something like this.

Paste it in worksheet module from where you want to detect changes.

Code:
Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
If Target <> "" Then Sheet1.[B4] = Now
End Sub
 
Back
Top