ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   VLOOKUP - 0 instead of # N/A (https://www.excelbanter.com/excel-discussion-misc-queries/250663-vlookup-0-instead-n.html)

Jaleel

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

Jacob Skaria

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


Gary Keramidas

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



Jaleel

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


Jacob Skaria

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


Jaleel

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


Simon Lloyd[_392_]

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


T. Valko

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




Jaleel

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



.


T. Valko

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



.





All times are GMT +1. The time now is 05:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com