R
Rodney
Hi guys,
I have got the following code which looks for a specific value in column A
(1), then i want it to change the value in column G (7) to another value. For
some reason this doesn't seem to be happening with the following code. Any
thoughts?
For i = 1 To Rows.Count
If Cells(i, 1).Value = "Value1" Then
Cells(i, 7).Value = "Value 2"
End If
Cheers,
Rod
I have got the following code which looks for a specific value in column A
(1), then i want it to change the value in column G (7) to another value. For
some reason this doesn't seem to be happening with the following code. Any
thoughts?
For i = 1 To Rows.Count
If Cells(i, 1).Value = "Value1" Then
Cells(i, 7).Value = "Value 2"
End If
Cheers,
Rod