=IF(A19="","",VLOOKUP(A19,Product!A7:B13,2,FALSE))

Signature
Kind regards,
Niek Otten
Microsoft MVP - Excel
| =VLOOKUP(A19,Product!A7:B13,2,FALSE) I need to modify this formula so the if
| no in formation is entered in A19 it remains blank. I am currently getting
| #na.
cuffie - 07 Nov 2006 20:13 GMT
> =IF(A19="","",VLOOKUP(A19,Product!A7:B13,2,FALSE))
>
> | =VLOOKUP(A19,Product!A7:B13,2,FALSE) I need to modify this formula so the if
> | no in formation is entered in A19 it remains blank. I am currently getting
> | #na.
cuffie - 07 Nov 2006 20:14 GMT
Thank you, I will try it.
> =IF(A19="","",VLOOKUP(A19,Product!A7:B13,2,FALSE))
>
> | =VLOOKUP(A19,Product!A7:B13,2,FALSE) I need to modify this formula so the if
> | no in formation is entered in A19 it remains blank. I am currently getting
> | #na.
IF(ISNA(VLOOKUP(A19,Product!A7:B13,2,FALSE)),0,VLOOKUP(A19,Product!A7:B13,2,FALSE))
> =VLOOKUP(A19,Product!A7:B13,2,FALSE) I need to modify this formula so the if
> no in formation is entered in A19 it remains blank. I am currently getting
> #na.
T. Valko - 30 Oct 2007 18:52 GMT
Shorter:
=IF(A19="","",VLOOKUP(A19,Product!A7:B13,2,0))

Signature
Biff
Microsoft Excel MVP
> IF(ISNA(VLOOKUP(A19,Product!A7:B13,2,FALSE)),0,VLOOKUP(A19,Product!A7:B13,2,FALSE))
>
[quoted text clipped - 3 lines]
>> getting
>> #na.