I'm trying to copy text-formatted cells containing formulas from a "template" sheet to another sheet where the formulas will be calculated.
I'm storing the formulas as text because I've been unable to stop Excel 2010 from corrupting the formulas (it seems to replace some of the formulas with "#Name" text). Changing the cells to text formatting fixes this.
Due to the large number of cells I'm copying and that I want to retain formatting from the template sheet, I'm using Range.copy to copy the formulas.
I've seen and tried a technique that uses TextToColumns after the copy operation, and this seems to work. I'm hoping for a "prettier" solution.
I understand that using the Evaluate macro may help with this, but I'm concerned about speed of operation during the COPY phase as well as the during the calculation.
Thanks for reading.
I'm storing the formulas as text because I've been unable to stop Excel 2010 from corrupting the formulas (it seems to replace some of the formulas with "#Name" text). Changing the cells to text formatting fixes this.
Due to the large number of cells I'm copying and that I want to retain formatting from the template sheet, I'm using Range.copy to copy the formulas.
I've seen and tried a technique that uses TextToColumns after the copy operation, and this seems to work. I'm hoping for a "prettier" solution.
I understand that using the Evaluate macro may help with this, but I'm concerned about speed of operation during the COPY phase as well as the during the calculation.
Thanks for reading.