Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
I m using this function =IF(VLOOKUP($B4,Inventory_List,8,0)<0,"INVALID SALE",VLOOKUP($B4,Inventory_List,8,0)) but when B4 is blank it return #N/A. I want this should return blank when b4 is blank. How to change this function.=IF(VLOOKUP($B4,Inventory_List,8,0)<0,"IN VALID SALE",VLOOKUP($B4,Inventory_List,8,0)) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(OR(ISBLANK($B4),VLOOKUP($B4,Inventory_List,8,0 )<0),"INVALID
SALE",VLOOKUP($B4,Inventory_List,8,0)) "Rao Ratan Singh" wrote: Hi I m using this function =IF(VLOOKUP($B4,Inventory_List,8,0)<0,"INVALID SALE",VLOOKUP($B4,Inventory_List,8,0)) but when B4 is blank it return #N/A. I want this should return blank when b4 is blank. How to change this function.=IF(VLOOKUP($B4,Inventory_List,8,0)<0,"IN VALID SALE",VLOOKUP($B4,Inventory_List,8,0)) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(ISBLANK($B4),"",IF(VLOOKUP($B4,Inventory_List, 8,0)<0,"INVALID
SALE",VLOOKUP($B4,Inventory_List,8,0))) "Rao Ratan Singh" wrote: Hi I m using this function =IF(VLOOKUP($B4,Inventory_List,8,0)<0,"INVALID SALE",VLOOKUP($B4,Inventory_List,8,0)) but when B4 is blank it return #N/A. I want this should return blank when b4 is blank. How to change this function.=IF(VLOOKUP($B4,Inventory_List,8,0)<0,"IN VALID SALE",VLOOKUP($B4,Inventory_List,8,0)) |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you sir
|
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Change your formula to
=IF(ISNA(VLOOKUP($B4,Inventory_List,8,0)),"",IF(VL OOKUP($B4,Inventory_List,8,0)<0,"INVALID SALE",VLOOKUP($B4,Inventory_List,8,0))) "Rao Ratan Singh" wrote: Hi I m using this function =IF(VLOOKUP($B4,Inventory_List,8,0)<0,"INVALID SALE",VLOOKUP($B4,Inventory_List,8,0)) but when B4 is blank it return #N/A. I want this should return blank when b4 is blank. How to change this function.=IF(VLOOKUP($B4,Inventory_List,8,0)<0,"IN VALID SALE",VLOOKUP($B4,Inventory_List,8,0)) |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you sir
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Returning nothing if formula is false | Excel Discussion (Misc queries) | |||
vlookup returning a #N/A value | Excel Worksheet Functions | |||
Returning a blank cell rather then #N/A (Lookup) | Excel Discussion (Misc queries) | |||
Vlookup returning No data. | Excel Worksheet Functions | |||
MY VLOOKUP IS RETURNING N/A AND THEREFORE MY TOTAL SUM AT THE BOT. | Excel Discussion (Misc queries) |