Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
=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. |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
=IF(A19="","",VLOOKUP(A19,Product!A7:B13,2,FALSE))
-- Kind regards, Niek Otten Microsoft MVP - Excel "cuffie" wrote in message ... | =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. |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]() "Niek Otten" wrote: =IF(A19="","",VLOOKUP(A19,Product!A7:B13,2,FALSE)) -- Kind regards, Niek Otten Microsoft MVP - Excel "cuffie" wrote in message ... | =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. |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thank you, I will try it.
"Niek Otten" wrote: =IF(A19="","",VLOOKUP(A19,Product!A7:B13,2,FALSE)) -- Kind regards, Niek Otten Microsoft MVP - Excel "cuffie" wrote in message ... | =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. |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
IF(ISNA(VLOOKUP(A19,Product!A7:B13,2,FALSE)),0,VLO OKUP(A19,Product!A7:B13,2,FALSE))
"cuffie" wrote: =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. |
#6
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Shorter:
=IF(A19="","",VLOOKUP(A19,Product!A7:B13,2,0)) -- Biff Microsoft Excel MVP "yusuf" wrote in message ... IF(ISNA(VLOOKUP(A19,Product!A7:B13,2,FALSE)),0,VLO OKUP(A19,Product!A7:B13,2,FALSE)) "cuffie" wrote: =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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLookup a Vlookup | Excel Worksheet Functions | |||
VLOOKUP Problem | Excel Discussion (Misc queries) | |||
VLOOKUP Limitations | Excel Worksheet Functions | |||
Have Vlookup return a Value of 0 instead of #N/A | Excel Worksheet Functions | |||
vlookup data hidden within worksheet | Excel Worksheet Functions |