#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,344
Default INDEX? MATCH?

Hi,

Let's go back to Mike formula and give him credit, he just wrote it wrong:

Instead of

=IF(COUNTIF(Sheet1!$A$1:$A$50,A1)1,"Yes","No")

It should have been

=IF(COUNTIF(Sheet1!$A$1:$A$50,A1)=1,"Yes","No")

but this could be shortened as follows:

=IF(COUNTIF(Sheet1!C:C,A1),"Yes","No")

or if an answer of 0 or FALSE is ok, where false means it wasn't found and 0
means it was:

=IF(COUNTIF(Sheet1!C:C,A1),)

or if you use the version below if 0 appears it was not found, otherwise it
was:

=COUNTIF(Sheet1!C:C,A1)

Cheers,
Shane
--


"Connie Martin" wrote:

This is a simple formula, I know, and I wish the formula wizard was simple,
too!! Can't get it, so I need someone's help.

In cell C1 in Sheet2 I need a formula that will look at the numbers in Col.
A in the same worksheet and see if the number is in Col. C of Sheet1, and
return "Yes" if it is, and "No" if it isn't. Simple enough, I think. Thank
you. Connie

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
index(match) Wind Uplift Calculations (match four conditions) JMeier Excel Worksheet Functions 8 August 1st 08 01:45 AM
index match array function-returning only first match, need last. Julie Olsen Excel Worksheet Functions 3 December 29th 06 12:50 AM
How do I display more than one match in a Index/Match formula? Trish Excel Worksheet Functions 0 September 26th 05 10:21 PM
index,match,match on un-sorted data Brisbane Rob Excel Worksheet Functions 3 September 24th 05 10:04 PM


All times are GMT +1. The time now is 05:25 PM.

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"