<?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; Excel</title>
	<atom:link href="http://www.vadriano.com/excel-vb/category/excel/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>Worksheet Functions in VBA</title>
		<link>http://www.vadriano.com/excel-vb/2007/09/14/worksheet-functions-in-vba/</link>
		<comments>http://www.vadriano.com/excel-vb/2007/09/14/worksheet-functions-in-vba/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 00:26:36 +0000</pubDate>
		<dc:creator>Vergel</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.vadriano.com/excel-vb/2007/09/14/worksheet-functions-in-vba/</guid>
		<description><![CDATA[Most worksheet functions are available for use in VBA using the WorksheetFunction object.  For example, the worksheet function:
=SUM(A1:A100)
will have this equivalent in VBA:
WorksheetFunction.Sum(Range("A1:A100"))
Try putting values in range A1:A10, and try this sample code:


Sub test&#40;&#41;
&#160; &#160; Dim r As Range
&#160; &#160; 
&#160; &#160; Set r = Worksheets&#40;"Sheet1"&#41;.Range&#40;"A1:A10"&#41;
&#160; &#160; MsgBox "Sum = " &#38; GetSum&#40;r&#41; &#38; [...]]]></description>
		<wfw:commentRss>http://www.vadriano.com/excel-vb/2007/09/14/worksheet-functions-in-vba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
