<?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; wildcard</title>
	<atom:link href="http://nandeshwar.info/tag/wildcard/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>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>

