<?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"
	>
<channel>
	<title>Comments for Automate Excel</title>
	<atom:link href="http://www.automateexcel.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com</link>
	<description>Hundreds of Excel Tips &#38; Tricks</description>
	<pubDate>Wed, 19 Nov 2008 03:55:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>Comment on VBA: Exit Without Saving by Wendell</title>
		<link>http://www.automateexcel.com/2004/10/22/excel_vba_exit_without_saving/#comment-1032</link>
		<dc:creator>Wendell</dc:creator>
		<pubDate>Wed, 12 Nov 2008 21:54:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-1032</guid>
		<description>This is just what I was looking for.
Thanks</description>
		<content:encoded><![CDATA[<p>This is just what I was looking for.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA: Yes or No Message Box by SK</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/#comment-1027</link>
		<dc:creator>SK</dc:creator>
		<pubDate>Mon, 10 Nov 2008 19:47:18 +0000</pubDate>
		<guid isPermaLink="false">#comment-1027</guid>
		<description>Sub MsgBox4()
        
        MsgBox title:="Analysis of Acctg Activities", Prompt:="Can not execute your command.  No data availabe for that period."

End Sub

When run this code it jumps to the conclusion.  "Wrong number of orgumaents or invalid property assignment" and shows the MsgBox.  I ran this code before several times without any problem.  Now I am using Excel 2007.</description>
		<content:encoded><![CDATA[<p>Sub MsgBox4()</p>
<p>        MsgBox title:=&#8221;Analysis of Acctg Activities&#8221;, Prompt:=&#8221;Can not execute your command.  No data availabe for that period.&#8221;</p>
<p>End Sub</p>
<p>When run this code it jumps to the conclusion.  &#8220;Wrong number of orgumaents or invalid property assignment&#8221; and shows the MsgBox.  I ran this code before several times without any problem.  Now I am using Excel 2007.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Repeat the Last Action by Repeat the Last Action &#124; CompuFiciency -- Applied CompuTelligence</title>
		<link>http://www.automateexcel.com/2004/08/15/excel_shortcut_repeat_the_last_action/#comment-1018</link>
		<dc:creator>Repeat the Last Action &#124; CompuFiciency -- Applied CompuTelligence</dc:creator>
		<pubDate>Sun, 09 Nov 2008 01:04:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-1018</guid>
		<description>[...] Repeat the Last Action Actions are generally defined as things you do with menus and title bars, like merging, formatting, running macros, etc, not typing in a cell. Sometimes you may like to repeat the last action easily, without going back through the menus again, there’s a shortcut! [...]</description>
		<content:encoded><![CDATA[<p>[...] Repeat the Last Action Actions are generally defined as things you do with menus and title bars, like merging, formatting, running macros, etc, not typing in a cell. Sometimes you may like to repeat the last action easily, without going back through the menus again, there’s a shortcut! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA Routine to return Column Letter of Cell by Andy Pope</title>
		<link>http://www.automateexcel.com/2008/11/04/vba-routine-to-return-column-letter-of-cell/#comment-1006</link>
		<dc:creator>Andy Pope</dc:creator>
		<pubDate>Wed, 05 Nov 2008 16:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.automateexcel.com/?p=1115#comment-1006</guid>
		<description>I would use worksheet formula

=SUBSTITUTE(ADDRESS(1,COLUMN(AD12),2),"$1","")

Or UDF

Function ColumnLetter(Cell_Add) As String
    ColumnLetter = Replace(Cell_Add.EntireColumn.Cells(1).Address(, False), "$1", "")
End Function</description>
		<content:encoded><![CDATA[<p>I would use worksheet formula</p>
<p>=SUBSTITUTE(ADDRESS(1,COLUMN(AD12),2),&#8221;$1&#8243;,&#8221;")</p>
<p>Or UDF</p>
<p>Function ColumnLetter(Cell_Add) As String<br />
    ColumnLetter = Replace(Cell_Add.EntireColumn.Cells(1).Address(, False), &#8220;$1&#8243;, &#8220;&#8221;)<br />
End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Excel Creating Unique Identifiers by John</title>
		<link>http://www.automateexcel.com/2008/10/20/excel-creating-unique-identifiers/#comment-1005</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 05 Nov 2008 15:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.automateexcel.com/?p=1003#comment-1005</guid>
		<description>Jason

I assume this only works on 2007, I'm using Excel 2003 &#38; can't seem to get it to work.</description>
		<content:encoded><![CDATA[<p>Jason</p>
<p>I assume this only works on 2007, I&#8217;m using Excel 2003 &amp; can&#8217;t seem to get it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA Routine to return Column Letter of Cell by Jon Peltier</title>
		<link>http://www.automateexcel.com/2008/11/04/vba-routine-to-return-column-letter-of-cell/#comment-1003</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 04 Nov 2008 13:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.automateexcel.com/?p=1115#comment-1003</guid>
		<description>I did this UDF before I saw Nick's simple worksheet formula. Both are simpler than the original.

Public Function ColumnLetters(rng As Range)
  Dim sAddr As String
  Dim sTrim As String
  
  sAddr = rng.Address(True, True, xlA1)
  sTrim = Mid(sAddr, 2)
  sTrim = Left(sTrim, InStr(sTrim, "$") - 1)
  
  ColumnLetters = sTrim
End Function</description>
		<content:encoded><![CDATA[<p>I did this UDF before I saw Nick&#8217;s simple worksheet formula. Both are simpler than the original.</p>
<p>Public Function ColumnLetters(rng As Range)<br />
  Dim sAddr As String<br />
  Dim sTrim As String</p>
<p>  sAddr = rng.Address(True, True, xlA1)<br />
  sTrim = Mid(sAddr, 2)<br />
  sTrim = Left(sTrim, InStr(sTrim, &#8220;$&#8221;) - 1)</p>
<p>  ColumnLetters = sTrim<br />
End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA Routine to return Column Letter of Cell by Nick Burns</title>
		<link>http://www.automateexcel.com/2008/11/04/vba-routine-to-return-column-letter-of-cell/#comment-1001</link>
		<dc:creator>Nick Burns</dc:creator>
		<pubDate>Tue, 04 Nov 2008 06:37:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.automateexcel.com/?p=1115#comment-1001</guid>
		<description>Couldn't all that for determining the column letter be reduced to this:

Alpha_Column = Mid(Cell_Add.Address, 2, InStr(2, Cell_Add.Address, "$") - 2)</description>
		<content:encoded><![CDATA[<p>Couldn&#8217;t all that for determining the column letter be reduced to this:</p>
<p>Alpha_Column = Mid(Cell_Add.Address, 2, InStr(2, Cell_Add.Address, &#8220;$&#8221;) - 2)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA Routine to return Column Letter of Cell by Stan Scott</title>
		<link>http://www.automateexcel.com/2008/11/04/vba-routine-to-return-column-letter-of-cell/#comment-1000</link>
		<dc:creator>Stan Scott</dc:creator>
		<pubDate>Tue, 04 Nov 2008 05:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.automateexcel.com/?p=1115#comment-1000</guid>
		<description>I always use this:

Function Alpha_Column(Cell_Add as Range)
     Alpha_Column = Replace(Replace(Cell_Add,"$",""),Row(Cell_Add),"")
End Function

Stan</description>
		<content:encoded><![CDATA[<p>I always use this:</p>
<p>Function Alpha_Column(Cell_Add as Range)<br />
     Alpha_Column = Replace(Replace(Cell_Add,&#8221;$&#8221;,&#8221;"),Row(Cell_Add),&#8221;")<br />
End Function</p>
<p>Stan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Find the nth Word in a String by Jon Peltier</title>
		<link>http://www.automateexcel.com/2008/10/31/find-the-nth-word-in-a-string/#comment-988</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 31 Oct 2008 16:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.automateexcel.com/?p=1101#comment-988</guid>
		<description>This might be simpler and more reliable:

Function Find_Nth_Word(sPhrase As String, iWord As Long) As String
  Dim vPhrase As Variant
  Dim iLen As Long
  
  sPhrase = Trim$(sPhrase)
  Do
    iLen = Len(sPhrase)
    sPhrase = Replace(sPhrase, "  ", " ")
    If iLen = Len(sPhrase) Then Exit Do
  Loop
  vPhrase = Split(sPhrase, " ")
  If iWord - 1 &#60;= UBound(vPhrase) Then
    Find_Nth_Word = vPhrase(iWord - 1)
  End If
End Function</description>
		<content:encoded><![CDATA[<p>This might be simpler and more reliable:</p>
<p>Function Find_Nth_Word(sPhrase As String, iWord As Long) As String<br />
  Dim vPhrase As Variant<br />
  Dim iLen As Long</p>
<p>  sPhrase = Trim$(sPhrase)<br />
  Do<br />
    iLen = Len(sPhrase)<br />
    sPhrase = Replace(sPhrase, &#8221;  &#8220;, &#8221; &#8220;)<br />
    If iLen = Len(sPhrase) Then Exit Do<br />
  Loop<br />
  vPhrase = Split(sPhrase, &#8221; &#8220;)<br />
  If iWord - 1 &lt;= UBound(vPhrase) Then<br />
    Find_Nth_Word = vPhrase(iWord - 1)<br />
  End If<br />
End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create an RSS Feed With Excel by Mike</title>
		<link>http://www.automateexcel.com/2004/12/15/create_an_rss_feed_with_excel/#comment-987</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 30 Oct 2008 21:14:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-987</guid>
		<description>This is a great way to use excel. I've been looking for something to make RSS feeds to import into wordpress. Is it possible to add the 'pub date' tag into the rss feed??

-Mike</description>
		<content:encoded><![CDATA[<p>This is a great way to use excel. I&#8217;ve been looking for something to make RSS feeds to import into wordpress. Is it possible to add the &#8216;pub date&#8217; tag into the rss feed??</p>
<p>-Mike</p>
]]></content:encoded>
	</item>
</channel>
</rss>
