<?xml version="1.0" encoding="utf-8"?>
<!-- generator="wordpress/2.3.2" -->
<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/"
	>

<channel>
	<title>Excel Pragma</title>
	<link>http://www.chalouhis.com/XLBLOG</link>
	<description>Excessive Excel</description>
	<pubDate>Sun, 04 Nov 2007 13:47:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>Deciphering the Excel 2003 Custom Number Formats</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/07/30/example-note-2/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/07/30/example-note-2/#comments</comments>
		<pubDate>Sun, 30 Jul 2006 05:21:24 +0000</pubDate>
		<dc:creator>Fadi</dc:creator>
		
		<category><![CDATA[Formatting]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/07/30/example-note-2/</guid>
		<description><![CDATA[For the most part, the different number categories in the Category list box and their types are pretty easy - if not a breeze - to comprehend. For most people, that self-assured feeling goes right out the window as soon as they click the Custom category and get a load of itsaccompanying Type list box, [...]]]></description>
			<content:encoded><![CDATA[<p>For the most part, the different number categories in the Category list box and their types are pretty easy - if not a breeze - to comprehend. For most people, that self-assured feeling goes right out the window as soon as they click the Custom category and get a load of its<br />accompanying Type list box, shown in Figure 1. It starts off with the nice word General, then 0, then 0.00, and after that, all hell breaks loose! Codes with 0s and #s (and other junk) start to appear, and it only goes downhill from there.</p>
<p><img src="http://media.wiley.com/assets/185/06/0-7645-3758-X_0211.jpg" /><br />Figure 1: Selecting Custom in the Category list box of the Number tab.</p>
<p>As you move down the list, the longer codes are divided into sections separated by semicolons and enclosed within square brackets. Although at first glance these codes appear as so much gibberish, you&#8217;ll actually find that they&#8217;re quite understandable (well, would you believe useful, then?).</p>
<p>And these codes can be useful, especially after you understand them. You can use them to create number formats of your own design. The basic keys to understanding number format codes are as follows:</p>
<p>&nbsp;&nbsp;&nbsp; * Excel number formats use a combination of 0, ?, and # symbols with such punctuation as dollar signs, percent signs, and commas to stand for the formatted digits in the numbers that you format.</p>
<p>&nbsp;&nbsp;&nbsp; * The 0 is used to indicate how many decimal places (if any) are allowed in the format. The format code 0.00 indicates that two decimal places are used in the number. The format code 0 alone indicates that no decimal places appear (the display of all values is rounded up to whole numbers).</p>
<p>&nbsp;&nbsp;&nbsp; * The ? is used like the 0, except that it inserts spaces at the end as needed to make sure that values line up on the decimal point. For example, by selecting the number format 0.??, such values as 10.5 and 24.71 line up with each other in their cells because Excel adds an extra space after the 5 to push it over to the left so that it&#8217;s in line with the 7 of 71. If you used the number format 0.00 instead, these two values would not line up on the decimal point when they are right-aligned in their cells.</p>
<p>&nbsp;&nbsp;&nbsp; * The # symbol is used with a comma to indicate that you want thousands, hundred thousands, millions, zillions, and so on in your numbers, with each group of three digits to be separated with a comma.</p>
<p>&nbsp;&nbsp;&nbsp; * The $ (dollar sign) symbol is added to the beginning of a number format if you want dollar signs to appear at the beginning of every formatted number.</p>
<p>&nbsp;&nbsp;&nbsp; * The % (percent sign) symbol is added to the end of the number format if you want Excel to actually transform the value into a percentage (multiplying it by 100 and adding a percent sign).</p>
<p>Number formats can specify one format for positive values, another for negative values, a third for zero values, and even a fourth format for text in the cells. In such complex formats, the format codes for positive values come first, followed by the codes for negative values, and a semicolon separates each group of codes. Any format codes for how to handle zeros and text in a cell come third and fourth, respectively, in the number format, again separated by semicolons. If the number format doesn&#8217;t specify special formatting for negative or zero values, these values are automatically formatted like positive values. If the number format doesn&#8217;t specify what to do with text, text is formatted according to Excel&#8217;s default values. For example, look at the following number format:</p>
<p>#,##0_);(#,##0)</p>
<p>This particular number format specifies how to format positive values (the codes in front of the semicolon) and negative values (the codes after the semicolon). Because no further groups of codes exist, zeros are formatted like positive values, and no special formatting is applied to text.</p>
<p>If a number format puts negative values inside parentheses, the positive number format portion often pads the positive values with a space that is the same width as a right parenthesis. To indicate this, you add an underscore (by pressing Shift and the hyphen key) followed immediately by a closed parenthesis symbol. By padding positive numbers with a space equivalent to a right parenthesis, you ensure that digits of both positive and negative values line up in a column of cells.</p>
<p>You can assign different colors to a number format. For example, you can create a format that displays the values in green (the color of money!) by adding the code [GREEN] at the beginning of the format. A more common use of color is to display just the negative numbers in red (ergo the saying &#8220;in the red&#8221;) by inserting the code [RED] right after the semicolon separating the format for positive numbers from the one for negative numbers. Color codes include [BLACK], [BLUE], [CYAN], [GREEN], [MAGENTA], [RED], [WHITE], [YELLOW], and [COLOR n] where n is the number of the Standard Color between 1 and 16 that you want to select from the Excel color palette. (To see the palette and its colors, choose Tools &#8211;&gt; Options and then select the Color tab. When assigning a number to a color, count from left to right across each row: 1 to 8 across the top row and 9 to 16 across the second row, and so on.)</p>
<p>Date number formats use a series of abbreviations for month, day, and year that are separated by characters, such as a dash (-) or a slash (/). The code m inserts the month as a number: mmm inserts the month as three-letter abbreviation, such as Apr or Oct, and mmmm spells out the entire month, such as April or October. The code d inserts the date as a number: dd inserts the date as a number with a leading zero, such as 04 or 07; ddd inserts the date as a three-letter abbreviation of the day of the week, such as Mon or Tue; and dddd inserts the full name of the day of the week, such as Monday or Tuesday. The code yy inserts the last two digits of the year, such as 05 or 07; yyyy inserts all four digits of the year, such as 2005, 2007, and so on.</p>
<p>Time number formats use a series of abbreviations for the hour, minutes, and seconds. The code h inserts the number of the hour; hh inserts the number of the hour with leading zeros, such as 02 or 06. The code m inserts the minutes; the code mm inserts the minutes with leading zeros, such as 01 or 09. The code s inserts the number of seconds; ss inserts the seconds with leading zeros, such as 03 or 08. Add AM/PM or am/pm to have Excel tell time on a 12-hour clock, and add either AM (or am) or PM (or pm) to the time number depending upon whether the date is before or after noon. Without these AM/PM codes, Excel displays the time number on a 24-hour clock, just like the military does. (For example, 2:00 PM on a 12-hour clock is expressed as 1400 on a 24-hour clock.)</p>
<p>So that&#8217;s all you really need to know about making some sense of all those strange format codes that you see when you select the Custom category on the Number tab of the Format Cells dialog box.</p>
<p>Article : <a href="http://www.allbusiness.com/business_advice/articles/10349.html">Deciphering the Excel 2003 Custom Number Formats</a> posted on AllBusiness.com <br />From the <a href="http://service.bfast.com/bfast/click?bfmid=37920629&amp;siteid=41525456&amp;bfpage=dummies_prod_15&amp;isbn=076453758X">Excel 2003 All-in-One Desk Reference For Dummies</a>.</p>
<p><big></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Excel" rel="tag">Excel</a>, <a href="http://technorati.com/tag/Formatting" rel="tag">Formatting</a></big></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/07/30/example-note-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scroll Protection</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/07/11/scroll-protection/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/07/11/scroll-protection/#comments</comments>
		<pubDate>Mon, 10 Jul 2006 22:50:25 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Formatting]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/07/11/scroll-protection/</guid>
		<description><![CDATA[Without Protection 
You can protect a spreadsheet so that data is shielded from inadvertent entries.There is another way to set up a scroll area that does not involve protection.Open the Control Toolbox (right-click any existing tool bar) and click on the Properties icon.
In the Scroll Area text box, type the scroll area range, or type [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Without Protection</strong> </p>
<p>You can protect a spreadsheet so that data is shielded from inadvertent entries.<br />There is another way to set up a scroll area that does not involve protection.<br />Open the Control Toolbox (right-click any existing tool bar) and click on the Properties icon.</p>
<p>In the Scroll Area text box, type the scroll area range, or type the defined Name for the range.<br />To cancel the Scroll Area restricted range, clear the Scroll Area text box.</p>
<p><img alt="" src="http://www.klippert.com/tcc/blog/pics/scrolprop203.gif" border="0" />&nbsp;</p>
<p>If you are using Office 2007, the Property icon is on the Developers tab.</p>
<p>&nbsp;<img alt="" src="http://www.klippert.com/tcc/blog/pics/scrollprop.jpg" border="0" /></p>
<p>Multiple areas can be selected using Protection, but only one area is allowed using the Scroll Property.</p>
<p>Via <a href="http://feeds.feedburner.com/UnofficialMicrosoftOfficeStuff?m=773">Unofficial Microsoft Office Stuff</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/07/11/scroll-protection/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Great new online community</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/07/10/great-new-online-community/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/07/10/great-new-online-community/#comments</comments>
		<pubDate>Mon, 10 Jul 2006 07:50:34 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/07/10/great-new-online-community/</guid>
		<description><![CDATA[Hi, everyone! Cool, new online resource to mention today&#8230; The Microsoft Work Essentials Web site has started new discussion forums for those who use Office in finance, sales, marketing, office administration, project management, and IT roles. You can post questions in the Work Essentials Community Forums and moderators will help you find answers from their [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Hi, everyone! Cool, new online resource to mention today&hellip; The Microsoft Work Essentials Web site has started new discussion forums for those who use Office in finance, sales, marketing, office administration, project management, and IT roles. You can post questions in the Work Essentials Community Forums and moderators will help you find answers from their community of experts.</p>
<p>These forums are just getting started &ndash; so jump in and take advantage of the opportunity &hellip; and help make a success of a new online resource at the same time.</p>
<p>Check out the Work Essentials forums here: <a href="http://forums.microsoft.com/WorkEssentials/default.aspx?SiteID=32">http://forums.microsoft.com/WorkEssentials/default.aspx?SiteID=32</a></p>
<p>Or, if you are an expert in one or more of these areas and want to learn more about getting involved in this new community, e-mail the Work Essentials folks at <a href="mailto:weexpert@microsoft.com">weexpert@microsoft.com</a></p>
<p>Happy weekend everybody!</p>
</blockquote>
<p>via <a href="http://www.officezealot.com/">OfficeZealot.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/07/10/great-new-online-community/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Excel Drawings</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/04/29/excel-drawings/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/04/29/excel-drawings/#comments</comments>
		<pubDate>Sat, 29 Apr 2006 17:45:54 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/04/29/excel-drawings/</guid>
		<description><![CDATA[This has been on the blogs for the past two days : 58 Days Worth of Drawing Exercises in Microsoft Excel .&#160;I have yet to see Excel play mp3s (with visualisations?).

]]></description>
			<content:encoded><![CDATA[<p>This has been on the blogs for the past two days : <a href="http://danielleaubert.com/print/exceldrawings_book.html">58 Days Worth of Drawing Exercises in Microsoft Excel</a> .&nbsp;I have yet to see Excel play mp3s (with visualisations?).</p>
<p><img alt="" src="http://danielleaubert.com/images/print/exceldrawings_5.jpg" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/04/29/excel-drawings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dashboard Templates - Excel User</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/dashboard-templates-excel-user/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/dashboard-templates-excel-user/#comments</comments>
		<pubDate>Wed, 08 Mar 2006 02:47:48 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Formatting]]></category>

		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/03/08/dashboard-templates-excel-user/</guid>
		<description><![CDATA[Interesting dashboard formats and ideas at Excel User , very handy for consolidated portfolio views for example. 
 Different layouts are presented in the gallery . if you don&#8217;t want to waste time (or...]]></description>
			<content:encoded><![CDATA[<p>Interesting dashboard formats and ideas at <a href="http://www.exceluser.com/">Excel User</a>, very handy for consolidated portfolio views for example.</p>
<p>Different layouts are presented in the <a href="http://www.exceluser.com/dash/samples.htm">gallery</a>. if you don&rsquo;t want to waste time (or space), check the&nbsp; extreme dashboard : <a href="http://www.exceluser.com/dash/xstamp.htm">Postage Stamp Report</a>.</p>
<p><em></em>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/dashboard-templates-excel-user/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free Excel Spreadsheet - Peacock Capital</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/free-excel-spreadsheet-peacock-capital/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/free-excel-spreadsheet-peacock-capital/#comments</comments>
		<pubDate>Tue, 07 Mar 2006 22:55:32 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/03/08/free-excel-spreadsheet-peacock-capital/</guid>
		<description><![CDATA[
Peacock Capital specialises in solving the cash flow challenges of&#160;&#160;Small/Medium Businesses,&#160;Government Vendors and Individuals with&#160;alternative financing solutions.[Link]

The amount of models on this site is impressive ranging from Corporate Finance and Focused Valuations models all the way to Option Pricing.
&#160;
]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>Peacock Capital specialises in solving the cash flow challenges of&nbsp;&nbsp;Small/Medium Businesses,&nbsp;Government Vendors and Individuals with&nbsp;alternative financing solutions.[<a href="http://www.peacockcapital.com/index.htm">Link</a>]</p>
</blockquote>
<p>The amount of models on this site is impressive ranging from Corporate Finance and Focused Valuations models all the way to Option Pricing.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/free-excel-spreadsheet-peacock-capital/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Regular Expressions</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/regular-expressions/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/regular-expressions/#comments</comments>
		<pubDate>Tue, 07 Mar 2006 22:49:54 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Data Analysis]]></category>

		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/03/08/regular-expressions/</guid>
		<description><![CDATA[
Regular expressions are a system for matching patterns in text data, which are widely used in UNIX systems, and occasionally on personal computers as well. They provide a very powerful, but also rather obtuse, set of tools for finding particular words or combinations of characters in strings. 

[Link]
]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>Regular expressions are a system for matching patterns in text data, which are widely used in UNIX systems, and occasionally on personal computers as well. They provide a very powerful, but also rather obtuse, set of tools for finding particular words or combinations of characters in strings. </p>
</blockquote>
<p>[<a href="http://www.cs.cf.ac.uk/Dave/Internet/NEWS/regexp.html">Link</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/03/08/regular-expressions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Color Picker</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/02/13/color-picker/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/02/13/color-picker/#comments</comments>
		<pubDate>Mon, 13 Feb 2006 19:55:16 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Formatting]]></category>

		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/02/13/color-picker/</guid>
		<description><![CDATA[Another colour link , but this time for an &#8220;essential&#8221; tool : colour picker. 
]]></description>
			<content:encoded><![CDATA[<p>Another colour link , but this time for an &ldquo;essential&rdquo; tool : <a href="http://www.iconico.com/colorpic">colour picker</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/02/13/color-picker/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Color Palettes</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2006/02/13/color-palettes/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2006/02/13/color-palettes/#comments</comments>
		<pubDate>Mon, 13 Feb 2006 03:41:38 +0000</pubDate>
		<dc:creator>Fadi</dc:creator>
		
		<category><![CDATA[Formatting]]></category>

		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2006/02/13/color-palettes/</guid>
		<description><![CDATA[I&#8217;ve been looking for a brown palette.&#160;I still haven&#8217;t&#160;found a nice one but found a couple of sites which will definitely come in handy next time I need colours.
1 &#8211; Site Blender&#160;&#8211; Palette/Theme generator
2&#8211; Color Mixers&#160;&#8211; Palette/Theme generator
]]></description>
			<content:encoded><![CDATA[<p>I&rsquo;ve been looking for a brown palette.&nbsp;I still haven&rsquo;t&nbsp;found a nice one but found a couple of sites which will definitely come in handy next time I need colours.</p>
<p>1 &ndash; <a href="http://www.stressbank.com/color_blender.shtml">Site Blender</a>&nbsp;&ndash; Palette/Theme generator</p>
<p>2&ndash; <a href="http://colormixers.com/mixers/cmr/">Color Mixers</a>&nbsp;&ndash; Palette/Theme generator</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2006/02/13/color-palettes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Another article on migrating VBA to VSTO</title>
		<link>http://www.chalouhis.com/XLBLOG/archives/2005/04/21/another-article-on-migrating-vba-to-vsto/</link>
		<comments>http://www.chalouhis.com/XLBLOG/archives/2005/04/21/another-article-on-migrating-vba-to-vsto/#comments</comments>
		<pubDate>Thu, 21 Apr 2005 03:52:03 +0000</pubDate>
		<dc:creator>Fadi</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.chalouhis.com/XLBLOG/archives/2005/04/20/another-article-on-migrating-vba-to-vsto/</guid>
		<description><![CDATA[Here&#8217;s another article from Microsoft&#8217;s Office Developer Center : Convert VBA Code to Visual Basic .NET When Migrating to Visual Studio 2005 Tools for Office&#160;.

Why Migrate to Visual Studio 2005 Tools for Office :

Improved development productivity
Improved security model
Easier deployment and versioning
Added functionality from the Microsoft .NET Framework
Improved code reuse
Easier integration


Here&#8217;s where I think problems might [...]]]></description>
			<content:encoded><![CDATA[<p>Here&rsquo;s another article from Microsoft&rsquo;s Office Developer Center : <a href="http://msdn.microsoft.com/office/understanding/vsto/default.aspx?pull=/library/en-us/odc_vsto2005_ta/html/officevstolanguagemigrationfromvba.asp">Convert VBA Code to Visual Basic .NET When Migrating to Visual Studio 2005 Tools for Office</a>&nbsp;.</p>
<blockquote>
<p>Why Migrate to Visual Studio 2005 Tools for Office :</p>
<ul>
<li>Improved development productivity</li>
<li>Improved security model</li>
<li>Easier deployment and versioning</li>
<li>Added functionality from the Microsoft .NET Framework</li>
<li>Improved code reuse</li>
<li>Easier integration</li>
</ul>
</blockquote>
<p>Here&rsquo;s where I think problems might occur for VBA&nbsp;immigrants :</p>
<ul>
<li>different data types (Long, Short, Integer &amp; Co.)</li>
<li>dates manipulation (.fromOAdate, .toOADate methods)</li>
<li>no more Option Base (never used it)</li>
</ul>
<p>What I like :</p>
<ul>
<li>Scope of variables : variables can be defined even within a For &#8230; Next loop instead of being defined for the whole procedure or function.</li>
<li>Exception Handling with new statements like &ldquo;Try &hellip; Catch ex As Exception &#8230; Finally&hellip; End Try&rdquo; for error trapping.</li>
</ul>
<p><strike>It doesn&rsquo;t look like the migration would be too painful. I suppose it&rsquo;s just a matter of getting used to the object model, the user interface and the error trapping&hellip; </strike></p>
<p>hmmm&hellip; rephrase : <strike>If you manage to get used to the object model, the user interface and the error trapping then the migration should not be painful.</strike></p>
<p>rephrase : I am not a reference. so good luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chalouhis.com/XLBLOG/archives/2005/04/21/another-article-on-migrating-vba-to-vsto/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

