Ruts
New Member
- Joined
- Sep 13, 2008
- Messages
- 27
Ok I am trying to write a result into a range of cells as I think this is more efficient than writing the formula and having it recalc all the time.
The current code is below:
How do I write this more efficiently so that the active cell only has the result written to it instead of the formula ?
Currently this formula is written in up to 60,000 cells - makes for a slow process time.
The current code is below:
Code:
ActiveCell.FormulaR1C1 = _
"=IF(ISERROR(VLOOKUP(RC[-1],C11:C12,2,FALSE)),""Not Found"",VLOOKUP(RC[-1],C11:C12,2,FALSE))"
How do I write this more efficiently so that the active cell only has the result written to it instead of the formula ?
Currently this formula is written in up to 60,000 cells - makes for a slow process time.