irisqueiroz
Member
Hi!
I'm trying to locate where is the word "ALUGUEL" in column C, and if it finds then write "abc" in column D (same line where "ALUGUEL" is)
For i = 1 To LstRow
If Cells(i, 3).Value = "ALUGUEL" Then
ActiveCell.Offset(0, 1) = "abc"
End If
Next
Could anyone help me?
Thanks!
I'm trying to locate where is the word "ALUGUEL" in column C, and if it finds then write "abc" in column D (same line where "ALUGUEL" is)
For i = 1 To LstRow
If Cells(i, 3).Value = "ALUGUEL" Then
ActiveCell.Offset(0, 1) = "abc"
End If
Next
Could anyone help me?
Thanks!