<?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>Vergel's Excel and Visual Basic Blog &#187; How To</title>
	<atom:link href="http://www.vadriano.com/excel-vb/category/excel/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vadriano.com/excel-vb</link>
	<description>Learn Excel and Visual Basic.</description>
	<lastBuildDate>Tue, 04 Mar 2008 01:04:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Working With Comments in Excel</title>
		<link>http://www.vadriano.com/excel-vb/2008/03/03/working-with-comments-in-excel/</link>
		<comments>http://www.vadriano.com/excel-vb/2008/03/03/working-with-comments-in-excel/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 01:04:27 +0000</pubDate>
		<dc:creator>Vergel</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.vadriano.com/excel-vb/2008/03/03/working-with-comments-in-excel/</guid>
		<description><![CDATA[Here's a few lines of code that demonstrates how to hide, show, or delete all comments in the activesheet.  You can easily tweak the code to make it work on sheets other than the activesheet.


Sub HideAllComments&#40;&#41;
&#160; &#160; Dim c As Comment
&#160; &#160; For Each c In ActiveSheet.Comments
&#160; &#160; &#160; &#160; c.Visible = False
&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.vadriano.com/excel-vb/2008/03/03/working-with-comments-in-excel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to get the column letter of the rightmost used column</title>
		<link>http://www.vadriano.com/excel-vb/2008/03/01/how-to-get-the-column-letter-of-the-rightmost-used-column/</link>
		<comments>http://www.vadriano.com/excel-vb/2008/03/01/how-to-get-the-column-letter-of-the-rightmost-used-column/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 17:00:40 +0000</pubDate>
		<dc:creator>Vergel</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.vadriano.com/excel-vb/2008/03/01/how-to-get-the-column-letter-of-the-rightmost-used-column/</guid>
		<description><![CDATA[

Public Function GetLastColumnLetter&#40;&#41; As String
&#160; &#160; Dim strColumnLetter As String
&#160; &#160; Dim ipos As Integer
&#160; &#160; 
&#160; &#160; With ActiveSheet.Range&#40;"IV1"&#41;.End&#40;xlToLeft&#41;.EntireColumn
&#160; &#160; &#160; &#160; GetLastColumnLetter = .Address&#40;False, False&#41;
&#160; &#160; End With
&#160; &#160; ipos = InStr&#40;1, GetLastColumnLetter, ":"&#41;
&#160; &#160; 
&#160; &#160; GetLastColumnLetter = Left&#40;GetLastColumnLetter, ipos - 1&#41;
End Function
Sub Test&#40;&#41;
&#160; &#160; MsgBox GetLastColumnLetter&#40;&#41;
End Sub



]]></description>
		<wfw:commentRss>http://www.vadriano.com/excel-vb/2008/03/01/how-to-get-the-column-letter-of-the-rightmost-used-column/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create a Master Sheet with Hyperlinks</title>
		<link>http://www.vadriano.com/excel-vb/2007/08/11/create-a-master-sheet-with-hyperlinks/</link>
		<comments>http://www.vadriano.com/excel-vb/2007/08/11/create-a-master-sheet-with-hyperlinks/#comments</comments>
		<pubDate>Sat, 11 Aug 2007 17:57:32 +0000</pubDate>
		<dc:creator>Vergel</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.vadriano.com/excel-vb/2007/08/11/create-a-master-sheet-with-hyperlinks/</guid>
		<description><![CDATA[Sometimes it's a good idea to have a master worksheet that would have hyperlinks to the other sheets in the workbook.  Here's a sub procedure that would create a worksheet named "Index" and create the hyperlinks.


Sub CreateIndexSheet&#40;&#41;
&#160; &#160; Dim ws As Worksheet
&#160; &#160; Dim wsIndex As Worksheet
&#160; &#160; Dim lRow As Long
&#160; &#160; With [...]]]></description>
		<wfw:commentRss>http://www.vadriano.com/excel-vb/2007/08/11/create-a-master-sheet-with-hyperlinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
