ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Convert Text to Formula (https://www.excelbanter.com/excel-worksheet-functions/235915-convert-text-formula.html)

Mjones14

Convert Text to Formula
 
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?

Mike H

Convert Text to 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

"Mjones14" wrote:

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?


Jacob Skaria

Convert Text to Formula
 
Should calculate and display the sum. Try formatting the cell to General and
edit (F2) and enter.

--
If this post helps click Yes
---------------
Jacob Skaria


"Mjones14" wrote:

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?


Dave Peterson

Convert Text to Formula
 
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 he
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)




Mjones14 wrote:

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?


--

Dave Peterson

T. Valko

Convert Text to Formula
 
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 EditCopy
Then, EditPaste SpecialValuesOK

Then, EditReplace
Find what: =
Replace with: =
Replace all

--
Biff
Microsoft Excel MVP


"Mjones14" wrote in message
...
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?





All times are GMT +1. The time now is 08:58 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com