﻿<?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>
			  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>


    <item>
      <title>
        Wait Functions For VBA
      </title>
      <link>http://www.cpearson.com/zips/modWait.zip</link>
      <dc:creator>Chip Pearson</dc:creator>
      <pubDate>2009-9-12T09:30:00</pubDate>
      <description>
         Ths downloadable module file contains the following functions: WaitForFileCreate, which
         waits for a specified file to be created. WaitForFileClose, which waits for a specified
         file to be closed. ShellAndWait, which calls Shell to run a program and then waits for
         that program to finish. All functions support wait timeouts and break key handlers.
      </description>
    </item>


    <item>
      <title>
        Week Numbers In Excel
      </title>
      <link>http://www.cpearson.com/Excel/WeekNumbers.aspx</link>
      <dc:creator>Chip Pearson</dc:creator>
      <pubDate>2009-9-3T09:30:00</pubDate>
      <description>
        Many organizations and applications use the week number of a data for identification
        and organizational purposes. However, this can be problematic since there are various
        definitions of what the first day of the first week should be. It could be simply January
        1, or the first occurrence of a particular day of week, or some other defintion. This
        page describes a number of formulas and VBA procedures to work with various types 
        of week numbers.
      </description>
    </item>

    <item>
      <title>
        A Better WORKDAY Function.
      </title>
      <link>http://www.cpearson.com/Excel/BetterWorkday.aspx</link>
      <dc:creator>Chip Pearson</dc:creator>
      <pubDate>2009-8-18T09:30:00</pubDate>
      <description>
        Excel's WORKDAY function suffers a significant shortcoming: Saturday and
        Sunday are hard-coded into the function. You cannot specify other or additional
        days of the week to exclude. This page provides a function that allows you to
        exclude any number of the days of the week.
      </description>
    </item>


    <item>
      <title>
        Functions for working with calculations involving days of the week.
      </title>
      <link>http://www.cpearson.com/Excel/DayOfWeekFunctions.aspx</link>
      <dc:creator>Chip Pearson</dc:creator>
      <pubDate>2009-8-14T09:30:00</pubDate>
      <description>
        This pages describes about ten functions, implemented both as worksheet
        formulas and as VBA functions, that you can use in calculations involving
        days of the week.
      </description>
    </item>


    <item>
      <title>
        Downloadable example Visual Studio project for Automation Libraries.
      </title>
      <link>http://www.cpearson.com/Excel/CreatingNETFunctionLib.aspx</link>
      <dc:creator>Chip Pearson</dc:creator>
      <pubDate>2009-7-7T09:30:00</pubDate>
      <description>
        You can download the Visual Studio 2008 project files for the NET
        function library described on the web site.
      </description>
    </item>



    <item>
      <title>
        Defined Names In Worksheets And Workbooks.
      </title>
      <link>http://www.cpearson.com/Excel/DefinedNames.aspx</link>
      <dc:creator>Chip Pearson</dc:creator>
      <pubDate>2009-6-6T09:30:00</pubDate>
      <description>
        This page introduces Defined Names and illustrates how to use them
        in worksheets and workbooks.
      </description>
    </item>


  </channel>
</rss>
