<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FiddyP &#187; Excel</title>
	<atom:link href="http://fiddyp.co.uk/tag/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://fiddyp.co.uk</link>
	<description>The personal blog of Andy Bailey</description>
	<lastBuildDate>Sun, 13 May 2012 15:28:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Excel tip: How to not show zero values for forumla result</title>
		<link>http://fiddyp.co.uk/excel-tip-how-to-not-show-zero-values-for-forumla-result/</link>
		<comments>http://fiddyp.co.uk/excel-tip-how-to-not-show-zero-values-for-forumla-result/#comments</comments>
		<pubDate>Tue, 02 Oct 2007 16:27:31 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Business Software]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[conditional]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[profit]]></category>

		<guid isPermaLink="false">http://www.fiddyp.co.uk/excel-tip-how-not-to-show-zero-values-for-forumla-result/</guid>
		<description><![CDATA[Here&#8217;s a handy little formula to add up a column or row of figures and only show the result if it&#8217;s a non-zero. I find it hard to [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Fexcel-tip-how-to-not-show-zero-values-for-forumla-result%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Fexcel-tip-how-to-not-show-zero-values-for-forumla-result%2F&amp;source=commentluv&amp;style=normal&amp;service=bit.ly&amp;service_api=R_259b4e5679e2c431cca1f989e158bba4&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Here&#8217;s a handy little formula to add up a column or row of figures and only show the result if it&#8217;s a non-zero.</p>
<pre class="brush: xml; title: ; notranslate">=IF(SUM(D4:E4)&amp;gt;=1,SUM(D4:E4),&quot;&quot;)</pre>
<p>I find it hard to pick out positive numbers in a whole list of values if there are a lot of zero numbers. Look at the two following examples..</p>
<p><img src='http://fiddyp.co.uk/wp-content/uploads/2007/10/excelgrab1.gif' alt='excel grab 1' /></p>
<p>if there are a whole lot of numbers in use like when you&#8217;re looking at a stock list that goes on for pages and you&#8217;re looking for what is left amongst a lot of zero quantity items, it&#8217;s really easy to miss the numbers. But, by using the IF function of Excel you can test the normal formula and only output a result for whatever value you want. ie.</p>
<pre class="brush: xml; title: ; notranslate">=IF(logical test,if true,if not true)</pre>
<p>the example below uses this</p>
<ul>
<li>logical test : = SUM(D4:E4)&gt;=1<br />
the sum of the numbers between D4 and E4 is greater than equal to 1</li>
<li>if true: sum(D4:E4)<br />
if the logical test is true then output the sum of D4 to E4</li>
<li>if not true: &#8220;&#8221;<br />
output nothing, you could use whatever you want for the &#8220;if true&#8221; and &#8220;if not true&#8221;. Text would go in quotes and formulas go without.</p>
<p>Here&#8217;s what it looks like:<br />
<img src='http://fiddyp.co.uk/wp-content/uploads/2007/10/excelgrab2.gif' alt='excel grab 2' /></p>
<p>Loads better!</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/excel-tip-how-to-not-show-zero-values-for-forumla-result/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

