Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to see if a value in column A matches a value in column E of Sheet2. I
have tried the following: =IF($A1='Sheet2'!$E$1:$E$100,"match","false") Any help is appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(ISNA(VLOOKUP(A1,Sheet2!E:E,1,FALSE)),"false"," match")
HTH, JP On Jan 11, 3:14*pm, TrevorC wrote: I need to see if a value in column A matches a value in column E of Sheet2.. I have tried the following: =IF($A1='Sheet2'!$E$1:$E$100,"match","false") Any help is appreciated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Also
=IF(COUNTIF(Sheet2!E:E,A1),"match","false") HTH, JP On Jan 11, 3:21*pm, JP wrote: =IF(ISNA(VLOOKUP(A1,Sheet2!E:E,1,FALSE)),"false"," match") HTH, JP |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks. This is kind of working but I know there are matching values that
are not being detected. Any other ideas? "JP" wrote: Also =IF(COUNTIF(Sheet2!E:E,A1),"match","false") HTH, JP On Jan 11, 3:21 pm, JP wrote: =IF(ISNA(VLOOKUP(A1,Sheet2!E:E,1,FALSE)),"false"," match") HTH, JP |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Do you mean there are values in column E that exactly match A1 but the
formula still comes up blank? Can you provide more information? Keep in mind, both formulas are checking on an exact match of A1, if there are spaces in the cell, it might be missed. You could use the LEN() function on A1 and the cell you suspect is being missed, if they are equal to each other then we can go from there. HTH, JP On Jan 11, 4:11*pm, TrevorC wrote: Thanks. *This is kind of working but I know there are matching values that are not being detected. * Any other ideas? "JP" wrote: Also =IF(COUNTIF(Sheet2!E:E,A1),"match","false") HTH, JP On Jan 11, 3:21 pm, JP wrote: =IF(ISNA(VLOOKUP(A1,Sheet2!E:E,1,FALSE)),"false"," match") HTH, JP- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If statement with Vlookup - including ISNA function to compare two columns from different worksheets | Excel Worksheet Functions | |||
Using If Statement to link worksheets | Excel Discussion (Misc queries) | |||
appending and IF statement to an existing IF statement | Excel Worksheet Functions | |||
If statement and Isblank statement | Excel Worksheet Functions | |||
Help please, IF statement/SUMIF statement | Excel Worksheet Functions |