<?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>Automate Excel &#187; cell</title>
	<atom:link href="http://www.automateexcel.com/tag/cell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com</link>
	<description>Everything Excel. Only Excel.</description>
	<lastBuildDate>Wed, 24 Nov 2010 21:08:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>VBA Routine to return Column Letter of Cell</title>
		<link>http://www.automateexcel.com/2008/11/04/vba-routine-to-return-column-letter-of-cell/</link>
		<comments>http://www.automateexcel.com/2008/11/04/vba-routine-to-return-column-letter-of-cell/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 04:27:03 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[column letter]]></category>
		<category><![CDATA[routine]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=1115</guid>
		<description><![CDATA[The standard Excel “Column” Function returns the number rather than the letter of the column e.g: Column(E4) – returns the number 5 rather than the letter E Column(AD12) returns the number 30 rather than AD. The following function returns the letter rather than the number of the column. So in the above two examples we [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/11/04/vba-routine-to-return-column-letter-of-cell/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Create an In Cell Chart Using VBA</title>
		<link>http://www.automateexcel.com/2008/09/12/create-an-in-cell-chart-using-vba/</link>
		<comments>http://www.automateexcel.com/2008/09/12/create-an-in-cell-chart-using-vba/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 08:25:52 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Charts]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[user defined]]></category>
		<category><![CDATA[workbook]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=864</guid>
		<description><![CDATA[The following tutorial will describe how to create a chart in a cell like the one displayed in the table above under the “Trend” column. The chart is created using a function called “CellChart”. You would enter it in Excel like any other standard function i.e. SUM, AVERAGE or VLOOKUP etc. This function is called [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/12/create-an-in-cell-chart-using-vba/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Create and Display a Chart in a cell</title>
		<link>http://www.automateexcel.com/2008/08/23/how-to-create-and-display-a-chart-in-a-cell/</link>
		<comments>http://www.automateexcel.com/2008/08/23/how-to-create-and-display-a-chart-in-a-cell/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 13:52:08 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Charts]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[wingdings]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=832</guid>
		<description><![CDATA[This is a simple tutorial on how to create and display a bar chart in a cell; a technique that works very well when creating management reports. Steps: 1. In column A enter the values you want to display i.e. in cell A1 enter the value 10, in cell A2 20 etc. 2. In column [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/08/23/how-to-create-and-display-a-chart-in-a-cell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Count Characters in a Cell</title>
		<link>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/</link>
		<comments>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/#comments</comments>
		<pubDate>Thu, 21 Oct 2004 06:40:15 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[count]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[To count the total characters (including spaces) in cell A1: =len(A1) To count the total characters (not including spaces) in cell A1: =LEN(SUBSTITUTE(A1," ","")) To count the total specific characters in Cell A1, for instance the number of times the letter &#8220;d&#8221; appears in cell A1: =LEN(A1)-LEN(SUBSTITUTE(A1,"d",""))]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/10/21/excel_count_characters_in_a_cell/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>VBA: Get the active cell&#8217;s Column</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_get_the_active_cell_s_column/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_get_the_active_cell_s_column/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:24:52 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[active]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[If you need to get the active cell&#8217;s column from VBA, this should do it! Put this in a module: Public Sub ActiveColumn() MsgBox ActiveCell.Column End Sub]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_get_the_active_cell_s_column/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Get the active cell&#8217;s Row</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_get_the_active_cell_s_row/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_get_the_active_cell_s_row/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:18:54 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[active]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[If you need to get the active cell&#8217;s row from VBA, this should do it! Put this in a module: Sub MyActiveRow() MsgBox Activecell.Row End Sub]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_get_the_active_cell_s_row/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

