<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title>Spreadsheet Page Blog</title>
    <link>http://spreadsheetpage.com/index.php/blog/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>walkenbach@gmail.com</dc:creator>
    <dc:rights>Copyright 2010</dc:rights>
    <dc:date>2010-07-07T23:13:32+00:00</dc:date>
  <image>
    <url>http://spreadsheetpage.com/graphics/sspagesmall.png</url>
  </image>

    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>A Break From Excel</title>
      <link>http://spreadsheetpage.com/index.php/blog/a_break_from_excel/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/a_break_from_excel/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>After finishing up the last round of Excel 2010 books, I took a much-needed break from Excel. That explains the lack of recent blog posts.</p>
<p>For some reason, I got all excited about Windows desktop gadgets. That&#39;s kept me out of trouble for the past few weeks. I made two gadgets:</p>
<p> <a href="http://j-walk.com/orf/">Office Recent Files</a> - This gadget isplays a handy list of recent files for Excel, Word, and PowerPoint. Requires Office 2007 or Office 2010. I couldn&#39;t figure out how to read the Windows registry using Javascript, so I ended up using VBScript almost exclusively. I was surprised to see how nicely these two scripting languages work together.</p><blockquote>	
<p><img src="http://j-walk.com/orf/orf1.png"></p></blockquote>
<p> <a href="http://j-walk.com/slag/">SLAG - Simple Little Audio Gadget</a> - I found a few music-playing gadgets, but I don&#39;t like any of them. So I made my own. It uses the Windows Media Player database. Written i</p><blockquote>	
<p><img src="http://j-walk.com/slag/slag01.png"></p></blockquote>
<p>If you&#39;re running Vista or Windows 7, give them a try and let me know how they work. Gadgets aren&#39;t compiled, so you can see exactly how they are written.</p>]]></content:encoded>
      <dc:date>2010-07-07T23:13:32+00:00</dc:date>
    </item>

    <item>
      <title>Excel 2010 Book List Updated</title>
      <link>http://spreadsheetpage.com/index.php/blog/excel_2010_book_list_updated/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/excel_2010_book_list_updated/</guid>
      <dc:subject>Books</dc:subject>
      <content:encoded><![CDATA[<p>The list of my  <a href="http://spreadsheetpage.com/index.php/book/C45/">Excel 
2010 books</a> is now up-to-date, with cover images and links to Amazon.</p>
<p>
You'll notice a new one: <i>Excel Dashboards and Reports</i>. It's really Mike 
Alexander's book but I contributed a few chapters and got listed as a co-author 
with the  <a href="http://datapigtechnologies.com/About.html">Data Pig</a>.</p>
<p>
The publisher and I still haven't decided if a new edition of Excel Charts will 
be added to the list.</p>]]></content:encoded>
      <dc:date>2010-04-23T16:20:53+00:00</dc:date>
    </item>

    <item>
      <title>Excel Hero</title>
      <link>http://spreadsheetpage.com/index.php/blog/excel_hero1/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/excel_hero1/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>I follow every English language Excel blog on the planet. There are lots of 
good ones, but the one I like best is Daniel Ferry's
 <a href="http://www.excelhero.com/blogs/">Excel Hero</a>. His downloads are 
simply awesome.</p>
<blockquote>
  
<p><img border="0" src="http://spreadsheetpage.com/graphics/blog/xlhero.png" width="252" height="72"></p>
</blockquote>

<p>From his "About" section:</p>
<blockquote>
  
<p>I cut my Excel teeth on very early versions in the early 1990s. Before that 
  I used Lotus123. I am completely self taught in the Excel arena and gained 
  most of my knowledge while creating systems to run a large logistics company 
  that I managed for 15 years. I've had hundreds of clients and successfully 
  completed thousands of projects since.</p>
</blockquote>

