Hi guys,
Just writing a script for testing "J" columns value.
If it's >= 200, then "AV" column show "passed"
But seems like below doesn't work.
Thanks for your help in advance.
Just writing a script for testing "J" columns value.
If it's >= 200, then "AV" column show "passed"
But seems like below doesn't work.
Thanks for your help in advance.
Code:
Sub a()
Dim i As Long
For i = 1 To Rows.Count
If Cells(i, "J").Value >= 200 Then
Cells(i, "AV").Value = "passed"
End If
Next i
End Sub
()