<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.8.5" -->
<rss version="0.92">
<channel>
	<title>Excel Assist .co.uk</title>
	<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>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>An easier way to flip FirstName LastName to LastName, FirstName</title>
		<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>
		<link>http://www.excelassist.co.uk/2011/firstname-lastname/</link>
			</item>
	<item>
		<title>Compare two lists</title>
		<description><![CDATA[I was asked the following question by a colleague today. 
I have two spreadsheets and I have to check which part number is listed on both. What’s the quickest way apart from:  copy party number go onto other spreadsheet do CTRL find and paste part number and do find all?
I recommended the Match Function.
MATCH(lookup_value,lookup_array,match_type)
Lookup_value [...]]]></description>
		<link>http://www.excelassist.co.uk/2010/compare_2_lists/</link>
			</item>
	<item>
		<title>Conditionally hide/unhide rows</title>
		<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>
		<link>http://www.excelassist.co.uk/2010/conditionally-hide-unhide-rows/</link>
			</item>
	<item>
		<title>Excel Function Dictionary 150 example functions and formula.</title>
		<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>
		<link>http://www.excelassist.co.uk/2010/excel-function-dictionary/</link>
			</item>
	<item>
		<title>Function/Formula to Sum Excel Cells by Colour</title>
		<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>
		<link>http://www.excelassist.co.uk/2010/function-to-sum-by-colour-excel/</link>
			</item>
</channel>
</rss>