<p>Is he an Excel MVP? I missed the last two MVP Summits, and I hardly keep up 
with MVP stuff any more, so I don't know. If he's not, he should be.</p>]]></content:encoded>
      <dc:date>2010-04-20T12:31:34+00:00</dc:date>
    </item>

    <item>
      <title>Problems With Euro Currency Tools Add&#45;In</title>
      <link>http://spreadsheetpage.com/index.php/blog/problems_with_euro_currency_tools_add-in/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/problems_with_euro_currency_tools_add-in/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>If you're experiencing some inexplicable errors with your VBA code, check 
your add-ins list (press Alt+TI). If Microsoft's Euro Currency Tools add-in is installed, 
uninstall it. That add-in should be banned. Euro Currency Tools is the only add-in I've 
seen that can cause errors in VBA code that's in a completely different 
workbook. </p>
<p>Try this in Excel 2007...</p>


<p>First, make sure the Euro Currency Tools add-in is installed. Activate a worksheet that 
has a few formulas, and then run this macro: </p>
<pre>Sub TestEuroTool()
  Dim WorkRange As Range
  On Error Resume Next
  Set WorkRange = ActiveSheet.UsedRange.SpecialCells(xlCellTypeFormulas, 23)
  Debug.Print WorkRange.Count 'formula cells
  Debug.Print Err.Number, Err.Source
End Sub </pre>


<p>Err.Number should be 0, since the sheet has formulas. But it's 9 (Subscript 
Out of Range), and the source of the error is Euro Tool (the name of the VBA 
project in EUROTOOL.XLAM) . At least a dozen PUP 
users have notified me of an error -- and uninstalling the Euro Currency Tools 
add-in fixes the 
problem.</p>

<p>It seems to be fixed in Excel 2010 beta.</p>]]></content:encoded>
      <dc:date>2010-04-19T20:09:24+00:00</dc:date>
    </item>

    <item>
      <title>Hiding &amp;amp; Unhiding With Shortcut Keys</title>
      <link>http://spreadsheetpage.com/index.php/blog/hiding_unhiding_with_shortcut_keys/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/hiding_unhiding_with_shortcut_keys/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>According to the Excel Help system, you can use these key combinations to 
hide and unhide rows and columns within a selection:</p>
<ul>
  <li>Hide rows: Ctrl+9</li>
  <li>Unhide rows: Ctrl+Shift+9</li>
  <li>Hide columns: Ctrl+0 (that's a zero)</li>
  <li>Unhide columns: Ctrl+Shift+0 (also a zer0)</li>
</ul>
<p>They all work for me except the last one. It fails for Excel 
2003, Excel 2007, and Excel 2010 (running Vista).</p>
<p>A bit of Googling tells me that others 
have the same problem. One theory is that the OS is intercepting that key 
combination before it gets to Excel.</p>
<p>Does Ctrl+Shift+0 work for you? If 
so, which OS and Excel version do you use? Note that to unhide columns, you must 
select a range of cells that includes columns to the left and to the right of 
the hidden columns.</p>]]></content:encoded>
      <dc:date>2010-04-11T22:21:42+00:00</dc:date>
    </item>

    <item>
      <title>Mini Books</title>
      <link>http://spreadsheetpage.com/index.php/blog/mini_books/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/mini_books/</guid>
      <dc:subject>Books</dc:subject>
      <content:encoded><![CDATA[<p>Somehow, Mike Foster figured out a way to miniaturize books, so they fit in a 
shirt pocket. He sent a photo:</p>
<blockquote>
  
<p><img border="0" src="http://spreadsheetpage.com/graphics/blog/minibooks.jpg" width="402" height="241"></p>
</blockquote>]]></content:encoded>
      <dc:date>2010-04-07T17:45:53+00:00</dc:date>
    </item>

    <item>
      <title>Adventures In Book Marketing</title>
      <link>http://spreadsheetpage.com/index.php/blog/adventures_in_book_marketing/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/adventures_in_book_marketing/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>Yesterday Chandoo (Pointy Haired Dilbert) made a blog post:
  <a href="http://chandoo.org/wp/2010/03/31/101-excel-secrets-recommended-e-book/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+PointyHairedDilbert+(Pointy+Haired+Dilbert)&utm_content=Google+Reader">
