Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
=VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=IF(ISNA(VLOOKUP(G3,A:D,4,FALSE)),0,VLOOKUP(G3,A:D ,4,FALSE)) -- Jacob "Jaleel" wrote: Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
this may do what you want
=IF(ISNA(VLOOKUP(G3,A:D,4,FALSE)),0,VLOOKUP(G3,A:D ,4,FALSE)) -- Gary Keramidas Excel 2003 "Jaleel" wrote in message ... Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Jacob,
Sorry, it is not working. Jaleel "Jacob Skaria" wrote: Try =IF(ISNA(VLOOKUP(G3,A:D,4,FALSE)),0,VLOOKUP(G3,A:D ,4,FALSE)) -- Jacob "Jaleel" wrote: Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Make sure the cell references are correct and try again..
-- Jacob "Jaleel" wrote: Jacob, Sorry, it is not working. Jaleel "Jacob Skaria" wrote: Try =IF(ISNA(VLOOKUP(G3,A:D,4,FALSE)),0,VLOOKUP(G3,A:D ,4,FALSE)) -- Jacob "Jaleel" wrote: Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Jacob,
You are right. My cell references were wrong. Thanks a lot. Regards, Jaleel "Jacob Skaria" wrote: Make sure the cell references are correct and try again.. -- Jacob "Jaleel" wrote: Jacob, Sorry, it is not working. Jaleel "Jacob Skaria" wrote: Try =IF(ISNA(VLOOKUP(G3,A:D,4,FALSE)),0,VLOOKUP(G3,A:D ,4,FALSE)) -- Jacob "Jaleel" wrote: Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() There's a quick snippet on error handling here http://tinyurl.com/ydvv3b8 Jaleel;582731 Wrote: Jacob, You are right. My cell references were wrong. Thanks a lot. Regards, Jaleel "Jacob Skaria" wrote: Make sure the cell references are correct and try again.. -- Jacob "Jaleel" wrote: Jacob, Sorry, it is not working. Jaleel "Jacob Skaria" wrote: Try =IF(ISNA(VLOOKUP(G3,A:D,4,FALSE)),0,VLOOKUP(G3,A:D ,4,FALSE)) -- Jacob "Jaleel" wrote: Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel -- Simon Lloyd Regards, Simon Lloyd 'Microsoft Office Help' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: 1 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=161264 Microsoft Office Help |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here's another one...
=IF(COUNTIF(A:A,G3),VLOOKUP(G3,A:D,4,0),0) -- Biff Microsoft Excel MVP "Jaleel" wrote in message ... Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Valko,
Wonderful! Regards, Jaleel "T. Valko" wrote: Here's another one... =IF(COUNTIF(A:A,G3),VLOOKUP(G3,A:D,4,0),0) -- Biff Microsoft Excel MVP "Jaleel" wrote in message ... Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel . |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
-- Biff Microsoft Excel MVP "Jaleel" wrote in message ... Valko, Wonderful! Regards, Jaleel "T. Valko" wrote: Here's another one... =IF(COUNTIF(A:A,G3),VLOOKUP(G3,A:D,4,0),0) -- Biff Microsoft Excel MVP "Jaleel" wrote in message ... Hi, =VLOOKUP(G3,A:D,4,FALSE) When I put the above formula, if the lookup_value is not available in the table_array #N/A appears in the result. How can I modify the formula to get the result as 0 instead of #N/A? Can anybody help? Jaleel . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If (Vlookup 0) working, but what if Vlookup cell does not exist | Excel Worksheet Functions | |||
Vlookup in vlookup - taking the result as array name | Excel Worksheet Functions | |||
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP | Excel Discussion (Misc queries) | |||
Vlookup -=VLOOKUP(F9,LookUp1!$A$2:$B$1504,2,FALSE) | New Users to Excel | |||
Vlookup info being used without vlookup table attached? | Excel Worksheet Functions |