Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
First, thank you for your help.
Is there a way to take a value from one cell say A1 and look within two other rows say B1:B1000 and C1:C1000 and if there's a match say "Yes"? Thank you Joe |
#2
![]() |
|||
|
|||
![]()
Try...
=IF(COUNTIF(B1:C1000,A1),"Yes","") Hope this helps! In article , "Joe Gieder" wrote: First, thank you for your help. Is there a way to take a value from one cell say A1 and look within two other rows say B1:B1000 and C1:C1000 and if there's a match say "Yes"? Thank you Joe |
#3
![]() |
|||
|
|||
![]()
I'm sure there is a better way to do this, and I'm sure someone else will
come up with it. But in the meantime, this should work for your situation =IF(ISERROR(MATCH(A1,B1:B1000,0)),IF(ISERROR(MATCH (A1,C1:C1000,0)),"No","Yes"),"Yes") Of course you can put what you want to show up in the cell in place of "Yes" and "No" - Search "Joe Gieder" wrote: First, thank you for your help. Is there a way to take a value from one cell say A1 and look within two other rows say B1:B1000 and C1:C1000 and if there's a match say "Yes"? Thank you Joe |
#4
![]() |
|||
|
|||
![]()
=IF(OR(ISNUMBER(MATCH(A1,B1:B1000,0)),ISNUMBER(MAT CH(A1,C1:C1000,0))),"Yes",
"") -- HTH RP (remove nothere from the email address if mailing direct) "Joe Gieder" wrote in message ... First, thank you for your help. Is there a way to take a value from one cell say A1 and look within two other rows say B1:B1000 and C1:C1000 and if there's a match say "Yes"? Thank you Joe |
#5
![]() |
|||
|
|||
![]()
Hi,
You may also try the following array formula (Ctrl+Shift+Enter) =or(exact(A1,B1:C1000)) Regards, Ashish Mathur "Joe Gieder" wrote: First, thank you for your help. Is there a way to take a value from one cell say A1 and look within two other rows say B1:B1000 and C1:C1000 and if there's a match say "Yes"? Thank you Joe |
#6
![]() |
|||
|
|||
![]()
Thank you all for the help.
"Joe Gieder" wrote: First, thank you for your help. Is there a way to take a value from one cell say A1 and look within two other rows say B1:B1000 and C1:C1000 and if there's a match say "Yes"? Thank you Joe |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding the minimum in a selected number of rows of the same colum | Excel Worksheet Functions | |||
finding the no. of rows in a COL filled with numbers, zeros and bl | Excel Worksheet Functions | |||
Finding minimum value across selected rows of an array | Excel Worksheet Functions | |||
Finding min,max in an array using selected rows from a table | Excel Worksheet Functions | |||
Finding common data in multiple columns and rows in Excel | Excel Worksheet Functions |