Hi, sorry I'm having difficulties with this, solutions appreciated very much.
I'm trying to time stamp Column "L" and effected rows with current date time (24hour clock)
LastRow = Range("A" & Rows.Count).End(xlUp).Row
For i = LastRow To 2 Step -1
If Cells(i, 3).Value > 0 Then
Range(Cells(i, 13)) = NumberFormat "MMMDD hh:mm".Value = Now()
End If
Next i
Tks Graham
I'm trying to time stamp Column "L" and effected rows with current date time (24hour clock)
LastRow = Range("A" & Rows.Count).End(xlUp).Row
For i = LastRow To 2 Step -1
If Cells(i, 3).Value > 0 Then
Range(Cells(i, 13)) = NumberFormat "MMMDD hh:mm".Value = Now()
End If
Next i
Tks Graham