Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 52
Default Find a match and display a message

I am just delving into Excel other than the basics and I am trying to find a
way to search a row and if the variable is found I want to return to another
cell a message like "Value Found" or something like that. Not sure which
Function to use.. Any ideas?

Thank you
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 221
Default Find a match and display a message

=if(a1="mmm....doughnuts","found","not found")
*******************
~Anne Troy

www.OfficeArticles.com


"Woody" wrote in message
...
I am just delving into Excel other than the basics and I am trying to find

a
way to search a row and if the variable is found I want to return to

another
cell a message like "Value Found" or something like that. Not sure which
Function to use.. Any ideas?

Thank you



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 52
Default Find a match and display a message

Ok that works thanks.. Is it possiable to have multiple IF's on the same line?
Where if the value I put in is A or B or C or D it returns the value?

example:
=if(a1="A;B;C;D","found","not found")

"Anne Troy" wrote:

=if(a1="mmm....doughnuts","found","not found")
*******************
~Anne Troy

www.OfficeArticles.com


"Woody" wrote in message
...
I am just delving into Excel other than the basics and I am trying to find

a
way to search a row and if the variable is found I want to return to

another
cell a message like "Value Found" or something like that. Not sure which
Function to use.. Any ideas?

Thank you




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 364
Default Find a match and display a message

maybe this is what you're looking for

=IF(OR(A1="a",A1="b",A1="c",A1="d"),"found","not found")

--


Gary


"Woody" wrote in message
...
Ok that works thanks.. Is it possiable to have multiple IF's on the same
line?
Where if the value I put in is A or B or C or D it returns the value?

example:
=if(a1="A;B;C;D","found","not found")

"Anne Troy" wrote:

=if(a1="mmm....doughnuts","found","not found")
*******************
~Anne Troy

www.OfficeArticles.com


"Woody" wrote in message
...
I am just delving into Excel other than the basics and I am trying to
find

a
way to search a row and if the variable is found I want to return to

another
cell a message like "Value Found" or something like that. Not sure
which
Function to use.. Any ideas?

Thank you






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 52
Default Find a match and display a message

Oh nice thanks.. I would need to do this for 80 variables. Is there a better
way to have it look at a whole Row?

"Gary Keramidas" wrote:

maybe this is what you're looking for

=IF(OR(A1="a",A1="b",A1="c",A1="d"),"found","not found")

--


Gary


"Woody" wrote in message
...
Ok that works thanks.. Is it possiable to have multiple IF's on the same
line?
Where if the value I put in is A or B or C or D it returns the value?

example:
=if(a1="A;B;C;D","found","not found")

"Anne Troy" wrote:

=if(a1="mmm....doughnuts","found","not found")
*******************
~Anne Troy

www.OfficeArticles.com


"Woody" wrote in message
...
I am just delving into Excel other than the basics and I am trying to
find
a
way to search a row and if the variable is found I want to return to
another
cell a message like "Value Found" or something like that. Not sure
which
Function to use.. Any ideas?

Thank you








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 364
Default Find a match and display a message

how about posting an example of what you have and what you would like?

--


Gary


"Woody" wrote in message
...
Oh nice thanks.. I would need to do this for 80 variables. Is there a
better
way to have it look at a whole Row?

"Gary Keramidas" wrote:

maybe this is what you're looking for

=IF(OR(A1="a",A1="b",A1="c",A1="d"),"found","not found")

--


Gary


"Woody" wrote in message
...
Ok that works thanks.. Is it possiable to have multiple IF's on the
same
line?
Where if the value I put in is A or B or C or D it returns the value?

example:
=if(a1="A;B;C;D","found","not found")

"Anne Troy" wrote:

=if(a1="mmm....doughnuts","found","not found")
*******************
~Anne Troy

www.OfficeArticles.com


"Woody" wrote in message
...
I am just delving into Excel other than the basics and I am trying
to
find
a
way to search a row and if the variable is found I want to return to
another
cell a message like "Value Found" or something like that. Not sure
which
Function to use.. Any ideas?

Thank you








  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Find a match and display a message

If you have 80 things to look through, I'd insert a new worksheet and put those
80 terms in A1:A80.

Then I could use:

=if(isnumber(match(a1,sheet2!a:a,0)),"Found","not found")


Woody wrote:

Oh nice thanks.. I would need to do this for 80 variables. Is there a better
way to have it look at a whole Row?

"Gary Keramidas" wrote:

maybe this is what you're looking for

=IF(OR(A1="a",A1="b",A1="c",A1="d"),"found","not found")

--


Gary


"Woody" wrote in message
...
Ok that works thanks.. Is it possiable to have multiple IF's on the same
line?
Where if the value I put in is A or B or C or D it returns the value?

example:
=if(a1="A;B;C;D","found","not found")

"Anne Troy" wrote:

=if(a1="mmm....doughnuts","found","not found")
*******************
~Anne Troy

www.OfficeArticles.com


"Woody" wrote in message
...
I am just delving into Excel other than the basics and I am trying to
find
a
way to search a row and if the variable is found I want to return to
another
cell a message like "Value Found" or something like that. Not sure
which
Function to use.. Any ideas?

Thank you







--

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
Find Exact Match using INDEX, MATCH DoubleUU Excel Worksheet Functions 3 August 15th 08 02:42 PM
Cross match data in Col A v/s Col B and display match in Col 3 aquaflow Excel Discussion (Misc queries) 3 July 10th 08 05:07 PM
Display a message Ridhi Excel Worksheet Functions 4 June 3rd 08 02:43 PM
How do I display more than one match in a Index/Match formula? Trish Excel Worksheet Functions 0 September 26th 05 10:21 PM
How to display a message box Salman[_2_] Excel Programming 1 November 5th 03 05:01 PM


All times are GMT +1. The time now is 05:16 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"