Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have one problem...I use this vlookup formula in B cells
=IF(A2<"",VLOOKUP($A2,$J$1:K51,2,FALSE),"") to extract some prices... A B 1 01254 #N/A 2 total i.s. 12 3.65 3 total i.s. 15 2.86 4 02458 #N/A I don't want to see #N/A ....I don't want anything to apear in B1, B4.... How can i do this?? Thanks! My best regards, puiuluipui |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use the error functions (ISERROR, ISERR and ISNA) ISNA in this example
=IF(A2<"",IF(ISNA(VLOOKUP($A2,$J$1:K51,2,FALSE)), "",VLOOKUP($A2,$J$1:K51,2,FALSE)),"") ISNA checks for #N/A errors, ISERR check for all errors except #N/A and ISERROR checks for any error -- HTH Nick Hodge Microsoft MVP - Excel Southampton, England www.nickhodge.co.uk "puiuluipui" wrote in message ... I have one problem...I use this vlookup formula in B cells =IF(A2<"",VLOOKUP($A2,$J$1:K51,2,FALSE),"") to extract some prices... A B 1 01254 #N/A 2 total i.s. 12 3.65 3 total i.s. 15 2.86 4 02458 #N/A I don't want to see #N/A ....I don't want anything to apear in B1, B4.... How can i do this?? Thanks! My best regards, puiuluipui |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
it was very helpful. thanks.
"Nick Hodge" wrote: Use the error functions (ISERROR, ISERR and ISNA) ISNA in this example =IF(A2<"",IF(ISNA(VLOOKUP($A2,$J$1:K51,2,FALSE)), "",VLOOKUP($A2,$J$1:K51,2,FALSE)),"") ISNA checks for #N/A errors, ISERR check for all errors except #N/A and ISERROR checks for any error -- HTH Nick Hodge Microsoft MVP - Excel Southampton, England www.nickhodge.co.uk "puiuluipui" wrote in message ... I have one problem...I use this vlookup formula in B cells =IF(A2<"",VLOOKUP($A2,$J$1:K51,2,FALSE),"") to extract some prices... A B 1 01254 #N/A 2 total i.s. 12 3.65 3 total i.s. 15 2.86 4 02458 #N/A I don't want to see #N/A ....I don't want anything to apear in B1, B4.... How can i do this?? Thanks! My best regards, puiuluipui |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vlookup problem with Date Time | Excel Worksheet Functions | |||
vlookup Problem | Excel Discussion (Misc queries) | |||
Vlookup, What is correct formula for problem below? | Excel Worksheet Functions | |||
VLOOKUP Problem | Excel Worksheet Functions | |||
VLOOKUP, OFFSET, MATCH PROBLEM, HELP? | Excel Worksheet Functions |