Hey all,
Seems easy but I can't quite get it all together. I'm looking for a way to have this vba used in row J only if there is text in row B.
Sub Test1()
If (Range("I6").Value = Range("I2").Value Then
Range("J6").Value = "Y"
End If
End Sub
Basically having 2 cells (I6 and I2) checked if they are the same and returning a Y (to J6) if they are equal.
I6 and J6 move down as it goes but I2 will always stay the same.
Any thoughts?
Seems easy but I can't quite get it all together. I'm looking for a way to have this vba used in row J only if there is text in row B.
Sub Test1()
If (Range("I6").Value = Range("I2").Value Then
Range("J6").Value = "Y"
End If
End Sub
Basically having 2 cells (I6 and I2) checked if they are the same and returning a Y (to J6) if they are equal.
I6 and J6 move down as it goes but I2 will always stay the same.
Any thoughts?