<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Excel Assist .co.uk &#187; Excel</title>
	<atom:link href="http://www.excelassist.co.uk/category/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.excelassist.co.uk</link>
	<description>Excel hints, Excel tips and Excel assistance</description>
	<lastBuildDate>Thu, 14 Apr 2011 20:33:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>An easier way to flip FirstName LastName to LastName, FirstName</title>
		<link>http://www.excelassist.co.uk/2011/firstname-lastname/</link>
		<comments>http://www.excelassist.co.uk/2011/firstname-lastname/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 20:33:14 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=286</guid>
		<description><![CDATA[Is there an easier way to flip FirstName LastName to LastName,First Name besides running a macro? There must be a simpler formula &#8211; any advice?
via Is there an easier way to flip FirstName LastName to LastName,First Name besides running a macro? There must be a simpler formula &#8211; any advice? &#124; LinkedIn.
Try this 
=MID(A1,SEARCH(&#8221; &#8220;, [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2011/firstname-lastname/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditionally hide/unhide rows</title>
		<link>http://www.excelassist.co.uk/2010/conditionally-hide-unhide-rows/</link>
		<comments>http://www.excelassist.co.uk/2010/conditionally-hide-unhide-rows/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 10:45:11 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=252</guid>
		<description><![CDATA[I cobbled this code together for someone at work. They wanted to unhide rows if some cells contained Yes.
The control cells were D4, D5 &#038; D6. You should be able to reuse this code.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Range("$A$29:$C$71").EntireRow.Hidden = True     'set the range to hide
  [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/conditionally-hide-unhide-rows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Function Dictionary 150 example functions and formula.</title>
		<link>http://www.excelassist.co.uk/2010/excel-function-dictionary/</link>
		<comments>http://www.excelassist.co.uk/2010/excel-function-dictionary/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 12:40:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=268</guid>
		<description><![CDATA[Peter Noneley      Excel Function Dictionary Updated Oct 2009 &#8211; no macros or VBA code, smaller file size. The Excel Function Dictionary contains over 150 examples of functions.
via www.xlfdic.com Excel Function Dictionary 150 example functions and formula..
Click to Download
]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/excel-function-dictionary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Function/Formula to Sum Excel Cells by Colour</title>
		<link>http://www.excelassist.co.uk/2010/function-to-sum-by-colour-excel/</link>
		<comments>http://www.excelassist.co.uk/2010/function-to-sum-by-colour-excel/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 14:04:31 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[udf]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=253</guid>
		<description><![CDATA[Function SumColor(rColor As Range, rSumRange As Range)
''''''''''''''''''''''''''''''''''''''
'Written by Ozgrid Business Applications
'www.ozgrid.com
'Sums cells based on a specified fill color.
'''''''''''''''''''''''''''''''''''''''
	Dim rCell As Range
	Dim iCol As Integer
	Dim vResult
	iCol = rColor.Interior.ColorIndex
		For Each rCell In rSumRange
			If rCell.Interior.ColorIndex = iCol Then
				vResult = WorksheetFunction.Sum(rCell) + vResult
			End If
		Next rCell
	SumColor = vResult
End Function
			
via 2 Excel Functions/Formulas to Count/Sum Excel Cells by Color &#8211; Excel [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/function-to-sum-by-colour-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Color to Excel 2007 Worksheets by Using the ColorIndex Property</title>
		<link>http://www.excelassist.co.uk/2010/adding-color-to-excel-2007-worksheets-by-using-the-colorindex-property/</link>
		<comments>http://www.excelassist.co.uk/2010/adding-color-to-excel-2007-worksheets-by-using-the-colorindex-property/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 10:11:17 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=226</guid>
		<description><![CDATA[ColorIndex Property
The ColorIndex property can generate up to 57 colors. The table shown in Figure 1 illustrates the range of colors. The table was created programmatically by using a procedure similar to one shown later in the linked article. Figure 1. ColorIndex values and colorsFigure 1 shows the color palette and the corresponding integer value [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/adding-color-to-excel-2007-worksheets-by-using-the-colorindex-property/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