101 Excel Secrets - Recommended E-Book</a>.</p>

<p>It was a link to an ebook by 
someone named Francis J Hayes. Chandoo was upfront, and stated that he's an 
affiliate seller for the book. </p>

<p>I'm always interested in Excel secrets, so 
I took a look at the site.I was appalled. It looks exactly like any of thousands of scam 
sites on the Web, run by sleazy "experts" trying to make a quick buck from idiots. I 
normally don't like to such sites, but if you want to take a look, here it is:
  <a href="http://www.theexceladdict.com/cb1_101_secrets2.htm" rel="nofollow">101 Secrets of a 
Microsoft Excel Addict ebook</a>.</p>

<p>Who knows? It might be the best Excel tips books in the world. But anyone 
with half a brain will click the Back button as soon as they see the site. It 
just reeks of sleaze. </p>

<p>Francis J Hayes might make a sale or two based on this post, but I posted it 
because I'm curious. Does that type of marketing actually appeal to Excel users? </p>

<p>By the way, who is Francis J Hayes? He claims to be an expert, but I couldn't 
find anything on the Web that didn't require payment or a subscription.</p>]]></content:encoded>
      <dc:date>2010-04-02T02:54:30+00:00</dc:date>
    </item>

    <item>
      <title>35 Years Of Microsoft</title>
      <link>http://spreadsheetpage.com/index.php/blog/35_years_of_microsoft/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/35_years_of_microsoft/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>Preston Gralla reminisces:
 <a href="http://www.itbusiness.ca/it/client/en/home/News.asp?id=57002">Microsoft 
turns 35: Best, worst, most notable moments</a>.</p>
<blockquote>
  
<p>As Microsoft celebrates its 35th anniversary, I've decided to take an 
  idiosyncratic and opinionated look at the best, worst and most notable 
  moments, technologies, products, decisions and people in the company's 
  history. </p>
</blockquote>

<p>Excel gets only two mentions:</p>
<blockquote>
  
<p><b>Smartest software bundling</b> </p>
  
<p>Clearly the smartest software bundling move Microsoft ever made was 
  combining Word, Excel and PowerPoint into Microsoft Office, first for the Mac 
  in 1989 and then for Windows in 1990. </p>
  
<p>Microsoft Word, which Microsoft originally (internally) called Multi-Tool 
  Word, was released in 1983 for MS-DOS, in 1985 for the Mac and in 1989 for 
  Windows. Excel was launched in 1985 for the Mac and in 1987 for Windows. Also 
  in 1987, Microsoft released PowerPoint for the Mac, essentially a version of 
  an application called Presenter that was created by Forethought, a company 
  Microsoft had purchased that year. In 1990, PowerPoint for Windows was 
  released.</p>
