Mr Jukebox
New Member
- Joined
- Sep 25, 2008
- Messages
- 36
What i would like to do is if any cell in C5:H10 is modified i want the date and time to be placed in column B. Currently this is what i have
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("C5:H105")) Is Nothing Then Exit Sub ' C1:C100 is the price range
Target.Offset(0, -1).Value = Now() ' This will put the current date 6 columns over
End Sub
This works but will put the date and time of the change 1 cell to the left is there a way to get this information directed to only column B?
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("C5:H105")) Is Nothing Then Exit Sub ' C1:C100 is the price range
Target.Offset(0, -1).Value = Now() ' This will put the current date 6 columns over
End Sub
This works but will put the date and time of the change 1 cell to the left is there a way to get this information directed to only column B?