<?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: Fun with Custom Lists</title>
	<atom:link href="http://datapigtechnologies.com/blog/index.php/fun-with-custom-lists/feed/" rel="self" type="application/rss+xml" />
	<link>http://datapigtechnologies.com/blog/index.php/fun-with-custom-lists/</link>
	<description>A DataPig Technologies Blog</description>
	<lastBuildDate>Wed, 08 Feb 2012 00:53:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: kk</title>
		<link>http://datapigtechnologies.com/blog/index.php/fun-with-custom-lists/comment-page-1/#comment-18841</link>
		<dc:creator>kk</dc:creator>
		<pubDate>Wed, 20 Jul 2011 22:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=1704#comment-18841</guid>
		<description>i&#039;m not sure why you need vba within excel ... i&#039;d much rather compare the binary strings and push/append the regkey. pros? cons?</description>
		<content:encoded><![CDATA[<p>i&#8217;m not sure why you need vba within excel &#8230; i&#8217;d much rather compare the binary strings and push/append the regkey. pros? cons?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: General Ledger</title>
		<link>http://datapigtechnologies.com/blog/index.php/fun-with-custom-lists/comment-page-1/#comment-5520</link>
		<dc:creator>General Ledger</dc:creator>
		<pubDate>Fri, 24 Sep 2010 00:23:01 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=1704#comment-5520</guid>
		<description>Great topic but not sure about your scenario.  You can add a custom list by importing it from an Excel file.  As you said, if you want to share a list with people who all have lame Excel skills, get them to run VBA.  I am not sure getting them to run VBA would be better than getting them to import a list from a file.</description>
		<content:encoded><![CDATA[<p>Great topic but not sure about your scenario.  You can add a custom list by importing it from an Excel file.  As you said, if you want to share a list with people who all have lame Excel skills, get them to run VBA.  I am not sure getting them to run VBA would be better than getting them to import a list from a file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lantere</title>
		<link>http://datapigtechnologies.com/blog/index.php/fun-with-custom-lists/comment-page-1/#comment-3282</link>
		<dc:creator>lantere</dc:creator>
		<pubDate>Thu, 11 Feb 2010 13:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=1704#comment-3282</guid>
		<description>@BEL8490
&quot;...Office suite in language X installed on a Windows system in language Y, then you have twice the standard lists...&quot;

Interesting.

Also, it seems the same thing happens if you have two Office Suites (2003 + 2007) installed.
(At least on my Home PC as well as on my Work PC.)</description>
		<content:encoded><![CDATA[<p>@BEL8490<br />
&#8220;&#8230;Office suite in language X installed on a Windows system in language Y, then you have twice the standard lists&#8230;&#8221;</p>
<p>Interesting.</p>
<p>Also, it seems the same thing happens if you have two Office Suites (2003 + 2007) installed.<br />
(At least on my Home PC as well as on my Work PC.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Weir</title>
		<link>http://datapigtechnologies.com/blog/index.php/fun-with-custom-lists/comment-page-1/#comment-3255</link>
		<dc:creator>Jeff Weir</dc:creator>
		<pubDate>Mon, 08 Feb 2010 09:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=1704#comment-3255</guid>
		<description>Mike: All that reading of Walkenbach&#039;s power programming with VBA has paid off... I&#039;ve substantively improved your macro:

Sub Add_Big_Mac()
Dim i As Integer
&#039;Check if the list exists.
    i = Application.GetCustomListNum(Array(&quot;5 rashers of Streaky Bacon&quot;,&quot;Two All Beef Patties&quot;, &quot;Special Sauce&quot;, &quot;Lettuce&quot;, &quot;Cheese&quot;, &quot;Pickles&quot;, &quot;Onions&quot;, &quot;Sesame Seed Bun&quot;))

&#039;Exit if the list is already there.
    If i&gt; 0 Then
        Exit Sub
    Else
&#039;Add the list if it does not exist.
        Application.AddCustomList (Array(&quot;5 Rashers of Streaky Bacon&quot;,&quot;Two All Beef Patties&quot;, &quot;Special Sauce&quot;, &quot;Lettuce&quot;, &quot;Cheese&quot;, &quot;Pickles&quot;, &quot;Onions&quot;, &quot;Sesame Seed Bun&quot;))
    End If
End Sub</description>
		<content:encoded><![CDATA[<p>Mike: All that reading of Walkenbach&#8217;s power programming with VBA has paid off&#8230; I&#8217;ve substantively improved your macro:</p>
<p>Sub Add_Big_Mac()<br />
Dim i As Integer<br />
&#8216;Check if the list exists.<br />
    i = Application.GetCustomListNum(Array(&#8220;5 rashers of Streaky Bacon&#8221;,&#8221;Two All Beef Patties&#8221;, &#8220;Special Sauce&#8221;, &#8220;Lettuce&#8221;, &#8220;Cheese&#8221;, &#8220;Pickles&#8221;, &#8220;Onions&#8221;, &#8220;Sesame Seed Bun&#8221;))</p>
<p>&#8216;Exit if the list is already there.<br />
    If i&gt; 0 Then<br />
        Exit Sub<br />
    Else<br />
&#8216;Add the list if it does not exist.<br />
        Application.AddCustomList (Array(&#8220;5 Rashers of Streaky Bacon&#8221;,&#8221;Two All Beef Patties&#8221;, &#8220;Special Sauce&#8221;, &#8220;Lettuce&#8221;, &#8220;Cheese&#8221;, &#8220;Pickles&#8221;, &#8220;Onions&#8221;, &#8220;Sesame Seed Bun&#8221;))<br />
    End If<br />
End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BEL8490</title>
		<link>http://datapigtechnologies.com/blog/index.php/fun-with-custom-lists/comment-page-1/#comment-3254</link>
		<dc:creator>BEL8490</dc:creator>
		<pubDate>Mon, 08 Feb 2010 07:55:48 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=1704#comment-3254</guid>
		<description>This number must be greater than or equal to 5 (Microsoft Excel has four built-in custom lists that cannot be deleted).

cfr: http://msdn.microsoft.com/en-us/library/bb223327.aspx

It is interesting to note that if you have an Office suite in language X installed on a Windows system in language Y, then you have twice the standard lists and hence the delete number limit is raised to 9!</description>
		<content:encoded><![CDATA[<p>This number must be greater than or equal to 5 (Microsoft Excel has four built-in custom lists that cannot be deleted).</p>
<p>cfr: <a href="http://msdn.microsoft.com/en-us/library/bb223327.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb223327.aspx</a></p>
<p>It is interesting to note that if you have an Office suite in language X installed on a Windows system in language Y, then you have twice the standard lists and hence the delete number limit is raised to 9!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

