Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have this formula:
=VLOOKUP(A20,EmpInfo,2) If A20 is Blank, I want the cell blank - instead I am getting #N/A What am I doing wrong? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(ISBLANK(A20),"",VLOOKUP(A20,EmpInfo,2))
-- Best Regards, Luke M "roxiemayfield" wrote: I have this formula: =VLOOKUP(A20,EmpInfo,2) If A20 is Blank, I want the cell blank - instead I am getting #N/A What am I doing wrong? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(ISNA(VLOOKUP(A20,EmpInfo,2)),"",VLOOKUP(A20,Em pInfo,2))
or probably =IF(ISNA(VLOOKUP(A20,EmpInfo,2,0)),"",VLOOKUP(A20, EmpInfo,2,0)) -- Regards, Peo Sjoblom "Luke M" wrote in message ... =IF(ISBLANK(A20),"",VLOOKUP(A20,EmpInfo,2)) -- Best Regards, Luke M "roxiemayfield" wrote: I have this formula: =VLOOKUP(A20,EmpInfo,2) If A20 is Blank, I want the cell blank - instead I am getting #N/A What am I doing wrong? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Still giving me the #N/A
"Luke M" wrote: =IF(ISBLANK(A20),"",VLOOKUP(A20,EmpInfo,2)) -- Best Regards, Luke M "roxiemayfield" wrote: I have this formula: =VLOOKUP(A20,EmpInfo,2) If A20 is Blank, I want the cell blank - instead I am getting #N/A What am I doing wrong? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This one is giving me FALSE unless the cell is blank, then I am still getting
#N/A "Peo Sjoblom" wrote: =IF(ISNA(VLOOKUP(A20,EmpInfo,2)),"",VLOOKUP(A20,Em pInfo,2)) or probably =IF(ISNA(VLOOKUP(A20,EmpInfo,2,0)),"",VLOOKUP(A20, EmpInfo,2,0)) -- Regards, Peo Sjoblom "Luke M" wrote in message ... =IF(ISBLANK(A20),"",VLOOKUP(A20,EmpInfo,2)) -- Best Regards, Luke M "roxiemayfield" wrote: I have this formula: =VLOOKUP(A20,EmpInfo,2) If A20 is Blank, I want the cell blank - instead I am getting #N/A What am I doing wrong? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try it this way:
=IF(A20="","",VLOOKUP(A20,EmpInfo,2)) then copy down if required. Ensure that A20 and other cells below it are blank, and not containing spaces. Hope this helps. Pete On Dec 7, 8:15 pm, roxiemayfield wrote: Still giving me the #N/A "Luke M" wrote: =IF(ISBLANK(A20),"",VLOOKUP(A20,EmpInfo,2)) -- Best Regards, Luke M "roxiemayfield" wrote: I have this formula: =VLOOKUP(A20,EmpInfo,2) If A20 is Blank, I want the cell blank - instead I am getting #N/A What am I doing wrong?- Hide quoted text - - Show quoted text - |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you! I think that will work.
"Pete_UK" wrote: Try it this way: =IF(A20="","",VLOOKUP(A20,EmpInfo,2)) then copy down if required. Ensure that A20 and other cells below it are blank, and not containing spaces. Hope this helps. Pete On Dec 7, 8:15 pm, roxiemayfield wrote: Still giving me the #N/A "Luke M" wrote: =IF(ISBLANK(A20),"",VLOOKUP(A20,EmpInfo,2)) -- Best Regards, Luke M "roxiemayfield" wrote: I have this formula: =VLOOKUP(A20,EmpInfo,2) If A20 is Blank, I want the cell blank - instead I am getting #N/A What am I doing wrong?- Hide quoted text - - Show quoted text - |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Glad to hear it - thanks for feeding back.
Pete On Dec 7, 8:50 pm, roxiemayfield wrote: Thank you! I think that will work. "Pete_UK" wrote: Try it this way: =IF(A20="","",VLOOKUP(A20,EmpInfo,2)) then copy down if required. Ensure that A20 and other cells below it are blank, and not containing spaces. Hope this helps. Pete On Dec 7, 8:15 pm, roxiemayfield wrote: Still giving me the #N/A "Luke M" wrote: =IF(ISBLANK(A20),"",VLOOKUP(A20,EmpInfo,2)) -- Best Regards, Luke M "roxiemayfield" wrote: I have this formula: =VLOOKUP(A20,EmpInfo,2) If A20 is Blank, I want the cell blank - instead I am getting #N/A What am I doing wrong?- Hide quoted text - - Show quoted text -- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
vlookup error | Excel Worksheet Functions | |||
vlookup error | Excel Worksheet Functions | |||
vlookup error | Excel Discussion (Misc queries) | |||
VLOOKUP error | Excel Worksheet Functions | |||
Vlookup Error | Excel Worksheet Functions |