vote up 0 vote down star

How do I replace the formula in a cell with the output of the formula?

I simply need "=RIGHT(E86,LEN(E86)+1-FIND("(",E86,1))" to become "(e)"

Is there a way to do this to the whole sheet? Replace all the cells with formulas with the text they are displaying? I am using version 2003.

flag

3 Answers

vote up 8 vote down

Select the cells you want to replace and copy them. Then go to "Edit->Paste Special" and select values instead of all.

Since this doesn't change non-formula cells, you could select the entire sheet and copy->paste special to remove all formulas.

To do it programatically, look at Steve's answer. He's got the code you'll need.

link|flag
Thank you, I knew there was a simple way to do it. This is what happens when you are unemployed for too long. You start to forget simple things you used for work. – Liam Shaw Jul 10 at 16:54
vote up 2 vote down

Alternatively something like the following will work if you want to avoid using the clipboard


Dim r as range
For each r in Worksheets("Sheet1").UsedRange.Cells
   r.Value = r.Value
Next

I haven't excel to hand I'm afraid so you'll need to check the syntax.

link|flag
I just checked using Excel and that is exactly correct except for capitalization, which it will fix automatically. – Cypher2100 Jul 12 at 14:39
vote up 1 vote down

Another way to do it: double-click the cell in question and press F9.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.