Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Suppose I have text in cell A3 such as "2+1/4". I want Excel 2003 to evaluate
that as a formula and put the resulting value - namely 2.25 - in another cell. Can it do this? I have a vague memory, perhaps of another spread sheet, that one could say =EVAL(A3), but Excel doesn't seem to have the capability. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Peter
The Evaluate function is not available directly within a worksheet. You can get around this by creating a named formula. InsertNameDefine Name Eval Refers to =Evaluate($A1) Enter your 2+1/4 in cell A1 and in B1 enter =EVAL and you will see the result 2.25 The name doesn't have to be Eval, it can be anything. The reference column can be any column, but be sure to use the $ sign to make the column absolute Then the formula =Eval entered into any column on your sheet will Evaluate the contents of that same row in whichever you have set to be the Reference column. -- Regards Roger Govier "Peter Facey" wrote in message ... Suppose I have text in cell A3 such as "2+1/4". I want Excel 2003 to evaluate that as a formula and put the resulting value - namely 2.25 - in another cell. Can it do this? I have a vague memory, perhaps of another spread sheet, that one could say =EVAL(A3), but Excel doesn't seem to have the capability. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perhaps you had a UDF in the past.
Function EvalCell(RefCell As String) Application.Volatile EvalCell = Evaluate(RefCell) End Function =EvalCell(A1) with 2+1/4 in A1 returns 2.25 Gord Dibben MS Excel MVP On Thu, 31 Jan 2008 02:24:01 -0800, Peter Facey wrote: Suppose I have text in cell A3 such as "2+1/4". I want Excel 2003 to evaluate that as a formula and put the resulting value - namely 2.25 - in another cell. Can it do this? I have a vague memory, perhaps of another spread sheet, that one could say =EVAL(A3), but Excel doesn't seem to have the capability. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
evaluating text of cells | Excel Discussion (Misc queries) | |||
Lookup formula not evaluating correctly | Excel Discussion (Misc queries) | |||
evaluating text cell contents | Excel Discussion (Misc queries) | |||
If formula evaluating 2 cells contents | Excel Worksheet Functions | |||
Evaluating similarity of text strings | Excel Worksheet Functions |