Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Good day, I have a quick question. When using a vertical lookup that looks
at a named table for the returned values, if the item is not present in the table it returns an N/A. Is there any way to have it return a zero (0) if it is not present in the table? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You might try:-
=IF(ISNA(VLOOKUP(368.59,myrange,2,FALSE)),"0",VLOO KUP(368.59,myrange,2,FALSE)) Mike "Jennifer" wrote: Good day, I have a quick question. When using a vertical lookup that looks at a named table for the returned values, if the item is not present in the table it returns an N/A. Is there any way to have it return a zero (0) if it is not present in the table? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you for the quick reponse... can you tell me what the 368.59 is?
"Mike H" wrote: You might try:- =IF(ISNA(VLOOKUP(368.59,myrange,2,FALSE)),"0",VLOO KUP(368.59,myrange,2,FALSE)) Mike "Jennifer" wrote: Good day, I have a quick question. When using a vertical lookup that looks at a named table for the returned values, if the item is not present in the table it returns an N/A. Is there any way to have it return a zero (0) if it is not present in the table? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Jennifer,
It's just happened to be a value I had in a named range to test the formula. It's the lookup value. Mike "Jennifer" wrote: Thank you for the quick reponse... can you tell me what the 368.59 is? "Mike H" wrote: You might try:- =IF(ISNA(VLOOKUP(368.59,myrange,2,FALSE)),"0",VLOO KUP(368.59,myrange,2,FALSE)) Mike "Jennifer" wrote: Good day, I have a quick question. When using a vertical lookup that looks at a named table for the returned values, if the item is not present in the table it returns an N/A. Is there any way to have it return a zero (0) if it is not present in the table? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try
IF(ISNA(yourformula)),0,yourformula) or IF(ISNA(yourformula)),"",yourformula) -- Don Guillett SalesAid Software "Jennifer" wrote in message ... Good day, I have a quick question. When using a vertical lookup that looks at a named table for the returned values, if the item is not present in the table it returns an N/A. Is there any way to have it return a zero (0) if it is not present in the table? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Don, that worked great! Strongly appreciate your help!
"Don Guillett" wrote: try IF(ISNA(yourformula)),0,yourformula) or IF(ISNA(yourformula)),"",yourformula) -- Don Guillett SalesAid Software "Jennifer" wrote in message ... Good day, I have a quick question. When using a vertical lookup that looks at a named table for the returned values, if the item is not present in the table it returns an N/A. Is there any way to have it return a zero (0) if it is not present in the table? |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
u can use IF()&ISERROR()orISNA() to reture to zero when lookup() function
returns an N/A i.e =IF(iserror(lookup()),0,lookup()) "Jennifer" ... Good day, I have a quick question. When using a vertical lookup that looks at a named table for the returned values, if the item is not present in the table it returns an N/A. Is there any way to have it return a zero (0) if it is not present in the table? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vertical Lookup from a List | Excel Worksheet Functions | |||
Relative Value to a Vertical Lookup Result? | Excel Worksheet Functions | |||
Vertical Lookup problem | Excel Worksheet Functions | |||
Is it possible to do a vertical lookup that matches on 2 criteria | Excel Worksheet Functions | |||
Vertical lookup help needed | Excel Worksheet Functions |