Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 187
Default VLOOKUP - 0 instead of # N/A

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default VLOOKUP - 0 instead of # N/A

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,494
Default VLOOKUP - 0 instead of # N/A

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 187
Default VLOOKUP - 0 instead of # N/A

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default VLOOKUP - 0 instead of # N/A

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 187
Default VLOOKUP - 0 instead of # N/A

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default VLOOKUP - 0 instead of # N/A


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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default VLOOKUP - 0 instead of # N/A

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 187
Default VLOOKUP - 0 instead of # N/A

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default VLOOKUP - 0 instead of # N/A

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
If (Vlookup 0) working, but what if Vlookup cell does not exist Steve Excel Worksheet Functions 18 November 18th 09 07:33 PM
Vlookup in vlookup - taking the result as array name SupperDuck Excel Worksheet Functions 2 June 2nd 07 11:05 AM
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP buffgirl71 Excel Discussion (Misc queries) 12 November 14th 06 11:36 PM
Vlookup -=VLOOKUP(F9,LookUp1!$A$2:$B$1504,2,FALSE) MikeR-Oz New Users to Excel 1 March 22nd 06 09:01 AM
Vlookup info being used without vlookup table attached? Excel Worksheet Functions 0 January 25th 05 10:43 AM


All times are GMT +1. The time now is 11:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"