Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Can anyone tell me what this formula is doing? Specifically, why is the ISNA
function cited here? Is it because the data it is looking for not in the first column in order? I understand the vlookup function but how does it work within the ISNA? =IF(ISNA(VLOOKUP(D32,Detail!$B$1:$B$289,1,FALSE)), "new"," x") |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If the vlookup function can't find a match, it will return NA. So embedding
the vlookup inside the ISNA test 'traps' the error. If no match is found the vlookup returns NA, so ISNA evaluates to true and the IF function returns "new". If a match is found by the vlookup, ISNA evaluates to false and the IF function returns "x". "cinvic" wrote: Can anyone tell me what this formula is doing? Specifically, why is the ISNA function cited here? Is it because the data it is looking for not in the first column in order? I understand the vlookup function but how does it work within the ISNA? =IF(ISNA(VLOOKUP(D32,Detail!$B$1:$B$289,1,FALSE)), "new"," x") |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
As always, this website and your response is dead on and extremely helpful.
Thanks so much for your response! "bpeltzer" wrote: If the vlookup function can't find a match, it will return NA. So embedding the vlookup inside the ISNA test 'traps' the error. If no match is found the vlookup returns NA, so ISNA evaluates to true and the IF function returns "new". If a match is found by the vlookup, ISNA evaluates to false and the IF function returns "x". "cinvic" wrote: Can anyone tell me what this formula is doing? Specifically, why is the ISNA function cited here? Is it because the data it is looking for not in the first column in order? I understand the vlookup function but how does it work within the ISNA? =IF(ISNA(VLOOKUP(D32,Detail!$B$1:$B$289,1,FALSE)), "new"," x") |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Nesting named formulas | Excel Worksheet Functions | |||
nesting formulas | Excel Worksheet Functions | |||
Nesting SUMIF formulas | Excel Worksheet Functions | |||
nesting conditional formulas | Excel Worksheet Functions | |||
Nesting Formulas | Excel Worksheet Functions |