<?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>nandeshwar.info &#187; count</title>
	<atom:link href="http://nandeshwar.info/tag/count/feed/" rel="self" type="application/rss+xml" />
	<link>http://nandeshwar.info</link>
	<description></description>
	<lastBuildDate>Mon, 12 Dec 2011 21:33:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Count Text in a Range</title>
		<link>http://nandeshwar.info/2009/04/24/count-text-in-a-range/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=count-text-in-a-range</link>
		<comments>http://nandeshwar.info/2009/04/24/count-text-in-a-range/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 14:21:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[String Operations]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[excel functions]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[wildcard]]></category>

		<guid isPermaLink="false">http://nandeshwar.info/?p=191</guid>
		<description><![CDATA[Counting text in a range is easy. For example, if you would like count how many times &#8220;text&#8221; is in a specified range (named data), you can write something like this: =COUNTIF(data,"*text*") This formula will give you the count of all the cells where Excel found &#8220;text&#8221; at any place. But let&#8217;s say you want [...]]]></description>
			<content:encoded><![CDATA[<p>Counting text in a range is easy. For example, if you would like count how many times &#8220;text&#8221; is in a specified range (named data), you can write something like this:<br />
<code>=COUNTIF(data,"*text*")</code></p>
<p>This formula will give you the count of all the cells where Excel found &#8220;text&#8221; at any place.</p>
<p>But let&#8217;s say you want to count wildcard characters in a range, then you can write something like this:<br />
<code>=SUM(IF(NOT(ISERR(FIND("*",data))),1,0))</code></p>
<p>This formula should be entered as an array formula with Ctrl + Shift + Enter. Usually, wildcard can be &#8220;escaped&#8221; using a tilde (~), but the <code>FIND</code> function doesn&#8217;t understand wildcard characters like the <code>SEARCH</code> function does.</p>
]]></content:encoded>
			<wfw:commentRss>http://nandeshwar.info/2009/04/24/count-text-in-a-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text Search Count</title>
		<link>http://nandeshwar.info/2007/06/29/text-search-count/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=text-search-count</link>
		<comments>http://nandeshwar.info/2007/06/29/text-search-count/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 13:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[String Operations]]></category>
		<category><![CDATA[A2 A16]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[SUM]]></category>

		<guid isPermaLink="false">http://a7n9.wordpress.com/2007/06/29/text-search-count/</guid>
		<description><![CDATA[If you want to do a text search count in a range, you can use the following formulas:Where D3 is the search text and the range A2:A16 houses the data. An array formula using SUM and SEARCH {=SUM(IF(ISERROR(SEARCH(D3,A2:A16)),0,1))} Another using COUNTIF: =COUNTIF(A2:A16,&#8221;*&#8221;&#38;D3&#38;&#8221;*&#8221;) This picture might make it clear:]]></description>
			<content:encoded><![CDATA[<p>If you want to do a text search count in a range, you can use the following formulas:<br />Where D3 is the search text and the range A2:A16 houses the data.</p>
<p>An array formula using SUM and SEARCH
<div id="code">{=SUM(IF(ISERROR(SEARCH(D3,A2:A16)),0,1))}</div>
<p>Another using COUNTIF:
<div id="code">=COUNTIF(A2:A16,&#8221;*&#8221;&amp;D3&amp;&#8221;*&#8221;)</div>
<p>This picture might make it clear:<br /><a href="http://www.nandeshwar.info/projects/xlblog/uploaded_images/ExcelCount-723247.JPG"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.nandeshwar.info/projects/xlblog/uploaded_images/ExcelCount-723244.JPG" border="0" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nandeshwar.info/2007/06/29/text-search-count/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Count cells without formulae</title>
		<link>http://nandeshwar.info/2006/08/07/count-cells-without-formulae/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=count-cells-without-formulae</link>
		<comments>http://nandeshwar.info/2006/08/07/count-cells-without-formulae/#comments</comments>
		<pubDate>Mon, 07 Aug 2006 15:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cells]]></category>
		<category><![CDATA[count]]></category>

		<guid isPermaLink="false">http://a7n9.wordpress.com/2006/08/07/count-cells-without-formulae/</guid>
		<description><![CDATA[If you want to count cells in a given range without formulae use this function Function CountNoFormula(rng As Range) As LongDim c As Range&#160;&#160; On Error GoTo CountNoFormula_Error&#160;&#160;&#160;&#160;For Each c In rng&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;If Not c.HasFormula Then&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;CountNoFormula = CountNoFormula + 1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;End If&#160;&#160;&#160;&#160;Next cCountNoFormula_CleanUpExit:&#160;&#160; Exit FunctionCountNoFormula_Error:&#160;&#160;&#160;&#160;CountNoFormula = CVErr(Err.Number)&#160;&#160;&#160;&#160;Resume CountNoFormula_CleanUpExitEnd Function If you want to count cells with formule [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to count cells in a given range without formulae use this function
<div id="code"><font face="Courier"><span style="color:#00007F;">Function</span> CountNoFormula(rng <span style="color:#00007F;">As</span> Range) <span style="color:#00007F;">As</span> <span style="color:#00007F;">Long</span><br /><span style="color:#00007F;">Dim</span> c <span style="color:#00007F;">As</span> Range<br />&#160;&#160; <span style="color:#00007F;">On</span> <span style="color:#00007F;">Error</span> <span style="color:#00007F;">GoTo</span> CountNoFormula_Error<br />&#160;&#160;&#160;&#160;For <span style="color:#00007F;">Each</span> c <span style="color:#00007F;">In</span> rng<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<span style="color:#00007F;">If</span> <span style="color:#00007F;">Not</span> c.HasFormula <span style="color:#00007F;">Then</span><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;CountNoFormula = CountNoFormula + 1<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<span style="color:#00007F;">End</span> <span style="color:#00007F;">If</span><br />&#160;&#160;&#160;&#160;<span style="color:#00007F;">Next</span> c<br />CountNoFormula_CleanUpExit:<br />&#160;&#160; Exit <span style="color:#00007F;">Function</span><br />CountNoFormula_Error:<br />&#160;&#160;&#160;&#160;CountNoFormula = <span style="color:#00007F;">CVErr</span>(Err.Number)<br />&#160;&#160;&#160;&#160;<span style="color:#00007F;">Resume</span> CountNoFormula_CleanUpExit<br /><span style="color:#00007F;">End</span> <span style="color:#00007F;">Function</span></font></div>
<p>If you want to count cells with formule then just remove then &#8220;Not&#8221; in front of c.HasFormula</p>
]]></content:encoded>
			<wfw:commentRss>http://nandeshwar.info/2006/08/07/count-cells-without-formulae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Count number of asterisk (*)</title>
		<link>http://nandeshwar.info/2005/02/10/count-number-of-asterisk/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=count-number-of-asterisk</link>
		<comments>http://nandeshwar.info/2005/02/10/count-number-of-asterisk/#comments</comments>
		<pubDate>Thu, 10 Feb 2005 01:32:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[String Operations]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[excel functions]]></category>
		<category><![CDATA[wildcard]]></category>

		<guid isPermaLink="false">http://a7n9.wordpress.com/2005/02/10/count-number-of-asterix/</guid>
		<description><![CDATA[To count number of asterisk (*) in a column use this formula: =COUNTIF(A1:A3, "=~*")]]></description>
			<content:encoded><![CDATA[<p>To count number of asterisk (*) in a column use this formula:<br />
<code>=COUNTIF(A1:A3, "=~*")</code></p>
]]></content:encoded>
			<wfw:commentRss>http://nandeshwar.info/2005/02/10/count-number-of-asterisk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

