I am trying to add a formula to a cell. The macro is adding quotations around the cell range, which causes the cell to return the #name error.
This is the code in th
You cannot mix RC and A1 style references in the same formula. Pick one and stick to it.
"=VLOOKUP(RC[-2],Contracts!R7C1:R30C4,3,FALSE)"
will work