Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 69
Default FIND formula help needed

Excel 2000

The formula =IF((FIND("Overall",B2)),"Y","N") produces a Y if the word
Overall appears in column B, but instead of an N if it doesn't, a #VALUE!
appears. I've tried "", false and leaving it out - but the #VALUE! always
appears.

Any ideas?

CaroleO
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default FIND formula help needed

=IF(ISNUMBER(FIND("Overall",B2)),"Y","N")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Carole O" wrote in message
...
Excel 2000

The formula =IF((FIND("Overall",B2)),"Y","N") produces a Y if the word
Overall appears in column B, but instead of an N if it doesn't, a #VALUE!
appears. I've tried "", false and leaving it out - but the #VALUE! always
appears.

Any ideas?

CaroleO



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 171
Default FIND formula help needed

You can embed an ISERROR test within the IF:
=IF(ISERROR(FIND("Overall",B2)),"N","Y")

"Carole O" wrote:

Excel 2000

The formula =IF((FIND("Overall",B2)),"Y","N") produces a Y if the word
Overall appears in column B, but instead of an N if it doesn't, a #VALUE!
appears. I've tried "", false and leaving it out - but the #VALUE! always
appears.

Any ideas?

CaroleO

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 364
Default FIND formula help needed

"Carole O" wrote in message
...
Excel 2000

The formula =IF((FIND("Overall",B2)),"Y","N") produces a Y if the word
Overall appears in column B, but instead of an N if it doesn't, a #VALUE!
appears. I've tried "", false and leaving it out - but the #VALUE! always
appears.

Any ideas?

CaroleO


FIND("Overall",B2) returns a number (that is the position of "Overall" in
whatever text is in B2), not true/false. So what you need is:
=IF((ISNUMBER(FIND("Overall",B2))),"Y","N")


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,986
Default FIND formula help needed

You are using the wrong function for what you are trying to do. The FIND
function is to find a string within a string, not to search columns.

"Carole O" wrote:

Excel 2000

The formula =IF((FIND("Overall",B2)),"Y","N") produces a Y if the word
Overall appears in column B, but instead of an N if it doesn't, a #VALUE!
appears. I've tried "", false and leaving it out - but the #VALUE! always
appears.

Any ideas?

CaroleO



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 69
Default FIND formula help needed

Thank you all for responding so quickly. bpeltzer's solution worked like a
charm!

CaroleO

"JLGWhiz" wrote:

You are using the wrong function for what you are trying to do. The FIND
function is to find a string within a string, not to search columns.

"Carole O" wrote:

Excel 2000

The formula =IF((FIND("Overall",B2)),"Y","N") produces a Y if the word
Overall appears in column B, but instead of an N if it doesn't, a #VALUE!
appears. I've tried "", false and leaving it out - but the #VALUE! always
appears.

Any ideas?

CaroleO

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default FIND formula help needed

Where did she state that she searched columns?

--


Regards,


Peo Sjoblom


"JLGWhiz" wrote in message
...
You are using the wrong function for what you are trying to do. The FIND
function is to find a string within a string, not to search columns.

"Carole O" wrote:

Excel 2000

The formula =IF((FIND("Overall",B2)),"Y","N") produces a Y if the word
Overall appears in column B, but instead of an N if it doesn't, a #VALUE!
appears. I've tried "", false and leaving it out - but the #VALUE!
always
appears.

Any ideas?

CaroleO



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
Macro needed (like find) doral Excel Discussion (Misc queries) 2 August 23rd 07 02:02 PM
fomula needed to find the "new" time, for example if [email protected] Excel Discussion (Misc queries) 7 June 27th 06 12:24 AM
FIND and REPLACE characters needed Peter C New Users to Excel 2 February 10th 06 07:09 PM
FIND and REPLACE characters needed Peter C Excel Worksheet Functions 0 February 8th 06 09:14 PM
Code needed to find records from bottom up Andy Excel Discussion (Misc queries) 4 December 5th 05 03:27 AM


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

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

About Us

"It's about Microsoft Excel"