<?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 Tools, Models, Tips, and Tricks</title>
	<atom:link href="http://briancohenconsulting.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://briancohenconsulting.com/blog</link>
	<description>intermediate-level</description>
	<lastBuildDate>Wed, 12 Dec 2012 13:18:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Non LOOKUP Alternative to Nested IF</title>
		<link>http://briancohenconsulting.com/blog/?p=448</link>
		<comments>http://briancohenconsulting.com/blog/?p=448#comments</comments>
		<pubDate>Mon, 10 Dec 2012 18:11:46 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/blog/?p=448</guid>
		<description><![CDATA[<p>You want to know if an input contains the value 1, 3, or 5. If any of those values are contained within the input, you want to see &#8220;YES&#8221; as output.  Below, A2 contains the input and B2 displays the output:</p> <p>&#160;</p> <p></p> <p>&#160;</p> <p>The common method calls for a nested IF statement, like this:</p> [...]]]></description>
				<content:encoded><![CDATA[<p>You want to know if an input contains the value 1, 3, or 5. If any of those values are contained within the input, you want to see &#8220;YES&#8221; as output.  Below, A2 contains the input and B2 displays the output:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/12/nested-if_1.png"><img class="aligncenter size-full wp-image-449" title="nested if_1" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/12/nested-if_1.png" alt="" width="171" height="70" /></a></p>
<p>&nbsp;</p>
<p>The common method calls for a nested IF statement, like this:</p>
<p>=IF(A2=1,&#8221;YES&#8221;,IF(A2=3,&#8221;YES&#8221;,IF(A2=5,&#8221;YES&#8221;,&#8221;NO&#8221;)))</p>
<p>&nbsp;</p>
<p>Another common technique calls for VLOOKUP or MATCH functions, with the values 1, 3, and 5 contained within a list.</p>
<p>Here&#8217;s a simpler approach. Utilize the OR function in conjunction with an array.</p>
<p>In C2, type:</p>
<p>=IF(OR(A2={1,3,5})=TRUE,&#8221;YES&#8221;,&#8221;NO&#8221;)</p>
<p>The formula checks for the values 1, 3, and 5 in one motion.</p>
<p>&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=448</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Decimal to Time</title>
		<link>http://briancohenconsulting.com/blog/?p=429</link>
		<comments>http://briancohenconsulting.com/blog/?p=429#comments</comments>
		<pubDate>Wed, 21 Nov 2012 13:30:48 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[INT]]></category>
		<category><![CDATA[MOD]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/blog/?p=429</guid>
		<description><![CDATA[<p>Here&#8217;s a technique to convert a decimal into time.</p> <p></p> <p>&#160;</p> <p>&#160;</p> <p> &#160;</p> <p>This isolates the integer, 6. Then it deals with 0.4 separately, converting it into minutes or hours. &#160;</p> <p>Brian Cohen brian@briancohenconsulting.com</p> [...]]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a technique to convert a decimal into time.</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/11/min-and-sec.png"><img class="aligncenter size-full wp-image-430" title="min and sec" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/11/min-and-sec.png" alt="" width="435" height="233" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/11/min-and-sec2.png"><img class="aligncenter size-full wp-image-431" title="min and sec2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/11/min-and-sec2.png" alt="" width="551" height="231" /></a><br />
&nbsp;</p>
<p>This isolates the integer, 6. Then it deals with 0.4 separately, converting it into minutes or hours.<br />
&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=429</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fill Cells with Last Non-Blank Entry</title>
		<link>http://briancohenconsulting.com/blog/?p=404</link>
		<comments>http://briancohenconsulting.com/blog/?p=404#comments</comments>
		<pubDate>Tue, 20 Nov 2012 13:46:40 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Control-Enter]]></category>
		<category><![CDATA[Control-G]]></category>
		<category><![CDATA[Special]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/blog/?p=404</guid>
		<description><![CDATA[<p>Let&#8217;s say you want to turn this:</p> <p></p> <p>&#160;</p> <p>into this:</p> <p></p> <p>&#160;</p> <p>Your challenge is to fill the non blank cells with the last entry. Here&#8217;s the best technique:</p> Select Cells B3:B19. Press Control-G. Click &#8220;Special&#8221; and select &#8220;Blanks.&#8221; Type: = Press the up-arrow. Press Control-Enter You did it! Now Paste-values to overwrite formulas. [...]]]></description>
				<content:encoded><![CDATA[<p>Let&#8217;s say you want to turn this:</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/11/sample-dataset1.png"><img class="aligncenter size-full wp-image-425" title="sample dataset1" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/11/sample-dataset1.png" alt="" width="197" height="333" /></a></p>
<p>&nbsp;</p>
<p>into this:</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/11/sample-dataset2.png"><img class="aligncenter size-full wp-image-426" title="sample dataset2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/11/sample-dataset2.png" alt="" width="201" height="335" /></a></p>
<p>&nbsp;</p>
<p>Your challenge is to fill the non blank cells with the last entry. Here&#8217;s the best technique:</p>
<ol>
<li>Select Cells B3:B19.</li>
<li>Press Control-G.</li>
<li>Click &#8220;Special&#8221; and select &#8220;Blanks.&#8221;</li>
<li>Type: =</li>
<li>Press the up-arrow.</li>
<li>Press Control-Enter</li>
<li>You did it! <img src='http://briancohenconsulting.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />  Now Paste-values to overwrite formulas.</li>
</ol>
<p>&nbsp;</p>
<p>That technique works well when no formula is required. Here&#8217;s a formula-based technique:</p>
<ol>
<li> In A3, =B3</li>
<li>In A4, =IF(ISBLANK(B4),A3,B4)</li>
<li>Fill down.</li>
<li>You did it! <img src='http://briancohenconsulting.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /> Now Paste-values to overwrite formulas.</li>
</ol>
<p>&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=404</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dates to Text, Maintaining Chronology for Pivots</title>
		<link>http://briancohenconsulting.com/blog/?p=369</link>
		<comments>http://briancohenconsulting.com/blog/?p=369#comments</comments>
		<pubDate>Wed, 13 Jun 2012 12:13:54 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[pivot table]]></category>
		<category><![CDATA[RIGHT]]></category>
		<category><![CDATA[TEXT]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/blog/?p=369</guid>
		<description><![CDATA[<p>Converting complicated date and time stamps into a simplified form is a common task among intermediate-level users. For example, it may be desirable to simply this&#8230;.</p> <p>&#160;</p> <p></p> <p>&#160;</p> <p>&#8230;to this:</p> <p></p> <p>&#160;</p> <p>The common conversion technique calls for the =TEXT formula.</p> <p>&#160;</p> <p></p> <p>&#160;</p> <p>For many purposes, that technique works fine. For supplying pivot [...]]]></description>
				<content:encoded><![CDATA[<p>Converting complicated date and time stamps into a simplified form is a common task among intermediate-level users. For example, it may be desirable to simply this&#8230;.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/raw-dates.png"><img class="aligncenter size-full wp-image-370" title="raw dates" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/raw-dates.png" alt="" width="155" height="131" /></a></p>
<p>&nbsp;</p>
<p>&#8230;to this:</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/simplied-dates.png"><img class="aligncenter size-full wp-image-379" title="simplied dates" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/simplied-dates.png" alt="" width="60" height="100" /></a></p>
<p>&nbsp;</p>
<p>The common conversion technique calls for the =TEXT formula.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/month-and-year-formulas.png"><img class="aligncenter size-full wp-image-371" title="month and year - formulas" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/month-and-year-formulas.png" alt="" width="121" height="113" /></a></p>
<p>&nbsp;</p>
<p>For many purposes, that technique works fine. For supplying pivot table source data, however, the method is frustrating. Dates appear out of sequence. The formula converts the stamps into strict text which becomes alphabetized, like this:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/pivot-out-of-sequence.png"><img class="aligncenter size-full wp-image-373" title="pivot - out of sequence" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/pivot-out-of-sequence.png" alt="" width="187" height="93" /></a></p>
<p>&nbsp;</p>
<p>June appears before May since the text is displayed in alphabetical order. That&#8217;s not helpful &#8212; we&#8217;d like to see May appear prior to June. My solution modifies the common formula with =RIGHT, as follows:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/text-formula-in-sequence.png"><img class="aligncenter size-full wp-image-374" title="text formula - in sequence" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/text-formula-in-sequence.png" alt="" width="311" height="117" /></a></p>
<p>The pivot table results now appear as follows:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/pivot-in-sequence.png"><img class="aligncenter size-full wp-image-375" title="pivot - in sequence" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/06/pivot-in-sequence.png" alt="" width="190" height="98" /></a></p>
<p>&nbsp;</p>
<p>My formula places the actual date before the text-converted date, preserving the chronology.  The =RIGHT addition provides for the text portion of the string to be visible, hiding the rest.</p>
<p>&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=369</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Named Formulas as Nested Shorthand</title>
		<link>http://briancohenconsulting.com/blog/?p=347</link>
		<comments>http://briancohenconsulting.com/blog/?p=347#comments</comments>
		<pubDate>Sat, 21 Apr 2012 13:39:33 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[LEFT]]></category>
		<category><![CDATA[LEN]]></category>
		<category><![CDATA[name manager]]></category>
		<category><![CDATA[named formulas]]></category>
		<category><![CDATA[RIGHT]]></category>
		<category><![CDATA[SEARCH]]></category>
		<category><![CDATA[text extraction]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/blog/?p=347</guid>
		<description><![CDATA[<p>Utilizing Named Formulas can be a sensible alternative to confusing nesting. The following example demonstrates the technique in the context of a text extraction challenge.</p> <p>Below we see a list of URL&#8217;s.</p> <p>&#160;</p> <p></p> <p>&#160;</p> <p>Suppose we want to extract the four-digit codes following &#8220;3D&#8221; of each URL. For instance, we&#8217;d like to pull out [...]]]></description>
				<content:encoded><![CDATA[<p>Utilizing Named Formulas can be a sensible alternative to confusing nesting. The following example demonstrates the technique in the context of a text extraction challenge.</p>
<p>Below we see a list of URL&#8217;s.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/plain-urls.png"><img class="aligncenter size-full wp-image-348" title="plain urls" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/plain-urls.png" alt="" width="480" height="134" /></a></p>
<p>&nbsp;</p>
<p>Suppose we want to extract the four-digit codes following &#8220;3D&#8221; of each URL. For instance, we&#8217;d like to pull out &#8220;3173&#8243; from cell A1 below.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/red-urls.png"><img class="aligncenter size-full wp-image-349" title="red urls" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/red-urls.png" alt="" width="482" height="134" /></a></p>
<p>&nbsp;</p>
<p>One possible formula to extract the code from cell A1 is as follows:</p>
<p><strong>=LEFT(RIGHT($A1,LEN($A1)-SEARCH(&#8220;%&#8221;,$A1)-2),4)</strong>.</p>
<p>This formulas may be used for cells A3, A4, and A6 as well since those URL&#8217;s share the same text pattern.</p>
<p>&nbsp;</p>
<p>The pattern for cells A2, A5, and A7 is different. A new formula is required. To extract the code from those cells, I use</p>
<p><strong>=RIGHT($A2,4).</strong></p>
<p>Let&#8217;s name the first formula &#8220;PATTERN_1&#8243; and the second formula &#8220;PATTERN_2.&#8221;</p>
<p>Open the Name Manager.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/name-manager-blank.png"><img class="aligncenter size-full wp-image-350" title="name manager blank" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/name-manager-blank.png" alt="" width="558" height="427" /></a></p>
<p>&nbsp;</p>
<p>Name the formulas for Pattern 1 and Pattern 2 PATTERN_1 and PATTERN_2, respectively.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/name-manager-complete.png"><img class="aligncenter size-full wp-image-351" title="name manager complete" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/name-manager-complete.png" alt="" width="796" height="427" /></a></p>
<p>&nbsp;</p>
<p>Here&#8217;s a closer look.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/pattern-1-in-name-manager.png"><img class="aligncenter size-full wp-image-352" title="pattern 1 in name manager" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/pattern-1-in-name-manager.png" alt="" width="591" height="248" /></a></p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/pattern-2-in-name-manager.png"><img class="aligncenter size-full wp-image-353" title="pattern 2 in name manager" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/pattern-2-in-name-manager.png" alt="" width="591" height="248" /></a></p>
<p>&nbsp;</p>
<p>Write a formula in Column B to identify the pattern in Column A. When the pattern is identified, execute the corresponding Named Formula. Here&#8217;s how it all looks:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/with-formulas.png"><img title="with formulas" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/with-formulas.png" alt="" width="855" height="138" /></a></p>
<p>&nbsp;</p>
<p>The formula&#8217;s shown above, in Column B, look for the percent sign (%) as a trigger to identify Pattern 1. If Pattern 1 is identified, the Named Formula PATTERN_1 is executed.</p>
<p>If the percent sign is not found, a #VALUE error would result. We use IFERROR to execute PATTERN_2 when the percent sign is not found.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/extraction-complete.png"><img class="aligncenter size-full wp-image-354" title="extraction complete" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/04/extraction-complete.png" alt="" width="620" height="132" /></a></p>
<p>&nbsp;</p>
<p>Have fun!</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=347</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Column Sort like a Pro</title>
		<link>http://briancohenconsulting.com/blog/?p=314</link>
		<comments>http://briancohenconsulting.com/blog/?p=314#comments</comments>
		<pubDate>Fri, 09 Mar 2012 17:23:57 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[column sorting]]></category>
		<category><![CDATA[name manager]]></category>
		<category><![CDATA[named ranges]]></category>
		<category><![CDATA[VLOOKUP]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/blog/?p=314</guid>
		<description><![CDATA[<p>We typically sort rows, not columns. But sometimes a good column sort can be &#8220;in order.&#8221;</p> <p>Let&#8217;s say you routinely import raw data which span twenty or more columns. Perhaps the column ordering isn&#8217;t optimal, so you start off by cutting and pasting to move columns around. Here&#8217;s another way to approach your solution.</p> <p>Here [...]]]></description>
				<content:encoded><![CDATA[<p>We typically sort rows, not columns. But sometimes a good column sort can be &#8220;in order.&#8221;</p>
<p>Let&#8217;s say you routinely import raw data which span twenty or more columns. Perhaps the column ordering isn&#8217;t optimal, so you start off by cutting and pasting to move columns around. Here&#8217;s another way to approach your solution.</p>
<p>Here are sample data spanning six columns.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/unordered.png"><img class="aligncenter size-full wp-image-315" title="unordered" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/unordered.png" alt="" width="484" height="284" /></a></p>
<p>&nbsp;</p>
<p>We don&#8217;t like the column order. We prefer the order <strong>Name, Address, Phone, City, State, Zip, and Phone</strong>.</p>
<p>Start by creating a lookup table as follows. Input the desired column numbers adjacent to the column headings.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/column-table.png"><img class="aligncenter size-full wp-image-316" title="column table" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/column-table.png" alt="" width="172" height="153" /></a></p>
<p>&nbsp;</p>
<p>Name the range in the Name Manager. We call it &#8220;COLUMN_LOOKUP.&#8221;</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/name-manager.png"><img class="aligncenter size-full wp-image-317" title="name manager" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/name-manager.png" alt="" width="558" height="434" /></a></p>
<p>&nbsp;</p>
<p>Insert a row above the column headers.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/add-row.png"><img class="aligncenter size-full wp-image-318" title="add row" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/add-row.png" alt="" width="489" height="301" /></a></p>
<p>&nbsp;</p>
<p>In A1, lookup the desired column number corresponding to &#8220;Zip,&#8221; as shown below.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/formula1.png"><img class="aligncenter size-full wp-image-319" title="formula1" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/formula1.png" alt="" width="521" height="82" /></a></p>
<p>&nbsp;</p>
<p>Fill the formula right.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/formula2.png"><img class="aligncenter size-full wp-image-320" title="formula2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/formula2.png" alt="" width="513" height="83" /></a></p>
<p>&nbsp;</p>
<p>The desired column numbers now correspond to column headers. It&#8217;s time to sort.</p>
<p>By default, sorting occurs by rows. To sort columns, click &#8220;Options.&#8221;</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/sort1.png"><img class="aligncenter size-full wp-image-321" title="sort1" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/sort1.png" alt="" width="600" height="275" /></a></p>
<p>&nbsp;</p>
<p>Select &#8220;Left to Right.&#8221;</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/sort2.png"><img class="aligncenter size-full wp-image-322" title="sort2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/sort2.png" alt="" width="177" height="167" /></a></p>
<p>&nbsp;</p>
<p>Sort by &#8220;Row 1&#8243;, &#8220;Smallest to Largest.&#8221;</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/sort3.png"><img class="aligncenter size-full wp-image-323" title="sort3" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/sort3.png" alt="" width="600" height="275" /></a></p>
<p>&nbsp;</p>
<p>The columns are sorted as follows:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/ordered.png"><img class="aligncenter size-full wp-image-324" title="ordered" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/ordered.png" alt="" width="482" height="297" /></a></p>
<p>&nbsp;</p>
<p>We can now delete Row 1 for cleanup.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/ordered2.png"><img class="aligncenter size-full wp-image-325" title="ordered2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/03/ordered2.png" alt="" width="482" height="289" /></a></p>
<p>&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=314</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Pivot Table Range</title>
		<link>http://briancohenconsulting.com/blog/?p=280</link>
		<comments>http://briancohenconsulting.com/blog/?p=280#comments</comments>
		<pubDate>Sat, 25 Feb 2012 02:01:33 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[dynamic ranges]]></category>
		<category><![CDATA[name manager]]></category>
		<category><![CDATA[named ranges]]></category>
		<category><![CDATA[OFFSET]]></category>
		<category><![CDATA[pivot table]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/blog/?p=280</guid>
		<description><![CDATA[<p>Pivot tables can be nagging pains when source data change frequently. For instance, if the number of  source rows increase by ten every day, then daily you may manually edit the source range to accommodate ten more rows. As an alternative, you could reference entire columns, but your pivot table results will not be clean. You [...]]]></description>
				<content:encoded><![CDATA[<p>Pivot tables can be nagging pains when source data change frequently. For instance, if the number of  source rows increase by ten every day, then daily you may manually edit the source range to accommodate ten more rows. As an alternative, you could reference entire columns, but your pivot table results will not be clean. You will find &#8220;blank&#8221; entries. This makes people think that Excel is really in charge, not you.</p>
<p>The solution is to reference your source data as a <span style="text-decoration: underline;">dynamic range</span>. The source data range will decrease or increase in size as necessary.</p>
<p>For example, here are initial raw data:</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/raw-data1.png"><img class="aligncenter size-full wp-image-281" title="raw data1" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/raw-data1.png" alt="" width="158" height="173" /></a></p>
<p>and this is your pivot table&#8230;.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/pivot.png"><img class="aligncenter size-full wp-image-282" title="pivot" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/pivot.png" alt="" width="230" height="143" /></a></p>
<p>&nbsp;</p>
<p>The pivot table&#8217;s reference to the raw data is Sheet1!$A$1:$B$5.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/data-source1.png"><img class="aligncenter size-full wp-image-283" title="data source1" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/data-source1.png" alt="" width="391" height="192" /></a></p>
<p>&nbsp;</p>
<p>Now, let&#8217;s say the raw data expands. Additional data were added in rows 6 through 12.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/raw-data2.png"><img class="aligncenter size-full wp-image-284" title="raw data2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/raw-data2.png" alt="" width="156" height="261" /></a></p>
<p>&nbsp;</p>
<p>At this point you could manually modify the source to Sheet1!$A$1:$B$12. Or you could change the source to  Sheet1!$A:$B and settle for blanks, like this:</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/pivot-with-blanks2.png"><img class="aligncenter size-full wp-image-302" title="pivot with blanks2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/pivot-with-blanks2.png" alt="" width="231" height="302" /></a></p>
<p>&nbsp;</p>
<p>&#8230;you don&#8217;t want that. &#8220;But I can filter the rows to exclude the blank.&#8221; Stop, no more of that. Time to do it the right way.</p>
<p>Open the Name Manager.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/name-manager3.png"><img class="aligncenter size-full wp-image-286" title="name manager" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/name-manager3.png" alt="" width="558" height="427" /></a></p>
<p>&nbsp;</p>
<p>Create a new name. Call it RANGE. Define RANGE as shown below.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/range-formula.png"><img class="aligncenter size-full wp-image-288" title="range formula" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/range-formula.png" alt="" width="388" height="218" /></a></p>
<p>&nbsp;</p>
<p>Note that Sheet 1 contains the raw data.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sheet1-a.png"><img class="aligncenter size-full wp-image-301" title="sheet1-a" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sheet1-a.png" alt="" width="217" height="283" /></a></p>
<p>&nbsp;</p>
<p>As shown above, the range titled &#8220;RANGE&#8221; was defined as follows:</p>
<p><strong>=OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),2)</strong></p>
<p>The OFFSET function defined a dynamic range. In this example, the range begins zero rows and zero columns from cell A1. The COUNTA function counts the number of nonblank rows appearing in Column A. The number two listed at the end of the formula represents the number of columns to include.</p>
<p>Putting it all together, the named range titled &#8220;RANGE&#8221; was defined as an array starting exactly at cell A1, moving down the sheet, ending at the number of nonblank rows in Column A. The range &#8220;RANGE&#8221; expands a total of 2 columns, encompassing columns A and B.</p>
<p>Now I set the pivot table&#8217;s data source to =RANGE.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/pivot-table-equals-range.png"><img class="aligncenter size-full wp-image-292" title="pivot table equals range" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/pivot-table-equals-range.png" alt="" width="391" height="192" /></a></p>
<p>&nbsp;</p>
<p>Refreshing the pivot table, the new data appear.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/pivot2.png"><img class="aligncenter size-full wp-image-289" title="pivot2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/pivot2.png" alt="" width="228" height="278" /></a></p>
<p>&nbsp;</p>
<p>Now, each time the pivot table is refreshed, it will automatically expand or contract according the array of raw data.</p>
<p>&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=280</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Input-Controlled Conditional Formatting</title>
		<link>http://briancohenconsulting.com/blog/?p=243</link>
		<comments>http://briancohenconsulting.com/blog/?p=243#comments</comments>
		<pubDate>Sat, 11 Feb 2012 19:10:22 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Models & Tools]]></category>
		<category><![CDATA[conditional formatting]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/?p=243</guid>
		<description><![CDATA[<p>Question: How can I use inputs to control conditional formatting?</p> <p>The following example concerns advertising placements. Raw data are dumped into Columns K, L, M, N, and O.</p> <p>&#160;</p> <p></p> <p>&#160;</p> <p>Placements that incurred costs without producing leads are highlighted blue. The threshold triggering the conditionally formatted blue fill is controlled by an input. The purple functions [...]]]></description>
				<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>Question</strong></span>: How can I use inputs to control conditional formatting?</p>
<p>The following example concerns advertising placements. Raw data are dumped into Columns K, L, M, N, and O.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/overall.png"><img class="aligncenter size-full wp-image-255" title="overall" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/overall.png" alt="" width="956" height="453" /></a></p>
<p>&nbsp;</p>
<p>Placements that incurred costs without producing leads are highlighted blue. The threshold triggering the conditionally formatted blue fill is controlled by an input. The purple functions similarly. Here is a view of the input controls and the corresponding formulas.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/controls.png"><img class="aligncenter size-full wp-image-256" title="controls" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/controls.png" alt="" width="803" height="94" /></a></p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/controls-formulas.png"><img class="aligncenter size-full wp-image-257" title="controls formulas" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/controls-formulas.png" alt="" width="430" height="96" /></a></p>
<p>&nbsp;</p>
<p>The conditional formatting rules manager:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/conditional-formatting-overview.png"><img class="aligncenter size-full wp-image-258" title="conditional formatting overview" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/conditional-formatting-overview.png" alt="" width="615" height="290" /></a></p>
<p>&nbsp;</p>
<p>Detail on the &#8220;Blue&#8221; conditional format:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/blue-detail1.png"><img class="aligncenter size-full wp-image-259" title="blue detail" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/blue-detail1.png" alt="" width="381" height="365" /></a></p>
<p>&nbsp;</p>
<p>Detail on the &#8220;Purple&#8221; conditional format:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/purple-detail1.png"><img class="aligncenter size-full wp-image-260" title="purple detail" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/purple-detail1.png" alt="" width="381" height="365" /></a></p>
<p>&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=243</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Directory of Lookups</title>
		<link>http://briancohenconsulting.com/blog/?p=220</link>
		<comments>http://briancohenconsulting.com/blog/?p=220#comments</comments>
		<pubDate>Tue, 07 Feb 2012 16:18:53 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[INDIRECT]]></category>
		<category><![CDATA[name manager]]></category>
		<category><![CDATA[named ranges]]></category>
		<category><![CDATA[nested lookup]]></category>
		<category><![CDATA[VLOOKUP]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/?p=220</guid>
		<description><![CDATA[<p>Question:  What&#8217;s the best way to return lookup values from multiple tables (without going crazy from confusion)?</p> <p>Answer: Create a &#8220;directory&#8221; of lookup tables. Write a nested lookup utilizing the INDIRECT formula. Here&#8217;s a generic example.</p> <p>In the table below, the number of items sold per category per region were reported.</p> <p>&#160;</p> <p></p> <p>&#160;</p> <p>The [...]]]></description>
				<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>Question</strong></span>:  What&#8217;s the best way to return lookup values from multiple tables (without going crazy from confusion)?</p>
<p>Answer: Create a &#8220;directory&#8221; of lookup tables. Write a nested lookup utilizing the INDIRECT formula. Here&#8217;s a generic example.</p>
<p>In the table below, the number of items sold per category per region were reported.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table-complete.png"><img class="aligncenter size-full wp-image-221" title="sales per region table - complete" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table-complete.png" alt="sales per region table - complete" width="452" height="151" /></a></p>
<p>&nbsp;</p>
<p>The values were returned from individual tables corresponding to regions.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-regions.png"><img class="aligncenter size-full wp-image-222" title="sales regions" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-regions.png" alt="" width="678" height="139" /></a></p>
<p>&nbsp;</p>
<p>The tables were named as follows:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/name-manager21.png"><img class="aligncenter size-full wp-image-237" title="name manager2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/name-manager21.png" alt="" width="785" height="536" /></a></p>
<p>&nbsp;</p>
<p>with the named range DIRECTORY_OF_TABLES shown below.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/directory-of-table-names.png"><img class="aligncenter size-full wp-image-239" title="directory of table names" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/directory-of-table-names.png" alt="" width="390" height="277" /></a></p>
<p>&nbsp;</p>
<p>First, we&#8217;ll return the value &#8220;23&#8243; corresponding to the item &#8220;Sunglasses&#8221; from the &#8220;East&#8221; table:</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table.png"><img class="aligncenter size-full wp-image-224" title="sales per region table" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table.png" alt="" width="454" height="150" /></a></p>
<p>&nbsp;</p>
<p>The formula is shown below. The INDIRECT formula was nested within a VLOOKUP.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table-one-formula.png"><img class="aligncenter size-full wp-image-225" title="sales per region table - one formula" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table-one-formula.png" alt="" width="828" height="154" /></a></p>
<p>&nbsp;</p>
<p>The rest of the table is completed as follows with some of the formulas shown:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table-complete1.png"><img class="aligncenter size-full wp-image-226" title="sales per region table - complete" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table-complete1.png" alt="" width="452" height="151" /></a></p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table-multiple-formulas.png"><img class="aligncenter size-full wp-image-227" title="sales per region table - multiple formulas" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/sales-per-region-table-multiple-formulas.png" alt="" width="1244" height="154" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=220</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weighted Rankings</title>
		<link>http://briancohenconsulting.com/blog/?p=106</link>
		<comments>http://briancohenconsulting.com/blog/?p=106#comments</comments>
		<pubDate>Sat, 04 Feb 2012 14:30:17 +0000</pubDate>
		<dc:creator>Brian Cohen</dc:creator>
				<category><![CDATA[Models & Tools]]></category>
		<category><![CDATA[composite score]]></category>
		<category><![CDATA[name manager]]></category>
		<category><![CDATA[named ranges]]></category>
		<category><![CDATA[ranking]]></category>
		<category><![CDATA[SUMPRODUCT]]></category>
		<category><![CDATA[weighting scheme]]></category>

		<guid isPermaLink="false">http://briancohenconsulting.com/?p=106</guid>
		<description><![CDATA[<p>Question: What&#8217;s the handiest method of ranking elements based on weighted scores?</p> <p>In this generic example, four employees are ranked based on four criteria: looks, accuracy, attitude, and revenue. Is that fair?</p> <p>&#160;</p> <p></p> <p>&#160;</p> <p>The weights are arbitrary inputs. I collectively assigned the inputs a named range: WEIGHTING_SCHEME.</p> <p>&#160;</p> <p></p> <p>&#160;</p> <p>Here is a [...]]]></description>
				<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>Question</strong></span>: What&#8217;s the handiest method of ranking elements based on weighted scores?</p>
<p>In this generic example, four employees are ranked based on four criteria: looks, accuracy, attitude, and revenue. Is that fair?</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/weighting-scheme2.png"><img class="aligncenter size-full wp-image-108" title="Weighting Scheme" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/weighting-scheme2.png" alt="Weighting Scheme" width="312" height="82" /></a></p>
<p>&nbsp;</p>
<p>The weights are arbitrary inputs. I collectively assigned the inputs a named range: WEIGHTING_SCHEME.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/name-manager2.png"><img class="aligncenter size-full wp-image-110" title="name manager2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/name-manager2.png" alt="" width="558" height="427" /></a></p>
<p>&nbsp;</p>
<p>Here is a view of the weighting scheme with the raw scores, weighted composite scores, and ranks.</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/scores-and-rank-method-1.png"><img class="aligncenter size-full wp-image-112" title="scores and rank - method 1" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/scores-and-rank-method-1.png" alt="" width="511" height="221" /></a></p>
<p>&nbsp;</p>
<p>As you can see, Katie outranked Kevin, John, and Marissa. Her looks were key.</p>
<p>I named other ranges, too.  Take another look at the Name Manager:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/name-manager.png"><img class="aligncenter size-full wp-image-109" title="Name Manager" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/name-manager.png" alt="Name Manager" width="558" height="427" /></a></p>
<p>&nbsp;</p>
<p>Here is a view of the formulas:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/formulas.png"><img class="aligncenter size-full wp-image-114" title="formulas" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/formulas.png" alt="" width="836" height="147" /></a></p>
<p>I name cells and ranges often throughout my work. I find it convenient to keep track of what&#8217;s what.</p>
<p>&nbsp;</p>
<p>An alternate method is through use of  SUMPRODUCT. Here&#8217;s how:</p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/scores-and-rank-method-2-a.png"><img class="aligncenter size-full wp-image-124" title="scores and rank - method 2-a" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/scores-and-rank-method-2-a.png" alt="" width="513" height="139" /></a></p>
<p>&nbsp;</p>
<p><a href="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/scores-and-rank-method-2.png"><img class="aligncenter size-full wp-image-116" title="scores and rank - method 2" src="http://briancohenconsulting.com/blog/wp-content/uploads/2012/02/scores-and-rank-method-2.png" alt="" width="472" height="132" /></a></p>
<p>The SUMPRODUCT formulas produce identical calculations.</p>
<p>&nbsp;</p>
<p>Brian Cohen<br />
brian@briancohenconsulting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://briancohenconsulting.com/blog/?feed=rss2&#038;p=106</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
