I need to limit the range the date code I got from an FAQ that places the current date in the neighboring cell. That code works fantastic, but it applies to the entire column. I only need it to apply itself to rows 3 through 45. Not sure what to manipulate to accomplish that. This is the code from the FAQ:
Thanks!
dylan
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Cell As Range
For Each Cell In Target
With Cell
If .Column = Range("G:G").Column Then
Cells(.Row, "F").Value = Int(Now)
End If
End With
Next Cell
End Sub
Thanks!
dylan