<?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/"
		>
<channel>
	<title>Comments on: Personal.xls</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 18:06:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Spreadsheet Day 2010 — Top 5 Excel Tips &#171; Contextures Blog</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-70138</link>
		<dc:creator>Spreadsheet Day 2010 — Top 5 Excel Tips &#171; Contextures Blog</dc:creator>
		<pubDate>Wed, 30 Nov 2011 19:24:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-70138</guid>
		<description>[...] problems on the job. His blog posts inspire lots of discussion, and his post on moving from the Personal.xls workbook to personal add-ins was one of my favourites. Dick&#8217;s sample code was great, and [...]</description>
		<content:encoded><![CDATA[<p>[...] problems on the job. His blog posts inspire lots of discussion, and his post on moving from the Personal.xls workbook to personal add-ins was one of my favourites. Dick&#8217;s sample code was great, and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jazzer</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-52794</link>
		<dc:creator>Jazzer</dc:creator>
		<pubDate>Mon, 18 Oct 2010 08:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-52794</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;  how can I assign a VBA macro from .xla file to the Quick Access Toolbar in XL 2007 or 2010?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>  how can I assign a VBA macro from .xla file to the Quick Access Toolbar in XL 2007 or 2010?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tushar Mehta</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-52706</link>
		<dc:creator>Tushar Mehta</dc:creator>
		<pubDate>Fri, 15 Oct 2010 19:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-52706</guid>
		<description>&lt;p&gt;Eric: Yeah, using menus/ribbon &amp; userforms is the way to go.  I am constantly amazed at the amount of energy some invest in memorizing shortcut keys.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Eric: Yeah, using menus/ribbon &amp; userforms is the way to go.  I am constantly amazed at the amount of energy some invest in memorizing shortcut keys.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-52704</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Fri, 15 Oct 2010 19:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-52704</guid>
		<description>&lt;p&gt;Oh yeah, there&#039;s a DeleteErixMenu sub that makes sure that the menu is gone before the latest version is put in ~ Eric&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Oh yeah, there&#8217;s a DeleteErixMenu sub that makes sure that the menu is gone before the latest version is put in ~ Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-52703</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Fri, 15 Oct 2010 19:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-52703</guid>
		<description>&lt;p&gt;So I was inspired by y&#039;all to create my own .xla using Excel 2003 which I use at work and home.&lt;/p&gt;
&lt;p&gt;I have a couple of macro&#039;s that I use all the time and one or two that are workbook specific.  But instead of having hot keys I add them as menu items...&lt;/p&gt;
&lt;p&gt;Sub Auto_Open()&lt;/p&gt;
&lt;p&gt;On Error Resume Next&lt;br&gt;
AddErixMenu&lt;/p&gt;
&lt;p&gt;End Sub&lt;/p&gt;
&lt;p&gt;Sub AddErixMenu()&lt;/p&gt;
&lt;p&gt;&#039;This subroutine adds in the &#039;Erix&#039; menu item to the &#039;Worksheet menu Bar&#039; commandbar&lt;/p&gt;
&lt;p&gt;Dim myMenuBar As CommandBar&lt;br&gt;
Dim newMenuControl As CommandBarControl&lt;br&gt;
Dim ctrl1 As CommandBarControl&lt;/p&gt;
&lt;p&gt;On Error GoTo AEM_Err&lt;/p&gt;
&lt;p&gt;DeleteErixMenu&lt;/p&gt;
&lt;p&gt;Set myMenuBar = Application.CommandBars(&quot;Worksheet Menu Bar&quot;)&lt;br&gt;
Set newMenuControl = myMenuBar.Controls.Add(Type:=msoControlPopup, _&lt;br&gt;
                                    Temporary:=True)&lt;br&gt;
newMenuControl.Caption = &quot;Eri&amp;x&quot;&lt;/p&gt;
&lt;p&gt;&#039;Delete Erix Menu&lt;br&gt;
Set ctrl1 = newMenuControl.Controls _&lt;br&gt;
            .Add(Type:=msoControlButton, _&lt;br&gt;
                 ID:=1)&lt;br&gt;
ctrl1.Caption = &quot;&amp;Delete Erix Menu&quot;&lt;br&gt;
ctrl1.TooltipText = &quot;Gets Rid of the Erix Menu Item&quot;&lt;br&gt;
ctrl1.Style = msoButtonCaption&lt;br&gt;
ctrl1.OnAction = &quot;DeleteErixMenu&quot;&lt;/p&gt;
&lt;p&gt;&#039;Copy the above ctrl1 lines for additional menu items&lt;/p&gt;
&lt;p&gt;GoTo AEM_Exit&lt;/p&gt;
&lt;p&gt;AEM_Err:&lt;br&gt;
    MsgBox &quot;Unknown Error in Subroutine AddErixMenu&quot;, _&lt;br&gt;
           vbOKOnly, _&lt;br&gt;
           &quot;Error Report&quot;&lt;/p&gt;
&lt;p&gt;AEM_Exit:&lt;/p&gt;
&lt;p&gt;Set ctrl1 = Nothing&lt;br&gt;
Set newMenuControl = Nothing&lt;br&gt;
Set myMenuBar = Nothing&lt;/p&gt;
&lt;p&gt;End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>So I was inspired by y&#8217;all to create my own .xla using Excel 2003 which I use at work and home.</p>
<p>I have a couple of macro&#8217;s that I use all the time and one or two that are workbook specific.  But instead of having hot keys I add them as menu items&#8230;</p>
<p>Sub Auto_Open()</p>
<p>On Error Resume Next<br />
AddErixMenu</p>
<p>End Sub</p>
<p>Sub AddErixMenu()</p>
<p>&#8216;This subroutine adds in the &#8216;Erix&#8217; menu item to the &#8216;Worksheet menu Bar&#8217; commandbar</p>
<p>Dim myMenuBar As CommandBar<br />
Dim newMenuControl As CommandBarControl<br />
Dim ctrl1 As CommandBarControl</p>
<p>On Error GoTo AEM_Err</p>
<p>DeleteErixMenu</p>
<p>Set myMenuBar = Application.CommandBars(&#8220;Worksheet Menu Bar&#8221;)<br />
Set newMenuControl = myMenuBar.Controls.Add(Type:=msoControlPopup, _<br />
                                    Temporary:=True)<br />
newMenuControl.Caption = &#8220;Eri&amp;x&#8221;</p>
<p>&#8216;Delete Erix Menu<br />
Set ctrl1 = newMenuControl.Controls _<br />
            .Add(Type:=msoControlButton, _<br />
                 ID:=1)<br />
ctrl1.Caption = &#8220;&amp;Delete Erix Menu&#8221;<br />
ctrl1.TooltipText = &#8220;Gets Rid of the Erix Menu Item&#8221;<br />
ctrl1.Style = msoButtonCaption<br />
ctrl1.OnAction = &#8220;DeleteErixMenu&#8221;</p>
<p>&#8216;Copy the above ctrl1 lines for additional menu items</p>
<p>GoTo AEM_Exit</p>
<p>AEM_Err:<br />
    MsgBox &#8220;Unknown Error in Subroutine AddErixMenu&#8221;, _<br />
           vbOKOnly, _<br />
           &#8220;Error Report&#8221;</p>
<p>AEM_Exit:</p>
<p>Set ctrl1 = Nothing<br />
Set newMenuControl = Nothing<br />
Set myMenuBar = Nothing</p>
<p>End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Contextures Blog » Spreadsheet Day 2010  Top 5 Excel Tips</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-52667</link>
		<dc:creator>Contextures Blog » Spreadsheet Day 2010  Top 5 Excel Tips</dc:creator>
		<pubDate>Fri, 15 Oct 2010 05:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-52667</guid>
		<description>&lt;p&gt;[...] problems on the job. His blog posts inspire lots of discussion, and his post on moving from the Personal.xls workbook to personal add-ins was one of my favourites. Dick&#039;s sample code was great, and there are [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] problems on the job. His blog posts inspire lots of discussion, and his post on moving from the Personal.xls workbook to personal add-ins was one of my favourites. Dick&#8217;s sample code was great, and there are [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-49450</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Fri, 27 Aug 2010 20:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-49450</guid>
		<description>&lt;p&gt;I am new to excel macro&#039;s.  Have been reading Jelen&#039;s Macro&#039;s &amp; VBA for Excel 2007.  I am running into some very strange behavior before I even start.  After I name the macro and give it a short cut, if I ask it to save to my personal macro workbook.  I get a password prompt titled VBAProject Password.  I haven&#039;t ever recorded a macro so I don&#039;t think I have password protected anything.  Any suggestions would be appreciated.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I am new to excel macro&#8217;s.  Have been reading Jelen&#8217;s Macro&#8217;s &amp; VBA for Excel 2007.  I am running into some very strange behavior before I even start.  After I name the macro and give it a short cut, if I ask it to save to my personal macro workbook.  I get a password prompt titled VBAProject Password.  I haven&#8217;t ever recorded a macro so I don&#8217;t think I have password protected anything.  Any suggestions would be appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gordon</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-49433</link>
		<dc:creator>Gordon</dc:creator>
		<pubDate>Fri, 27 Aug 2010 09:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-49433</guid>
		<description>&lt;p&gt;@Toby&lt;/p&gt;
&lt;p&gt;You can install an add-in from a central location rather than from the user&#039;s default add-in folder.  This allows you to update the add-in and have all users working off the most recent version available when they opened Excel.&lt;/p&gt;
&lt;p&gt;If you absolutely need them to be using the most up to date version then you can store a current version number in a database table or text file somewhere and have the add-in check it is up to date and warn/disallow progress until it is reloaded.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Toby</p>
<p>You can install an add-in from a central location rather than from the user&#8217;s default add-in folder.  This allows you to update the add-in and have all users working off the most recent version available when they opened Excel.</p>
<p>If you absolutely need them to be using the most up to date version then you can store a current version number in a database table or text file somewhere and have the add-in check it is up to date and warn/disallow progress until it is reloaded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toby</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-49378</link>
		<dc:creator>toby</dc:creator>
		<pubDate>Thu, 26 Aug 2010 03:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-49378</guid>
		<description>&lt;p&gt;How can i share (or sync) VBA macro between users (PCs)?&lt;br&gt;
Thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>How can i share (or sync) VBA macro between users (PCs)?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Hill</title>
		<link>http://www.dailydoseofexcel.com/archives/2010/07/20/personalxls/#comment-48644</link>
		<dc:creator>Steve Hill</dc:creator>
		<pubDate>Thu, 05 Aug 2010 14:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=4055#comment-48644</guid>
		<description>&lt;p&gt;Thanks, that&#039;s a great help.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks, that&#8217;s a great help.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

