Hi, I'm trying to get more than one cell to display a text string but it ends up getting caught into an infinite loop i think. I don't know how else to write this. Any suggestions/alternate methods are greatly appreciated.
Private Sub worksheet_change(ByVal target As Range)
Dim cell As Range
For Each cell In Range
With cell
If Cells(.Row, "C") > 0 Then
Cells(.Row, "B") = Int(Now)
Cells(.Row, "A") = "Completed"
Else
Cells(.Row, "B") = Null
End If
End With
Next cell
End Sub
Private Sub worksheet_change(ByVal target As Range)
Dim cell As Range
For Each cell In Range
With cell
If Cells(.Row, "C") > 0 Then
Cells(.Row, "B") = Int(Now)
Cells(.Row, "A") = "Completed"
Else
Cells(.Row, "B") = Null
End If
End With
Next cell
End Sub