In a macro, I am trying to enter a formula into a cell and this is the code I am using:
Cells(11, 10).Formula = "=LEFT(I11,(FIND(" ",I11,1)-1))"
The problem is, excel is trying to enter "=LEFT(I11,(FIND(" as the formula's text instead of the entire formula of =LEFT(I11,(FIND(" ",I11,1)-1))...