Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I find if on cells value matches another cells in a range of cells.
For example I have data in column G from 2 to 65000 and H from 2 to 65000. I want to go line by line in column G and see if that data shows up anywhere in H2:H65000. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would insert a blank column between these two columns, so we're now
checking column G cells against the entire column I. In the new empty column H at H2, enter this formula and copy it down: =ISNUMBER(MATCH(G2, I:I, 0)) Once copied down, you will have TRUE/FALSE answers, all the TRUE answers mean the value in G is somewhere in column I. Does that help? -- "Actually, I *am* a rocket scientist." -- JB (www.MadRocketScientist.com) Your feedback is appreciated, click YES if this post helped you. "adam" wrote: How do I find if on cells value matches another cells in a range of cells. For example I have data in column G from 2 to 65000 and H from 2 to 65000. I want to go line by line in column G and see if that data shows up anywhere in H2:H65000. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way...
Entered in, say, F2 and copied down: =ISNUMBER(MATCH(G2,H$2:H$65000,0)) TRUE = there is a match FALSE = no match -- Biff Microsoft Excel MVP "adam" wrote in message ... How do I find if on cells value matches another cells in a range of cells. For example I have data in column G from 2 to 65000 and H from 2 to 65000. I want to go line by line in column G and see if that data shows up anywhere in H2:H65000. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If there is a match, do you want to know where the matching value is in Col
H? Or do you want to know only that there is a match? Otto "adam" wrote in message ... How do I find if on cells value matches another cells in a range of cells. For example I have data in column G from 2 to 65000 and H from 2 to 65000. I want to go line by line in column G and see if that data shows up anywhere in H2:H65000. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
calculate values in an unlimited range of cells in a column WITHOUTalso calculating values that had previously been filtered AGAINST? | Excel Discussion (Misc queries) | |||
Excel 2007 doesnt show Y-axis values when the values are small. | Charts and Charting in Excel | |||
Exclude #N/A values and Return Numeric values to consecutive cells in Single Row | Excel Worksheet Functions | |||
Adding numerical values based on multiple values in another column | Excel Worksheet Functions | |||
Count unique values and create list based on these values | Excel Worksheet Functions |