<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Removing #N/A error in Excel using ISNA()</title>
	<atom:link href="http://articles.excelyogi.com/removing-na-error-in-excel-using-isna/2009/02/17/feed/" rel="self" type="application/rss+xml" />
	<link>http://articles.excelyogi.com/removing-na-error-in-excel-using-isna/2009/02/17/</link>
	<description>Analyst Resources</description>
	<pubDate>Thu, 11 Mar 2010 13:02:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Amit</title>
		<link>http://articles.excelyogi.com/removing-na-error-in-excel-using-isna/2009/02/17/#comment-122</link>
		<dc:creator>Amit</dc:creator>
		<pubDate>Sat, 14 Mar 2009 13:06:58 +0000</pubDate>
		<guid isPermaLink="false">http://articles.excelyogi.com/?p=259#comment-122</guid>
		<description>Hi, 

I am in a big problem. I have this code

=IF(C10="Distributor-VAT",VLOOKUP(B13,K1:L1000,2,0),IF(C10="Distributor-CST",VLOOKUP(B13,M1:N1000,2,0),IF(C10="Distributor-EW",VLOOKUP(B13,O1:P1000,2,0),IF(C10="Distributor-MH",VLOOKUP(B13,Q1:R1000,2,0),IF(C10="Dealer-VAT",VLOOKUP(B13,S1:T1000,2,0),IF(C10="Dealer-CST",VLOOKUP(B13,U1:V1000,2,0),IF(C10="Dealer-EW",VLOOKUP(B13,W1:X1000,2,0),VLOOKUP(B13,Y1:Z1000,2,0))))))))

This cell already have 7 IF's so I cannot use ISERROR. Any idea how to get #N/A issue sorted.

Thanks
Amit

Please e-mail me the response if you know how to do it @

amit.ganotra@yahoo.com</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I am in a big problem. I have this code</p>
<p>=IF(C10=&#8221;Distributor-VAT&#8221;,VLOOKUP(B13,K1:L1000,2,0),IF(C10=&#8221;Distributor-CST&#8221;,VLOOKUP(B13,M1:N1000,2,0),IF(C10=&#8221;Distributor-EW&#8221;,VLOOKUP(B13,O1:P1000,2,0),IF(C10=&#8221;Distributor-MH&#8221;,VLOOKUP(B13,Q1:R1000,2,0),IF(C10=&#8221;Dealer-VAT&#8221;,VLOOKUP(B13,S1:T1000,2,0),IF(C10=&#8221;Dealer-CST&#8221;,VLOOKUP(B13,U1:V1000,2,0),IF(C10=&#8221;Dealer-EW&#8221;,VLOOKUP(B13,W1:X1000,2,0),VLOOKUP(B13,Y1:Z1000,2,0))))))))</p>
<p>This cell already have 7 IF&#8217;s so I cannot use ISERROR. Any idea how to get #N/A issue sorted.</p>
<p>Thanks<br />
Amit</p>
<p>Please e-mail me the response if you know how to do it @</p>
<p><a href="mailto:amit.ganotra@yahoo.com">amit.ganotra@yahoo.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Excel Yogi&#8217;s &#187; Blog Archive &#187; #VALUE! Error in Microsoft Excel</title>
		<link>http://articles.excelyogi.com/removing-na-error-in-excel-using-isna/2009/02/17/#comment-105</link>
		<dc:creator>Excel Yogi&#8217;s &#187; Blog Archive &#187; #VALUE! Error in Microsoft Excel</dc:creator>
		<pubDate>Tue, 03 Mar 2009 21:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://articles.excelyogi.com/?p=259#comment-105</guid>
		<description>[...] #VALUE error is an error that is seen almost as often as #N/A. In short, the VALUE error occurs when a formula refers to a cell that contains a different than [...]</description>
		<content:encoded><![CDATA[<p>[...] #VALUE error is an error that is seen almost as often as #N/A. In short, the VALUE error occurs when a formula refers to a cell that contains a different than [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Harris</title>
		<link>http://articles.excelyogi.com/removing-na-error-in-excel-using-isna/2009/02/17/#comment-96</link>
		<dc:creator>Joseph Harris</dc:creator>
		<pubDate>Fri, 20 Feb 2009 13:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://articles.excelyogi.com/?p=259#comment-96</guid>
		<description>Sure JP, 
You can use COUNTA...There are many more methods than that as well. I was attempting to point out what ISNA() can be used for. Your counta formula saves 4 or 5 characters over the ISNA method. 

Joe</description>
		<content:encoded><![CDATA[<p>Sure JP,<br />
You can use COUNTA&#8230;There are many more methods than that as well. I was attempting to point out what ISNA() can be used for. Your counta formula saves 4 or 5 characters over the ISNA method. </p>
<p>Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JP</title>
		<link>http://articles.excelyogi.com/removing-na-error-in-excel-using-isna/2009/02/17/#comment-95</link>
		<dc:creator>JP</dc:creator>
		<pubDate>Fri, 20 Feb 2009 00:14:49 +0000</pubDate>
		<guid isPermaLink="false">http://articles.excelyogi.com/?p=259#comment-95</guid>
		<description>Why not use COUNTA to check if the value is present first, otherwise you are doing VLOOKUP twice?

=IF(COUNTA(E4,$A$4:$B$6),VLOOKUP(E4,$A$4:$B$6,2,FALSE),"")</description>
		<content:encoded><![CDATA[<p>Why not use COUNTA to check if the value is present first, otherwise you are doing VLOOKUP twice?</p>
<p>=IF(COUNTA(E4,$A$4:$B$6),VLOOKUP(E4,$A$4:$B$6,2,FALSE),&#8221;")</p>
]]></content:encoded>
	</item>
</channel>
</rss>
