I am trying to fill cell F2 with the following formula =LEFT(F1,FIND("-",F1)-2))
I tried using Range("F2").Formula = "=LEFT(F1,FIND("-",F1)-2))"
but get an error and from reading around see I'm supposed to use InStr
instead of FIND in VBA, but as it's not as simple as a direct replacement I can't get it to work. Can someone please walk me through what I'm supposed to do here?!