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...