Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rgnMine as Range
Set rngMine = Application.Intersect(Target, Range("A1"))
If Not rngMine is Nothing Then YouMacro
End Sub
[code]
Hope this helps :-)
Skip,
Skip@TheOfficeExperts.com
[URL unfurl="true"]www.TheOfficeExperts.com[/URL]
Option Explicit
Dim TimeStamp As Range
Private Sub Worksheet_Change(ByVal Target As Range)
Cells(TimeStamp.Row, TimeStamp.Column + 1) = Format(Now, "hh:mm")
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Set TimeStamp = Target
End Sub