Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Did you try it? That won't work at all, since ISERR will always return
FALSE when passed #N/A! From XL Help: ISERR Returns the logical value TRUE if value refers to any error value except #N/A; otherwise it returns FALSE. One could use ISERROR(), which does trap #N/A, but that would mask other errors as well. Better to use ISNA =IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...)) though out of sheer cussedness I prefer the slightly more efficient =IF(ISNA(MATCH(A1,J:J,FALSE)),"",VLOOKUP(A1,J:K,2, FALSE)) In article , LarryLL wrote: Holly Wrote: I try not to show "#N/A" when my vloopup couldn't find the match on the report. One way is to use the ISERR function. IF(ISERR(VLOOKUP(...),0,VLOOKUP(...)) |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find comment replace cell value | Excel Discussion (Misc queries) | |||
find and replace macro strange behaviour | Excel Discussion (Misc queries) | |||
How do I find and replace the " | Excel Discussion (Misc queries) | |||
Find and Replace | Excel Worksheet Functions | |||
Find a match that;s not exact | Excel Worksheet Functions |