When column M contains "GALV" (any row in a file), I need to add "GALV" to the end of the value in column K (same row)
why isnt my code below working? any help is appreciated. Test excel file also attached
why isnt my code below working? any help is appreciated. Test excel file also attached
VBA Code:
Sub Galvanized()
Dim lr4 As Long
Set rng2 = Range("A1").CurrentRegion
lr4 = rng2.Cells(Rows.Count, "K").End(3).Row
For i = lr4 To 2 Step -1
If rng2.Cells(i, 13) Like "*GALV*" Then
rng2.Cells(i, 11).Value = rng2.Cels(i, 11).Value & " GALV"
End If
Next i
End Sub