Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 170
Default Lookup, vlookup, find, or what

Thanks in advance. Xcel07 on WinXP.

I have a list of names in sheet 4, I need to search sheet 1, 2 and 3 to see
if each name on sheet4 is located on any of the other 3 sheets. Here are a
couple of my attempts so far
=LOOKUP(C3,'Friday 930am:Monday 1130am'!C2:C25)
=SUMPRODUCT(C2*'Friday 930am:Monday 1130am'!C2:C25)

To clarify the above
Sheet 1 is named Friday 930am
Sheet 2 is anmed Friday 12:30pm
Sheet 3 is named Monday 1130am


Any suggestions are welcome
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 457
Default Lookup, vlookup, find, or what

You can't do that type of 3D referencing. Need to individually look through
each sheet
=ISNUMBER(MATCH(C2,'Friday 930am'!C2:C25))+
ISNUMBER(MATCH(C2,'Friday 12:30pm'!C2:C25))+
ISNUMBER(MATCH('Monday 1130am'!C2:C25))

Anything greater than 0 indicates a match was found.



--
Best Regards,

Luke M
"JR Hester" wrote in message
...
Thanks in advance. Xcel07 on WinXP.

I have a list of names in sheet 4, I need to search sheet 1, 2 and 3 to
see
if each name on sheet4 is located on any of the other 3 sheets. Here are a
couple of my attempts so far
=LOOKUP(C3,'Friday 930am:Monday 1130am'!C2:C25)
=SUMPRODUCT(C2*'Friday 930am:Monday 1130am'!C2:C25)

To clarify the above
Sheet 1 is named Friday 930am
Sheet 2 is anmed Friday 12:30pm
Sheet 3 is named Monday 1130am


Any suggestions are welcome



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 42
Default Lookup, vlookup, find, or what

one way

=COUNTIF('friday 930am'!C2:C25,A3)+COUNTIF('friday
1230pm'!C2:C25,A3)+COUNTIF('monday 1130am'!C2:C25,A3)

a3 being what you are looking for

it will count how many times it is on each page


"JR Hester" wrote:

Thanks in advance. Xcel07 on WinXP.

I have a list of names in sheet 4, I need to search sheet 1, 2 and 3 to see
if each name on sheet4 is located on any of the other 3 sheets. Here are a
couple of my attempts so far
=LOOKUP(C3,'Friday 930am:Monday 1130am'!C2:C25)
=SUMPRODUCT(C2*'Friday 930am:Monday 1130am'!C2:C25)

To clarify the above
Sheet 1 is named Friday 930am
Sheet 2 is anmed Friday 12:30pm
Sheet 3 is named Monday 1130am


Any suggestions are welcome

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 value using LOOKUP kawfeehaus Excel Discussion (Misc queries) 8 November 3rd 09 03:27 AM
Lookup / find value in column which changes LinLin Excel Worksheet Functions 3 November 20th 08 11:55 PM
Lookup...find next Maxime Maugeais Excel Discussion (Misc queries) 5 June 22nd 07 07:15 AM
Lookup Value and find Corresponding Value on another row same column martialtiger Excel Discussion (Misc queries) 4 November 8th 05 09:44 PM
Find and replace with a lookup EMG03 Excel Worksheet Functions 4 October 21st 05 04:07 PM


All times are GMT +1. The time now is 07:33 PM.

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"