I would like to put a Date Stamp in G:G IF A:A or B:B = 1
Bellow is what I have so far.... Thank You greatly in advance...
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Cell As Range
For Each Cell In Target
With Cell
If .Column = Range("A:a").Column Then
Cells(.Row, "F").Value = Int(Now)
End If
End With
Next Cell
End Sub
Bellow is what I have so far.... Thank You greatly in advance...
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Cell As Range
For Each Cell In Target
With Cell
If .Column = Range("A:a").Column Then
Cells(.Row, "F").Value = Int(Now)
End If
End With
Next Cell
End Sub