<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>What's New At The CPearson.com Excel Web Source</title>
    <link>http://www.cpearson.com/excel/MainPage.aspx</link>
    <language>en-us</language>
    <copyright>Copyright 2008, 2009, Charles H Pearson</copyright>
    <managingEditor>chip@cpearson.com</managingEditor>
    <webMaster>chip@cpearson.com</webMaster>  
    <image>
      <url>http://www.cpearson.com/images/RssPageLogo.png</url>
      <link>http://www.cpearson.com/Excel/MainPage.aspx</link>
    </image>
    <description>What's new at the cpearson.com web site.</description>
	  
	  <item>
		  <title>
			  Last non-empty cell in a worksheet range.
		  </title>
		  <link>http://www.cpearson.com/Excel/LastCell.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-08-20T05:30:00</pubDate>
		  <description>
			  This describes some VBA code to get the last non-empty cell in a range of worksheet cells.
		  </description>

	  </item>


	  <item>
		  <title>
			  A Quick Directory Tree Listing
		  </title>
		  <link>http://www.cpearson.com/Excel/QuickTree.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-08-20T05:30:00</pubDate>
		  <description>
			  This page describes code to create a simple directory tree listing.
			  While it has far fewer options that the FolderTree procedure, it
			  is much easier to adapt for use in your own code.
		  </description>

	  </item>

	  <item>
		  <title>
			  Getting A List Of Dictinct Elements In A Range
		  </title>
		  <link>http://www.cpearson.com/Excel/GetDistinct.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-08-9T05:30:00</pubDate>
		  <description>
			  This page describes code you can use to get a list of distinct elements from a range of values.
		  </description>
	  </item>
	  
	  <item>
		  <title>
			  Preventing Errors When A User Renames A Worksheet
		  </title>
		  <link>http://www.cpearson.com/Excel/RenameProblems.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-07-30T05:30:00</pubDate>
		  <description>
			  This page describes methods you can use in VBA code to prevent
			  errors when a worksheet is reference by name in the code and
			  the user changes the sheet name.
		  </description>

	  </item>


	  <item>
		  <title>
			  Linked ListBoxes
		  </title>
		  <link>http://www.cpearson.com/Excel/LinkedListBoxes.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-07-19T05:30:00</pubDate>
		  <description>
			  This article describes how to link multiple listboxes in a manner
			  such that changing the selected value in one list box will change
			  the content list of linked, "downstream" listboxes.
		  </description>

	  </item>


	  <item>
		  <title>
			  Getting the workbook associated with a VBProject.
		  </title>
		  <link>http://www.cpearson.com/Excel/vbe.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-07-15T05:30:00</pubDate>
		  <description>
			  There is no direct way to get a reference to the workbook that is associated
			  with a specific VBProject. This pages describes code to get the workbook
			  from a VBProject.
		  </description>

	  </item>

	  <item>
		  <title>
			  An Update Of The SplitEx Function
		  </title>
		  <link>http://www.cpearson.com/Excel/Split.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-07-10T05:30:00</pubDate>
		  <description>
			  This new page replaces the old Split function page and shows VBA code
			  to provide additional flexibility to VBA's Split function.
		  </description>

	  </item>

	  <item>
      <title>
        Weighted Averages
      </title>
      <link>http://www.cpearson.com/Excel/WeighedAverage.aspx</link>
      <dc:creator>Chip Pearson</dc:creator>
      <pubDate>2010-06-09T05:30:00</pubDate>
      <description>
        This page describes weighted averages and formulas to calculate them.
      </description>

    </item>


    <item>
		  <title>
			  The Split Function -- A Better Way
		  </title>
		  <link>http://www.cpearson.com/Excel/Split.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-04-20T05:30:00</pubDate>
		  <description>
			  The VBA Split function is a useful function for breaking a text string into an array of its
			  constituent parts. However, it has problems if you need to keep a group of elements, such as a 
			  quoted string, together without splitting them apart. Another problems is that if you have
			  two consequtive delimiters with no text between them, you will get empty elements in the 
			  result array. This page illustrates some VBA code that fixes these problems.
		  </description>
		  
	  </item>

	  <item>
		  <title>
			  Tracking Workbook Open And Close Operations
		  </title>
		  <link>http://www.cpearson.com/Excel/TrackingWorkbookOpens.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-04-10T05:30:00</pubDate>
		  <description>
			  This page describes event procedures you can use to track when and by
			  whom a workbook is opened. While I generally don't like such snooping
			  by the boss, security and audit concerns do have their place.
		  </description>
	  </item>



	  <item>
		  <title>
			  Putting Full File Names In Window Captions
		  </title>
		  <link>http://www.cpearson.com/Excel/FullFileNameInWindowCaption.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-04-08T05:30:00</pubDate>
		  <description>
			  This page describes how to display the full file name, including drive
			  and path information, in the caption of the main Excel application window
			  and in the captions of the individual sheet windows.
		  </description>
	  </item>


	  <item>
		  <title>
			  Where To Put The Code
		  </title>
		  <link>http://www.cpearson.com/Excel/WhereToPutTheCode.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-04-05T05:30:00</pubDate>
		  <description>
			  This page describes modules, procedures, and snippets and where to put and how to
			  use the code that is provided on this web site and on other venues.
		  </description>

	  </item>

	  <item>
		  <title>
			  Keeping Focus On The Worksheet When Showing A Form
		  </title>
		  <link>http://www.cpearson.com/Excel/SetFocus.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-03-18T05:30:00</pubDate>
		  <description>
			  When  you show a form, input focus goes to the form. Using
			  a few simple Windows API functions, you can keep focus on the
			  worksheet rather than on the form.
		  </description>
		  
	  </item>


	  <item>
		  <title>
			  Creating Multiple SubDirectories
		  </title>
		  <link>http://www.cpearson.com/Excel/MakeDirMulti.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-02-12T05:30:00</pubDate>
		  <description>
			  VBA's MkDir function can create a subdirectory, but the parent directory
			  must already exist. This can be cumberson when create deep levels of 
			  directories. This page shows how to create a subdirectory structure to 
			  any depth you need.
		  </description>
	  </item>



	  <item>
		  <title>
			  New FindAll Function
		  </title>
		  <link>http://www.cpearson.com/Excel/FindAll.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2010-01-05T09:30:00</pubDate>
		  <description>
			  The existing FindAll functions, which finds all occurrences of a value
			  in a range of cells, has been rewritten with options to allow text
			  matching at the beginning or end of the text in the found cell.
		  </description>
		  
	  </item>

	  <item>
		  <title>
			  Cleanup Time
		  </title>
		  <link>http://www.cpearson.com/Excel/Easter.aspx</link>
		  <dc:creator>Chip Pearson</dc:creator>
		  <pubDate>2009-12-14T09:30:00</pubDate>
		  <description>
			  It has been a period of cleaning up, revising, rewriting, and other such
			  general housekeeping. Examples are clearer, a number of bug have been fixed, 
			  and the web site is now a bit better than before.
		  </description>
	  </item>

	  <item>
      <title>
        Calculating The Date Of Easter
      </title>
      <link>http://www.cpearson.com/Excel/Easter.aspx</link>
      <dc:creator>Chip Pearson</dc:creator>
      <pubDate>2009-9-30T09:30:00</pubDate>
      <description>
        This page describes how to calculate the date of Easter. Both a worksheet formula and
        a VBA function are shown.
      </description>
    </item>




  </channel>
</rss>
