Convert Text to Formula

  • Thread starter Thread starter Mjones14
  • Start date Start date
M

Mjones14

I have a cell with the text = sum(A10:A30) as the result of a formula. This
is because it is constructed by other formulae using values given by the user.

How do I evaluate this text as if it were a formula?
 
Hi,

Post the formula that gave you this string as an output and it should be
possible to modify it it get the result you want.

Mike
 
Should calculate and display the sum. Try formatting the cell to General and
edit (F2) and enter.
 
You'll need a user defined function.

Option Explicit
Function Eval(myStr As String) As Variant
Application.Volatile True
Eval = Application.Caller.Parent.Evaluate(myStr)
End Function


If you're new to macros:

Debra Dalgleish has some notes how to implement macros here:
http://www.contextures.com/xlvba01.html

David McRitchie has an intro to macros:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Ron de Bruin's intro to macros:
http://www.rondebruin.nl/code.htm

(General, Regular and Standard modules all describe the same thing.)

Short course:

Open your workbook.
Hit alt-f11 to get to the VBE (where macros/UDF's live)
hit ctrl-R to view the project explorer
Find your workbook.
should look like: VBAProject (yourfilename.xls)

right click on the project name
Insert, then Module
You should see the code window pop up on the right hand side

Paste the code in there.

Now go back to excel.
Into a test cell and type:
=eval(a1)
 
Do you want to replace the original formula and convert the TEXT formula to
a working formula?

If so:

Select the cell(s) of interest
Goto Edit>Copy
Then, Edit>Paste Special>Values>OK

Then, Edit>Replace
Find what: =
Replace with: =
Replace all
 
Back
Top