<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: Using Fill Handle for the Alphabet	</title>
	<atom:link href="https://excelzoom.com/using-fill-handle-for-the-alphabet/feed/" rel="self" type="application/rss+xml" />
	<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/</link>
	<description>...because it&#039;s more than just a calculator</description>
	<lastBuildDate>Mon, 01 May 2017 15:10:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: larry		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-2067</link>

		<dc:creator><![CDATA[larry]]></dc:creator>
		<pubDate>Mon, 01 May 2017 15:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-2067</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-862&quot;&gt;Sebastiaan&lt;/a&gt;.

=LEFT(ADDRESS(1,ROW(), 4), IF(ROW()&#062;26, 2, 1))]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-862">Sebastiaan</a>.</p>
<p>=LEFT(ADDRESS(1,ROW(), 4), IF(ROW()&gt;26, 2, 1))</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Don Delos Santos		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-1724</link>

		<dc:creator><![CDATA[Don Delos Santos]]></dc:creator>
		<pubDate>Fri, 03 Jul 2015 00:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-1724</guid>

					<description><![CDATA[Job well done.
thanks!]]></description>
			<content:encoded><![CDATA[<p>Job well done.<br />
thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bigger Don		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-1485</link>

		<dc:creator><![CDATA[Bigger Don]]></dc:creator>
		<pubDate>Thu, 05 Feb 2015 14:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-1485</guid>

					<description><![CDATA[Of course MS changed things after 2007.

1. Click the File menu/tab.
2. When that opens, click Options from the left-hand side, near the bottom
3.  When Excel options opens, click Advance.
4. When the Advanced Options open, scroll to near the bottom and click the EDIT CUSTOM LISTS button.

and away you go!

As to the A-Z and a-z,  here&#039;s yet another way to do this.
In A1, =char(row()+64)
In B1, =char(lower(A1))

Drag down to row 26, copy/PasteSpecial...Values.

Now do the Import.]]></description>
			<content:encoded><![CDATA[<p>Of course MS changed things after 2007.</p>
<p>1. Click the File menu/tab.<br />
2. When that opens, click Options from the left-hand side, near the bottom<br />
3.  When Excel options opens, click Advance.<br />
4. When the Advanced Options open, scroll to near the bottom and click the EDIT CUSTOM LISTS button.</p>
<p>and away you go!</p>
<p>As to the A-Z and a-z,  here&#8217;s yet another way to do this.<br />
In A1, =char(row()+64)<br />
In B1, =char(lower(A1))</p>
<p>Drag down to row 26, copy/PasteSpecial&#8230;Values.</p>
<p>Now do the Import.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott DeLuzio		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-1104</link>

		<dc:creator><![CDATA[Scott DeLuzio]]></dc:creator>
		<pubDate>Thu, 07 Aug 2014 16:10:37 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-1104</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-1103&quot;&gt;Orlando Mezquita&lt;/a&gt;.

Thanks for the tip. There&#039;s always more than one way to get things done!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-1103">Orlando Mezquita</a>.</p>
<p>Thanks for the tip. There&#8217;s always more than one way to get things done!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Orlando Mezquita		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-1103</link>

		<dc:creator><![CDATA[Orlando Mezquita]]></dc:creator>
		<pubDate>Thu, 07 Aug 2014 14:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-1103</guid>

					<description><![CDATA[Another alternative would be to enter =CHAR(ROW(A65)) and drag it down.

If the formula needs to be built to be drag it to the right then you could use:

=CHAR(64+COLUMN(A1))]]></description>
			<content:encoded><![CDATA[<p>Another alternative would be to enter =CHAR(ROW(A65)) and drag it down.</p>
<p>If the formula needs to be built to be drag it to the right then you could use:</p>
<p>=CHAR(64+COLUMN(A1))</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: asif ullah		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-1034</link>

		<dc:creator><![CDATA[asif ullah]]></dc:creator>
		<pubDate>Fri, 23 May 2014 06:09:56 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-1034</guid>

					<description><![CDATA[If you fill A to Z chareter in column-B, 1st type 65 in cell A1 and Ctrl+drag down up to A26 and then click cell B1, type =Char(A1) and enter again click in cell B1 drag down up to B26
 Thanks]]></description>
			<content:encoded><![CDATA[<p>If you fill A to Z chareter in column-B, 1st type 65 in cell A1 and Ctrl+drag down up to A26 and then click cell B1, type =Char(A1) and enter again click in cell B1 drag down up to B26<br />
 Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kasusx		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-971</link>

		<dc:creator><![CDATA[kasusx]]></dc:creator>
		<pubDate>Mon, 03 Feb 2014 21:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-971</guid>

					<description><![CDATA[great post, thanx]]></description>
			<content:encoded><![CDATA[<p>great post, thanx</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mohamed fawzy		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-934</link>

		<dc:creator><![CDATA[Mohamed fawzy]]></dc:creator>
		<pubDate>Mon, 18 Nov 2013 18:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-934</guid>

					<description><![CDATA[Excellent specially the third one.
thank you.]]></description>
			<content:encoded><![CDATA[<p>Excellent specially the third one.<br />
thank you.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sebastiaan		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-862</link>

		<dc:creator><![CDATA[Sebastiaan]]></dc:creator>
		<pubDate>Fri, 26 Oct 2012 12:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-862</guid>

					<description><![CDATA[Is there any way to keep it going up till the end of the excel sheet? with all the formulas ive found its seems to end at one point or another. In other words I need it to include &quot;Mashik&quot; or &quot;Hart&quot; if i search those.]]></description>
			<content:encoded><![CDATA[<p>Is there any way to keep it going up till the end of the excel sheet? with all the formulas ive found its seems to end at one point or another. In other words I need it to include &#8220;Mashik&#8221; or &#8220;Hart&#8221; if i search those.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ken Wilmloth		</title>
		<link>https://excelzoom.com/using-fill-handle-for-the-alphabet/#comment-803</link>

		<dc:creator><![CDATA[Ken Wilmloth]]></dc:creator>
		<pubDate>Sat, 28 Jan 2012 18:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=95#comment-803</guid>

					<description><![CDATA[&lt;a href=&quot;#comment-800&quot; rel=&quot;nofollow&quot;&gt;@Beverly Reed &lt;/a&gt; 
When you get to the point of having the alphabetic characters in column B, select the cells containing the alphabetic characters and then copy the cells;  then move to column C and use &quot;Paste Special&quot; selecting to copy only &quot;values&quot;. Then then finish the &quot;Copy Special&quot; process.  This will result in the cells of column C containing the desired alphabetic characters.

The &quot;Copy Special&quot; process is useful when copying the results of a calculations into situations when you want a &quot;clean&quot; result.]]></description>
			<content:encoded><![CDATA[<p><a href="#comment-800" rel="nofollow">@Beverly Reed </a><br />
When you get to the point of having the alphabetic characters in column B, select the cells containing the alphabetic characters and then copy the cells;  then move to column C and use &#8220;Paste Special&#8221; selecting to copy only &#8220;values&#8221;. Then then finish the &#8220;Copy Special&#8221; process.  This will result in the cells of column C containing the desired alphabetic characters.</p>
<p>The &#8220;Copy Special&#8221; process is useful when copying the results of a calculations into situations when you want a &#8220;clean&#8221; result.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
