<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Count Characters in a Cell</title>
	<atom:link href="http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/</link>
	<description>Everything Excel. Only Excel.</description>
	<lastBuildDate>Mon, 21 Nov 2011 07:25:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: zafnim</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-2389</link>
		<dc:creator>zafnim</dc:creator>
		<pubDate>Mon, 21 Nov 2011 07:25:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-2389</guid>
		<description>thanx buddy... its working for meee.</description>
		<content:encoded><![CDATA[<p>thanx buddy&#8230; its working for meee.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duke</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-2125</link>
		<dc:creator>Duke</dc:creator>
		<pubDate>Mon, 27 Jun 2011 15:16:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-2125</guid>
		<description>Genius.</description>
		<content:encoded><![CDATA[<p>Genius.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wirawan</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-2076</link>
		<dc:creator>Wirawan</dc:creator>
		<pubDate>Mon, 25 Apr 2011 09:37:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-2076</guid>
		<description>Very Good Job</description>
		<content:encoded><![CDATA[<p>Very Good Job</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khan</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-2050</link>
		<dc:creator>Khan</dc:creator>
		<pubDate>Sun, 10 Apr 2011 03:31:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-2050</guid>
		<description>in Excel How to count total number of “consecutive” cells have same characters with a selection of cells?</description>
		<content:encoded><![CDATA[<p>in Excel How to count total number of “consecutive” cells have same characters with a selection of cells?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suhana</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-2025</link>
		<dc:creator>suhana</dc:creator>
		<pubDate>Sat, 19 Mar 2011 17:21:22 +0000</pubDate>
		<guid isPermaLink="false">#comment-2025</guid>
		<description>thanks it works for me.</description>
		<content:encoded><![CDATA[<p>thanks it works for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajeet</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-1973</link>
		<dc:creator>Ajeet</dc:creator>
		<pubDate>Tue, 08 Feb 2011 06:31:22 +0000</pubDate>
		<guid isPermaLink="false">#comment-1973</guid>
		<description>Wonderful.</description>
		<content:encoded><![CDATA[<p>Wonderful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarath Chandran</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-1962</link>
		<dc:creator>Sarath Chandran</dc:creator>
		<pubDate>Sat, 29 Jan 2011 14:49:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-1962</guid>
		<description>How to add the total numbers in a cell. For eg if in the cell A1 the number is 98956, i want to add 9+8+9+5+6
the total will be 37</description>
		<content:encoded><![CDATA[<p>How to add the total numbers in a cell. For eg if in the cell A1 the number is 98956, i want to add 9+8+9+5+6<br />
the total will be 37</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mirclin</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-1906</link>
		<dc:creator>Mirclin</dc:creator>
		<pubDate>Sun, 26 Dec 2010 06:12:42 +0000</pubDate>
		<guid isPermaLink="false">#comment-1906</guid>
		<description>Please check to see if your spreadsheet program uses , or ; as a seperator between arguments. With open office, the correct syntax of the expression is to use ; as shown below:
=LEN(A1)-LEN(SUBSTITUTE(A1;”d“;”&quot;))
When in doubt, let the program build the expression and add the arguments in the proper locations.
This information was VERY helpful in what I was trying to accomplish!</description>
		<content:encoded><![CDATA[<p>Please check to see if your spreadsheet program uses , or ; as a seperator between arguments. With open office, the correct syntax of the expression is to use ; as shown below:<br />
=LEN(A1)-LEN(SUBSTITUTE(A1;”d“;”&#8221;))<br />
When in doubt, let the program build the expression and add the arguments in the proper locations.<br />
This information was VERY helpful in what I was trying to accomplish!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darren</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-1836</link>
		<dc:creator>Darren</dc:creator>
		<pubDate>Tue, 30 Nov 2010 17:43:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-1836</guid>
		<description>That was very helpful. I used it to filter a string of numbers that had to be of so many numbers (5 and 4 respectively). Using the LEN command, I could then filter from smallest to greatest and concatonate zeroes to the end of the numbers that were fewer than four or five digits. 

Thanks!</description>
		<content:encoded><![CDATA[<p>That was very helpful. I used it to filter a string of numbers that had to be of so many numbers (5 and 4 respectively). Using the LEN command, I could then filter from smallest to greatest and concatonate zeroes to the end of the numbers that were fewer than four or five digits. </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rage against the Machine</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/comment-page-1/#comment-1140</link>
		<dc:creator>Rage against the Machine</dc:creator>
		<pubDate>Mon, 02 Feb 2009 17:08:42 +0000</pubDate>
		<guid isPermaLink="false">#comment-1140</guid>
		<description>Thanks the formula worked for me. I think the cell you are pasting the formula in is of type text. Change the format of the Cell to general and retry.</description>
		<content:encoded><![CDATA[<p>Thanks the formula worked for me. I think the cell you are pasting the formula in is of type text. Change the format of the Cell to general and retry.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