</blockquote>]]></content:encoded>
      <dc:date>2010-03-30T20:28:41+00:00</dc:date>
    </item>

    <item>
      <title>Excel Cat</title>
      <link>http://spreadsheetpage.com/index.php/blog/excel_cat/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/excel_cat/</guid>
      <dc:subject>Books</dc:subject>
      <content:encoded><![CDATA[<p>Daniel sent a photo, and a brief review:</p>
<blockquote>
  

<p>My cat enjoyed your book.</p>

<p>
  <img border="0" src="http://spreadsheetpage.com/graphics/blog/excelcat.jpg" width="502" height="459"></p>
</blockquote>


<p>I should note that cats <i>really</i> like the later editions.</p>


<p>If you have any photos of my books out in the wild, send 'em my way, please.</p>]]></content:encoded>
      <dc:date>2010-03-28T01:41:50+00:00</dc:date>
    </item>

    <item>
      <title>Arranging Your Data</title>
      <link>http://spreadsheetpage.com/index.php/blog/arranging_your_data/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/arranging_your_data/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>Last week, someone sent me a workbook because he was having some problems 
with it. Here's a small section from the file:</p>
<blockquote>
  
<p><img border="0" src="http://spreadsheetpage.com/graphics/blog/categoryshet.png" width="400" height="459"></p>
</blockquote>

<p>It was arranged in categories, and each category had tasks below it, arrange 
in a row. Under each task name was date to indicate when the task was performed. 
Many of the date cells contained a cell comment to clarify (3,810 comments in 
all). Summary formulas were entered to count the dates. And each formula was 
hand-crafted because the layout was so haphazard.</p>
<p>I was very surprised to 
see such a poorly organized worksheet. But, after giving it some thought, this 
sort of thing is probably not at all unusual. The typical user, I think, 
probably starts entering data without giving the organization much thought. At 
first, it's easy makes sense. But after a few years of data entry, you end up 
with a complete mess.</p>
<p>I suggested that this person spend a day or two and 
copy/paste the data into a normalized table with four column headers: Category, 
Task, Date, and Comments. Data entry would be <i>much</i> easier, and the 
information in this table can be easily sorted, filtered, or summarized with a 
pivot table.</p>
<p>To a typical user, it probably seems very inefficient to 
repeat the category name and task name for every entry in the table. But it's 
actually the most efficient way to store data.</p>]]></content:encoded>
      <dc:date>2010-03-13T17:02:33+00:00</dc:date>
    </item>

    <item>
      <title>New Shortcut Key Discovered</title>
      <link>http://spreadsheetpage.com/index.php/blog/new_shortcut_key_discovered/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/new_shortcut_key_discovered/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>Pointy Haired Dilbert compiled a
 <a href="http://chandoo.org/wp/2010/02/22/complete-list-of-excel-shortcuts/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+PointyHairedDilbert+(Pointy+Haired+Dilbert)&utm_content=Google+Reader">
comprehensive list of Excel keyboard shortcuts</a>.</p>
<p>And that reminded me 
of a new shortcut I discovered last week: </p>
<ul>
  <li><b>Ctrl+D</b> makes a copy of an embedded chart (Excel 2007 and Excel 2010 
  only).</li>
</ul>

