Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have the following formula:
=IF($L$2="","",VLOOKUP($L$2,Database,37,0)) if the relevent cell is "blank" it returns a value of "0". I would like it to return a value of "blank". Thank you for any help in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Just check to see if that cell is empty:
=IF($L$2="","", if(VLOOKUP($L$2,Database,37,0)="","",VLOOKUP($L$2, Database,37,0))) Gavin wrote: I have the following formula: =IF($L$2="","",VLOOKUP($L$2,Database,37,0)) if the relevent cell is "blank" it returns a value of "0". I would like it to return a value of "blank". Thank you for any help in advance. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF($L$2="","",IF(VLOOKUP($L$2,Database,37,0)=0,"" ,VLOOKUP($L$2,Database,37,0)))
"Gavin" wrote: I have the following formula: =IF($L$2="","",VLOOKUP($L$2,Database,37,0)) if the relevent cell is "blank" it returns a value of "0". I would like it to return a value of "blank". Thank you for any help in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP | Excel Discussion (Misc queries) | |||
Embedded VLOOKUP function within IF function | Excel Worksheet Functions | |||
HOW DO I NEST THE VLOOKUP FUNCTION WITH THE LEFT FUNCTION | Excel Worksheet Functions | |||
how do I write a vlookup function within an iserror function so t. | Excel Worksheet Functions | |||
I want to use Vlookup function and AND function in a single formu. | Excel Worksheet Functions |