Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 93
Default I am trying to find a function for a list

I have one worksheet with two sheets. On the first sheet I have a list in
column Q. I want to check that row against column A in the second sheet. If
I find and exact match, I want to put "Checked" in column AA, if not I want
it to be blank. This is the formula that I've tried:

IF(COUNTIF('Prior Month'!$A$1:$A$100,Q5)"","Checked","")
--
DMM
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,934
Default I am trying to find a function for a list

Try this...

=IF(ISNUMBER(MATCH(A8,'Prior Month'!Q:Q,0)),"Checked","")

--
Rick (MVP - Excel)


"soconfused" wrote in message ...
I have one worksheet with two sheets. On the first sheet I have a list in
column Q. I want to check that row against column A in the second sheet. If
I find and exact match, I want to put "Checked" in column AA, if not I want
it to be blank. This is the formula that I've tried:

IF(COUNTIF('Prior Month'!$A$1:$A$100,Q5)"","Checked","")
--
DMM

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 747
Default I am trying to find a function for a list

try this

=IF(ISNA(MATCH(Q5,sheet2!$A$1:$A$100,0)),"","check ed")


On Dec 4, 12:22*am, soconfused
wrote:
I have one worksheet with two sheets. *On the first sheet I have a list in
column Q. *I want to check that row against column A in the second sheet. *If
I find and exact match, I want to put "Checked" in column AA, if not I want
it to be blank. *This is the formula that I've tried:

IF(COUNTIF('Prior Month'!$A$1:$A$100,Q5)"","Checked","")
--
DMM


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default I am trying to find a function for a list

This should work:
=IF(COUNTIF('Prior Month'!$A$1:$A$100,Q5)0,"Checked","")

(but it's not a case sensitive check)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:365 Subscribers:65
xdemechanik
---
"soconfused" wrote:
I have one worksheet with two sheets. On the first sheet I have a list in
column Q. I want to check that row against column A in the second sheet. If
I find an exact match, I want to put "Checked" in column AA, if not I want
it to be blank. This is the formula that I've tried:

IF(COUNTIF('Prior Month'!$A$1:$A$100,Q5)"","Checked","")
--
DMM

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default I am trying to find a function for a list

Hi soconfused, you were soclose

=IF(COUNTIF('Prior Month'!$A$1:$A$100,Q5)0,"Checked","")

Mike

"soconfused" wrote:

I have one worksheet with two sheets. On the first sheet I have a list in
column Q. I want to check that row against column A in the second sheet. If
I find and exact match, I want to put "Checked" in column AA, if not I want
it to be blank. This is the formula that I've tried:

IF(COUNTIF('Prior Month'!$A$1:$A$100,Q5)"","Checked","")
--
DMM



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 93
Default I am trying to find a function for a list

Thank you all for contributions. Muddan, yours was the one that was
successful.

--
DMM


"muddan madhu" wrote:

try this

=IF(ISNA(MATCH(Q5,sheet2!$A$1:$A$100,0)),"","check ed")


On Dec 4, 12:22 am, soconfused
wrote:
I have one worksheet with two sheets. On the first sheet I have a list in
column Q. I want to check that row against column A in the second sheet. If
I find and exact match, I want to put "Checked" in column AA, if not I want
it to be blank. This is the formula that I've tried:

IF(COUNTIF('Prior Month'!$A$1:$A$100,Q5)"","Checked","")
--
DMM



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default I am trying to find a function for a list

Actually, all 3 other options should have worked just as well. Rick's
ISNUMBER(MATCH(..)) option is identical (conversely) to Muddan's
ISNA(MATCH(..)), it just needs some tweaking on the lookup/col references.
The COUNTIF option was tested ok here before posting it to you.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:365 Subscribers:65
xdemechanik
---
"soconfused" wrote in message
...
Thank you all for contributions. Muddan, yours was the one that was
successful.

--
DMM



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 in list function jrup New Users to Excel 2 August 23rd 05 12:16 AM
Can VLookup function find and list multiple records? Rich - SG Excel Worksheet Functions 11 July 5th 05 07:44 PM
how to use the Prob function in a list of averages to find the le josephWard6 Excel Worksheet Functions 2 June 19th 05 11:14 PM
i need a function to find the highest value in a list Melani Excel Worksheet Functions 2 April 14th 05 07:00 PM
how do i create a find function for an excel drop list? RC Excel Discussion (Misc queries) 3 March 18th 05 03:09 PM


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