<p>To help you remember, think "D for Duplicate." I couldn't find it in the Help 
system, and a cursory check of the Web leads me to suspect that I'm the first 
person in the world to discover this.</p>
<p>Before Excel 2007, the easiest way 
to copy a chart is to press Ctrl while you drag the chart with your mouse. That 
action was removed in Excel 2007, but Microsoft provided an even easier method 
-- and didn't even tell anyone about it!</p>]]></content:encoded>
      <dc:date>2010-02-22T17:25:45+00:00</dc:date>
    </item>

    <item>
      <title>Greg Likes The Book</title>
      <link>http://spreadsheetpage.com/index.php/blog/greg_likes_the_book/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/greg_likes_the_book/</guid>
      <dc:subject>Fan Mail</dc:subject>
      <content:encoded><![CDATA[<p>Yet another unsolicited bit of fan mail:</p>
<blockquote>
  
<p>Just a quick note to tell you how impressed I have been, for a very long 
  time, with your Excel books. I bought one several years ago (maybe
  <span style="font-style: normal">Excel Power Programming With VBA</span>?) 
  and, at the time, it put me ahead of all of my colleagues in terms of 
  practical, ready to use knowledge about MS Excel. </p>
  
<p>Skip forward at least a decade and I had a current need to update my ss 
  skills and went to Barnes & Noble to get some up-to-date resource technical 
  materials. As I was scanning the available materials, my wife said "how can 
  you ever manage to figure out which Excel book to pick?" At that moment in my 
  scanning, I saw just "Walkenbach" and I pulled it out and replied "Right here, 
  this guy is an Excel genius. I recall reading one of his earlier Excel books 
  and it was just incredible." I think she thought I was kidding. </p>
  
<p>Well, I took <span style="font-style: normal">
   <a href="http://spreadsheetpage.com/index.php/book/excel_2007_bible/">Excel 
  2007 Bible</a></span> home over the weekend and cracked it open this morning 
  to get up to speed on charts. I wrapped up the 'Getting Started Making Charts' 
  intro on charts and am just part way into 'Learning Advanced Charting' and I 
  am very impressed! Your exceptionally clear writing style, focus on how to do 
  the task at hand, easy transition from introductory to advanced materials are 
  all just top-of-the-line. </p>
  
<p>So, I thank you, man, for putting out such a truly great product and I wish 
  you the very best. I can't say enough good stuff! </p>
  
<p>Wishing you the best, <br>
  Greg S., NY</p>
</blockquote>

<p>I'm glad you like it, Greg.</p>]]></content:encoded>
      <dc:date>2010-02-19T16:29:29+00:00</dc:date>
    </item>

    <item>
      <title>Excel 2010 VBA Enhancements</title>
      <link>http://spreadsheetpage.com/index.php/blog/excel_2010_vba_enhancements/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/excel_2010_vba_enhancements/</guid>
      <dc:subject>What&#39;s New?</dc:subject>
      <content:encoded><![CDATA[<p>At the official blog of the Microsoft Excel product team:
 <a href="http://blogs.msdn.com/excel/archive/2010/02/16/migrating-excel-4-macros-to-vba.aspx">
Migrating Excel 4 Macros to VBA</a>.</p>
<blockquote>
  
<p>Excel has a macro facility, known as Excel 4 macros (XLM for short) that 
  was the primary macro language prior to the introduction of VBA in Excel 5.0. 
  Most people have long since migrated their Excel 4 macros to VBA; however, 
  some Excel 4 macro capabilities were missing from VBA, which made this 
  migration difficult. </p>
<p>In Excel 2010, one of our goals was to remove any 
  remaining barriers that people had to complete the migration of Excel 4 macros 
  to VBA. </p>
</blockquote>

<p>The article lists quite a few things that, in the past, required an XLM 
macro. The most important new feature is the ability to provide argument 
descriptions for user-defined functions. These are the descriptions that appear 
in the Function Arguments dialog box. </p>
<p>I posted a new tip that 
demonstrates how to do this:
 <a href="http://spreadsheetpage.com/index.php/tip/user-defined_function_argument_descriptions_in_excel_2010/">
User-Defined Function Argument Descriptions In Excel 2010</a>.</p>]]></content:encoded>
      <dc:date>2010-02-17T15:37:57+00:00</dc:date>
    </item>

    <item>
      <title>14 Years Old</title>
      <link>http://spreadsheetpage.com/index.php/blog/14_years_old/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/14_years_old/</guid>
      <dc:subject>Site News</dc:subject>
      <content:encoded><![CDATA[<p>Today is the 14th anniversary of The Spreadsheet Page. How quickly they grow 
up!</p>

<p>Here&#39;s how it looked in 1997:</p>
<blockquote>
<p>
  <a href="http://spreadsheetpage.com/graphics/blog/sspage1997.png">
<img border="1" src="http://spreadsheetpage.com/graphics/blog/sspage1997_sm.png" width="400" height="445"></a></p>

</blockquote>
<p>
Click to enlarge, or try navigating it at
 <a href="http://web.archive.org/web/19970121105010/http:/www.j-walk.com/ss/">
archive.org</a>.</p>
<p>
I&#39;d say my site design skills have improved over the years.</p>]]></content:encoded>
      <dc:date>2010-02-16T14:45:52+00:00</dc:date>
    </item>

    <item>
      <title>Joe&#8217;s A Fan</title>
      <link>http://spreadsheetpage.com/index.php/blog/joes_a_fan/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/joes_a_fan/</guid>
      <dc:subject>Fan Mail</dc:subject>
      <content:encoded><![CDATA[<p>Here's another unsolicited fan mail:</p>
<blockquote>
  
<p>Mr. Walkenbach,<br>
  <br>
  My name is Joe P. I'm a 22 year old college senior. I've been working on a 
  co-op for about a year with a local company in Quality Assurance. When I 
  started, the demands of the job went beyond my capabilities: they needed 
  someone who could write Excel macros, and a lot of them. Determined to fulfill 
  the role, I went to Barnes and Noble and picked up "Excel VBA Programming for 
  Dummies."<br>
  <br>
  That was about 9 months ago. Since then, I've learned the amazing things Excel 
  can do thanks to your easy to follow guide. Not only has it expanded my 
  capacity at work, but I've taken my Excel VBA skills and like to make fun 
  spreadsheets in my spare time. I spent about 4 or 5 months writing a program 
  that plays and analyzes the game of Craps in a little over 1 MB.<br>
  <br>
  My time on co-op is almost up. When I leave, I plan to start up a consulting 
  firm. I'm going to contract my services at building spreadsheets to small 
  businesses in the area. Excel programming has become one of my favorite things 
  to do, and I'm hoping I can find a market for my skills... I can't imagine a 
  better way to make a living. <br>
  <br>
  So I just wanted to send you a sincere thank you for writing your book, and 
  wanted to let you know, I've put the information to great use, both 
  professionally and personally.</p>
</blockquote>

<p>Thanks for the kind words, Joe. When I started reading your email, I just 
assumed that the book you used was <i>Excel Power Programming</i>. Glad to hear 
that the For Dummies book also works.</p>]]></content:encoded>
      <dc:date>2010-02-14T22:42:26+00:00</dc:date>
    </item>

    <item>
      <title>Chess Game Viewer</title>
      <link>http://spreadsheetpage.com/index.php/blog/chess_game_viewer/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/chess_game_viewer/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>This is one of the most creative Excel apps I've ever seen. Created by 
Daniel Ferry, At <i>Excel Hero</i>:
  <a href="http://www.excelhero.com/blog/2010/02/excel-2007-chess-game-viewer.html">
Excel 2007 Chess Game Viewer</a>.</p>
<blockquote>
  

<p><img border="0" src="http://spreadsheetpage.com/graphics/blog/chessgameviewer.png" width="408" height="329"></p>
</blockquote>


<p>It uses no macros. Unprotect the worksheet and try to figure out how it work. 
Some hints:</p>
<ul>
  <li><i>Dynamic Charting with No VBA </i></li>
  <li><i>Combination of XY (Scatter) and Stacked Column chart types </i></li>
  <li><i>Marker Fill with picture files. </i></li>
  <li><i>Conditional Chart Formatting for chessboard style </i></li>
  <li><i>No IF() functions. Not even one. REPT() and boolean logic as 
  alternative to IF() INDEX/MATCH</i></li>
</ul>]]></content:encoded>
      <dc:date>2010-02-14T16:47:33+00:00</dc:date>
    </item>

    <item>
      <title>Your Most Recent Excel Task?</title>
      <link>http://spreadsheetpage.com/index.php/blog/your_most_recent_excel_task/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/your_most_recent_excel_task/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>Just out of curiosity... post a comment and tell us about the <b>last time</b> 
you used Excel. How long ago was it, and what exactly did you do?</p>

<p>In my 
case, I used Excel about two hours ago to double-check a file that will be 
included on the CD that comes with my <i>Excel 2010 Formulas</i> book. The tech 
editor, Niek Otten, noticed a discrepancy between the text and a figure. So I 
had to check it. Niek's really good at tech editing books. I'm often amazed at 
the stuff he points out. Too bad it's such a low-paying job.</p>

<p>Before that, 
I received a PUP v7 upgrade request, and checked my PUP sales workbook to ensure 
that the person was eligible for an upgrade. She was. Yes, those upgrade 
requests are checked manually. Low-tech, but that's the best I can do.</p>

<p>So what's the last thing <i>you</i> did with Excel?</p>]]></content:encoded>
      <dc:date>2010-02-12T02:16:46+00:00</dc:date>
    </item>

    <item>
      <title>Spreadsheet Cartoon</title>
      <link>http://spreadsheetpage.com/index.php/blog/spreadsheet_cartoon/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/spreadsheet_cartoon/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>A person who asked to remain anonymous sent me
 <a href="http://comics.com/working_daze/2008-02-11/">this cartoon</a>.</p>
<blockquote>
  
<p><img border="0" src="http://spreadsheetpage.com/graphics/blog/workingDaze.gif" width="300" height="377"></p>
</blockquote>

<p>He suggested that "Jay" is short for J-Walk, and the cartoon is actually 
about me. It's unlikely because I have a different hairstyle, I don't have a 
briefcase, and I don't make house calls.</p>
<p>I wasn't familiar with
 <a href="http://comics.com/working_daze/">Working Daze</a>. I read some more, 
and Jay is a regular character in the strip, which has been around since at 
least 2001. </p>]]></content:encoded>
      <dc:date>2010-02-03T17:53:58+00:00</dc:date>
    </item>

    <item>
      <title>Annoying Window Behavior</title>
      <link>http://spreadsheetpage.com/index.php/blog/annoying_window_behavior/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/annoying_window_behavior/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>You know what's annoying about Excel? </p>
