Function to Identify the Modification of a Worksheet

P

Penny

I would like to add a function to a worksheet that would identify "last
modification date" of a specific range.
 
V

Vasant Nanavati

You would need a macro to be placed in the code module of the worksheet
containing the range. Something like:

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C1:D10")) Is Nothing Then Range("A1") =
Date
End Sub
___________________________________________________________________________
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top