Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Col A Col B Col C
0.51 <.50 No Col A contains a formula that returns a value. Col B is data hard coded. (I juse this to help with advanced filter) Col C --- trying to get a formula that would return a logic test... If A is less than the value shown in B, then Yes, otherwise No. I'd like to use conacatentate to incorporate the hard coded value in Col B, because I use this Col as a reference for filtering. Any ideas? Thanks... |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try:
=IF(EVAL(CONCATENATE(A1,B1)),"yes","no") "SteveC" wrote: Col A Col B Col C 0.51 <.50 No Col A contains a formula that returns a value. Col B is data hard coded. (I juse this to help with advanced filter) Col C --- trying to get a formula that would return a logic test... If A is less than the value shown in B, then Yes, otherwise No. I'd like to use conacatentate to incorporate the hard coded value in Col B, because I use this Col as a reference for filtering. Any ideas? Thanks... |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sweet. Thanks. Never seen that EVAL function before....
|
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=eval() isn't built into excel.
I'm guessing that Toppers has an addin that does this evaluation. One version of a UDF that does that evaluation: Option Explicit Function Eval(myStr As String) As Variant Eval = Application.Evaluate(myStr) End Function If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm SteveC wrote: Sweet. Thanks. Never seen that EVAL function before.... -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using...
|
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I use xl2003, too.
Can you find it in xl2003's help? If you type =eval( and click on the Fx button (to the left of the formula bar), what do you get? SteveC wrote: thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using... -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
A function argument box pops up with a single input field labeled "TheInput"
followed by the explanation: "Evaluates a string as though it was a formula. Returns an array from an array formula." But if I click on the "help on this function" hyperlink, there is no help box. "Dave Peterson" wrote: I use xl2003, too. Can you find it in xl2003's help? If you type =eval( and click on the Fx button (to the left of the formula bar), what do you get? SteveC wrote: thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using... -- Dave Peterson |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have Walkenbach's Power Utility Pack installed, but there's no listing of
EVAL in that... "Dave Peterson" wrote: I use xl2003, too. Can you find it in xl2003's help? If you type =eval( and click on the Fx button (to the left of the formula bar), what do you get? SteveC wrote: thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using... -- Dave Peterson |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It's part of Laurent Longre's Morefunc add-in
-- Regards, Peo Sjoblom Excel 95 - Excel 2007 Northwest Excel Solutions www.nwexcelsolutions.com "It is a good thing to follow the first law of holes; if you are in one stop digging." Lord Healey "SteveC" wrote in message ... A function argument box pops up with a single input field labeled "TheInput" followed by the explanation: "Evaluates a string as though it was a formula. Returns an array from an array formula." But if I click on the "help on this function" hyperlink, there is no help box. "Dave Peterson" wrote: I use xl2003, too. Can you find it in xl2003's help? If you type =eval( and click on the Fx button (to the left of the formula bar), what do you get? SteveC wrote: thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using... -- Dave Peterson |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe it's an undocumented feature <bg.
Or maybe it's in another addin??? SteveC wrote: I have Walkenbach's Power Utility Pack installed, but there's no listing of EVAL in that... "Dave Peterson" wrote: I use xl2003, too. Can you find it in xl2003's help? If you type =eval( and click on the Fx button (to the left of the formula bar), what do you get? SteveC wrote: thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using... -- Dave Peterson -- Dave Peterson |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(EVAL(CONCATENATE(A1,B1)),"yes","no")
Sweet. Thanks. Never seen that EVAL function before.... If I try using EVAL, Excel 2003 gives a #NAME? error report in the cell. I do have the Analysis Tool-pack add-in activated. |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It's part of an add-in called Morefunc by Laurent Longre
http://xcell05.free.fr/english/ it's extremely useful, more info here http://www.rhdatasolutions.com/morefunc/ -- Regards, Peo Sjoblom Excel 95 - Excel 2007 Northwest Excel Solutions www.nwexcelsolutions.com "It is a good thing to follow the first law of holes; if you are in one stop digging." Lord Healey "MyVeryOwnSelf" wrote in message ... =IF(EVAL(CONCATENATE(A1,B1)),"yes","no") Sweet. Thanks. Never seen that EVAL function before.... If I try using EVAL, Excel 2003 gives a #NAME? error report in the cell. I do have the Analysis Tool-pack add-in activated. |
#13
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dave,
turns out I had another addin that I forgot about called FastExcel. It seems like FastExcel has integrated a number of freely available functions. I haven't really used it much so I can't say much about it. After grandly announcing the completion of a spreadsheet model, I emailed the spreadsheet out to a few coworkers. However, the cells using EVAL did not work because EVAL was pointing to a nonexistant install of FastExcel on my coworker's c drives... Your advice on adding the UDF to the workbook fixes that problem... Really glad you provided that UDF... thanks... Do you know where I can get other UDF codes? Seems like using add-ins really is not a good solution when you are emailing files to others... "Dave Peterson" wrote: Maybe it's an undocumented feature <bg. Or maybe it's in another addin??? SteveC wrote: I have Walkenbach's Power Utility Pack installed, but there's no listing of EVAL in that... "Dave Peterson" wrote: I use xl2003, too. Can you find it in xl2003's help? If you type =eval( and click on the Fx button (to the left of the formula bar), what do you get? SteveC wrote: thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using... -- Dave Peterson -- Dave Peterson |
#14
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try adding the UDF that Dave Peterson mentioned to a module within the
workbook you are using... that fixed a similar problem I had... "MyVeryOwnSelf" wrote: =IF(EVAL(CONCATENATE(A1,B1)),"yes","no") Sweet. Thanks. Never seen that EVAL function before.... If I try using EVAL, Excel 2003 gives a #NAME? error report in the cell. I do have the Analysis Tool-pack add-in activated. |
#15
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
EVAL also is packaged with Laurent Longre's MOREFUNC
http://longre.free.fr/english/index.html Gord Dibben MS Excel MVP On Fri, 23 Jun 2006 16:45:01 -0700, SteveC wrote: Dave, turns out I had another addin that I forgot about called FastExcel. It seems like FastExcel has integrated a number of freely available functions. I haven't really used it much so I can't say much about it. After grandly announcing the completion of a spreadsheet model, I emailed the spreadsheet out to a few coworkers. However, the cells using EVAL did not work because EVAL was pointing to a nonexistant install of FastExcel on my coworker's c drives... Your advice on adding the UDF to the workbook fixes that problem... Really glad you provided that UDF... thanks... Do you know where I can get other UDF codes? Seems like using add-ins really is not a good solution when you are emailing files to others... "Dave Peterson" wrote: Maybe it's an undocumented feature <bg. Or maybe it's in another addin??? SteveC wrote: I have Walkenbach's Power Utility Pack installed, but there's no listing of EVAL in that... "Dave Peterson" wrote: I use xl2003, too. Can you find it in xl2003's help? If you type =eval( and click on the Fx button (to the left of the formula bar), what do you get? SteveC wrote: thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using... -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2 Nesting questions | Excel Worksheet Functions | |||
Match then lookup | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Creating a check mark box | Setting up and Configuration of Excel | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) |