<p>Assume that you have the VB 
Editor window open. You click Excel' minimize button to minimize the app to get 
it out of the way. Then you see the VB Editor window, and realize that there's 
no need for it to be open. So you close it -- and Excel's window 
pops back up!</p>
<p>Yeah, as far as annoyances go, it's a minor thing. 
But it's been going on since Excel 5. With every new version, I keep hoping it 
will be fixed, but it never is. I can't think of a single reason why closing the 
VB Editor window should restore Excel's window.</p>
<p>What little Excel quirks do you find annoying?</p>]]></content:encoded>
      <dc:date>2010-02-03T17:37:49+00:00</dc:date>
    </item>

    <item>
      <title>44 Excel Blogs</title>
      <link>http://spreadsheetpage.com/index.php/blog/44_excel_blogs/</link>
      <description></description>
      <guid>http://spreadsheetpage.com/index.php/blog/44_excel_blogs/</guid>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>According to my count, there are now 44 English language blogs that deal with 
Excel. You can view the list, and see the latest posts here:
 <a href="http://spreadsheetpage.com/index.php/excelfeeds">Excel Blog Headlines</a>.</p>
<p>
I also provide an OPML file that you can download. </p>
<p><b>What's an OPML 
file?</b> </p>
<p>It's an XML file that contains feed details, and can be 
imported by most RSS aggregators. The net effect is that you can subscribe to 
all of these Excel blogs with just a few mouse clicks.</p>
<p><b>What's a RSS 
aggregator?</b> </p>
<p>It's software that makes it very easy to keep up with 
dozens (or hundreds) of blogs. If you don't use an RSS aggregator, you really 
should. My favorite is  <a href="http://www.google.com/reader">Google Reader</a>, 
a web-based aggregator (requires an account with Google). </p>
<p>To import these 
44 Excel blog feeds (plus 20 additional feeds for the blogs that provide a 
comments feed) into Google Reader, first download the
 <a href="http://spreadsheetpage.com/index.php/excelblogfeeds.opml">OPML file</a>. 
Then navigate to Google Reader choose <i>Manage Your Subscriptions</i>, and then
<i>Import/Export</i>. Browse for the OPML file, and the subscriptions will be 
added. Other RSS aggregators provide the same functionality.</p>]]></content:encoded>
      <dc:date>2010-01-30T18:26:05+00:00</dc:date>
    </item>

    
    </channel>
</rss>