I am pretty new to vba and I don't get why these two statement don't return the same result:
If myValue > 400 Then Range("F" & i).Value = myValue + 10If myValue > 400 Then myValue = myValue + 10
actually, the first now does its job very well that is to add 10 to the value in Range "F" but the second one just shows it adds 10 to myvalue in "Locals" Window but not in the Range F. There is no error whatsoever picked by VBA! Thank you for your advice
Fi?