Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
SteveC
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
Toppers
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
SteveC
 
Posts: n/a
Default Using Concatentate in Formula

Sweet. Thanks. Never seen that EVAL function before....

  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Using Concatentate in Formula

=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   Report Post  
Posted to microsoft.public.excel.misc
SteveC
 
Posts: n/a
Default Using Concatentate in Formula

thanks Dave... Maybe "EVAL" is native to Excel 2003? it's what I'm using...



  #6   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
SteveC
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
SteveC
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
Peo Sjoblom
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
MyVeryOwnSelf
 
Posts: n/a
Default Using Concatentate in Formula

=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   Report Post  
Posted to microsoft.public.excel.misc
Peo Sjoblom
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
SteveC
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
SteveC
 
Posts: n/a
Default Using Concatentate in Formula

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   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default Using Concatentate in Formula

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
2 Nesting questions Starchaser Excel Worksheet Functions 7 January 20th 06 06:53 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Creating a check mark box MarthaSue Setting up and Configuration of Excel 18 April 28th 05 12:31 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


All times are GMT +1. The time now is 10:55 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"