MoreFunc EVAL question

Excelsior2010

New Member
Joined
Dec 4, 2010
Messages
2
I recently downloaded Morefunc for excel and have been playing around with some of the functions. Truth be told I downloaded morefunc for its EVAL function which, from what I understand can accomplish the following:

In A1:A3 (for instance)
a1 = 3
a2 = +
a3 = 5

=evaluate(a1&a2&a3)

And the result should be 8.

In any case, I was looking up documentation for morefunc, where I found this great page that explain and gives examples to all the functions*:

http://xcell05.free.fr/morefunc/english/#Functions

*All the functions EXCEPT for EVAL...
:oops: which gives a page not found error when you click on it. :(

So, is there anybody that can give an example on how EVAL works?

Any help would be highly appreciated :)

P.S: it it helps I'm using Excel 2007 on a 32bit Windows Vista Home Premium.



 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
By the function name,

=Eval(a1&a2&a3)

Or you could use a UDF:
Code:
Function Eval(sInp As String)
    Eval = Evaluate(sInp)
End Function
 
Upvote 0
I recently downloaded Morefunc for excel and have been playing around with some of the functions. Truth be told I downloaded morefunc for its EVAL function which, from what I understand can accomplish the following:

In A1:A3 (for instance)
a1 = 3
a2 = +
a3 = 5

=evaluate(a1&a2&a3)

And the result should be 8.

In any case, I was looking up documentation for morefunc, where I found this great page that explain and gives examples to all the functions*:

http://xcell05.free.fr/morefunc/english/#Functions

*All the functions EXCEPT for EVAL... :oops: which gives a page not found error when you click on it. :(

So, is there anybody that can give an example on how EVAL works?

Any help would be highly appreciated :)

P.S: it it helps I'm using Excel 2007 on a 32bit Windows Vista Home Premium.

Try...

=EVAL(A1&A2&A3)

http://download.cnet.com/Morefunc/3000-2077_4-10423159.html
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,698
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top