<?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>ohsomuchwork &#187; Excel 2007</title>
	<atom:link href="http://ohsomodern.org/work/category/excel-2007/feed" rel="self" type="application/rss+xml" />
	<link>http://ohsomodern.org/work</link>
	<description>Code snippets, ActionScript 3.0 and some other tech stuff</description>
	<lastBuildDate>Wed, 25 Apr 2012 08:30:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Filtering weekdays in Excel 2007</title>
		<link>http://ohsomodern.org/work/excel-2007/filtering-weekdays-in-excel-2007</link>
		<comments>http://ohsomodern.org/work/excel-2007/filtering-weekdays-in-excel-2007#comments</comments>
		<pubDate>Tue, 27 Jul 2010 08:28:44 +0000</pubDate>
		<dc:creator>jenni</dc:creator>
				<category><![CDATA[Excel 2007]]></category>

		<guid isPermaLink="false">http://ohsomodern.org/work/?p=73</guid>
		<description><![CDATA[I wanted to conditionally format all Mondays in a date range. I found no way to do this with conditional formatting and filters, but at least I found a workaround. In a column, next to the table I have, I &#8230; <a href="http://ohsomodern.org/work/excel-2007/filtering-weekdays-in-excel-2007">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wanted to conditionally format all Mondays in a date range. I found no way to do this with conditional formatting and filters, but at least I found a workaround.</p>
<p>In a column, next to the table I have, I used this formula:</p>
<p>=IF(WEEKDAY(Table1[[#This Row];[Datum]])=2;&#8221;Monday&#8221;;&#8221;Not Monday&#8221;)</p>
<p>I copied this formula to the other cells and then I filtered that specific column for Mondays and colored the background of those cells manually. This method does obviously not work so well if you have a lot of data, but formatting a few rows where dates are not changing should at least be quicker than manually going through each date.</p>
<p>You could also use something like this:</p>
<p>=IF(WEEKDAY(A1)=2;&#8221;Monday&#8221;;&#8221;Not Monday&#8221;)</p>
<p>The weekdays have the following numbering:</p>
<p>Sunday = 1<br />
Monday = 2<br />
Tuesday = 3<br />
Wednesday = 4<br />
Thursday = 5<br />
Friday = 6<br />
Saturday = 7</p>
]]></content:encoded>
			<wfw:commentRss>http://ohsomodern.org/work/excel-2007/filtering-weekdays-in-excel-2007/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Column charts with negative axis</title>
		<link>http://ohsomodern.org/work/excel-2007/column-charts-with-negative-axis</link>
		<comments>http://ohsomodern.org/work/excel-2007/column-charts-with-negative-axis#comments</comments>
		<pubDate>Mon, 31 May 2010 17:33:27 +0000</pubDate>
		<dc:creator>jenni</dc:creator>
				<category><![CDATA[Excel 2007]]></category>
		<category><![CDATA[Work examples]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[excel hacks]]></category>

		<guid isPermaLink="false">http://ohsomodern.org/work/?p=23</guid>
		<description><![CDATA[A really good tutorial can be found here on how to create &#8220;clustered-stacked column charts&#8221;. It works very well in Excel 2007 also. The result looks something like this: It took me a while to find how to accomplish this, &#8230; <a href="http://ohsomodern.org/work/excel-2007/column-charts-with-negative-axis">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A really good tutorial can be found <a title="Clustered-stacked column charts" href="http://peltiertech.com/WordPress/clustered-stacked-column-charts/" target="_blank">here</a> on how to create &#8220;clustered-stacked column charts&#8221;. It works very well in Excel 2007 also. The result looks something like this:</p>
<div id="attachment_24" class="wp-caption alignnone" style="width: 219px"><a href="http://ohsomodern.org/work/wp-content/uploads/2010/05/clusteredChart.png"><img class="size-full wp-image-24" title="clusteredChart" src="http://ohsomodern.org/work/wp-content/uploads/2010/05/clusteredChart.png" alt="" width="209" height="500" /></a><p class="wp-caption-text">Clustered-stacked column chart</p></div>
<p>It took me a while to find how to accomplish this, I googled different variations of &#8220;Excel 2007 series values&#8221; minus, negative, stacked, &#8220;excel 2007 axis scale&#8221;, &#8220;same secondary scale&#8221;, &#8220;negative bar color&#8221;. I even attempted scripting it, but with no luck.</p>
<p>This chart is used to illustrate why a company is not necessarily profitable, despite that it looks that way first. The profits exceed the costs at a first look (above the zero), but adding costs for personnell and operating expenses, the actual result is negative, as seen above where the multi-colored bar (expense types) is longer than the blue (income).</p>
]]></content:encoded>
			<wfw:commentRss>http://ohsomodern.org/work/excel-2007/column-charts-with-negative-axis/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Customizing the legend of a chart in Excel 2007</title>
		<link>http://ohsomodern.org/work/excel-2007/customizing-the-legend-of-a-chart-in-excel-2007</link>
		<comments>http://ohsomodern.org/work/excel-2007/customizing-the-legend-of-a-chart-in-excel-2007#comments</comments>
		<pubDate>Mon, 31 May 2010 17:08:50 +0000</pubDate>
		<dc:creator>jenni</dc:creator>
				<category><![CDATA[Excel 2007]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[excel hacks]]></category>
		<category><![CDATA[legend]]></category>

		<guid isPermaLink="false">http://ohsomodern.org/work/?p=18</guid>
		<description><![CDATA[To remove a legend key without removing the data from the chart, select the specific key and press backspace: Selecting the legend key also allows formatting, even though the text itself cannot be edited. Pressing CTRL + B or the &#8230; <a href="http://ohsomodern.org/work/excel-2007/customizing-the-legend-of-a-chart-in-excel-2007">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To remove a legend key without removing the data from the chart, select the specific key and press backspace:</p>
<div id="attachment_19" class="wp-caption alignnone" style="width: 531px"><a href="http://ohsomodern.org/work/wp-content/uploads/2010/05/deleteLegend.png"><img class="size-full wp-image-19" title="deleteLegend" src="http://ohsomodern.org/work/wp-content/uploads/2010/05/deleteLegend.png" alt="" width="521" height="441" /></a><p class="wp-caption-text">Before deleting</p></div>
<div id="attachment_20" class="wp-caption alignnone" style="width: 476px"><a href="http://ohsomodern.org/work/wp-content/uploads/2010/05/deleteLegend2.png"><img class="size-full wp-image-20" title="deleteLegend2" src="http://ohsomodern.org/work/wp-content/uploads/2010/05/deleteLegend2.png" alt="" width="466" height="307" /></a><p class="wp-caption-text">After deleting</p></div>
<p>Selecting the legend key also allows formatting, even though the text itself cannot be edited. Pressing CTRL + B or the bold button would make the text bold, for an example.</p>
]]></content:encoded>
			<wfw:commentRss>http://ohsomodern.org/work/excel-2007/customizing-the-legend-of-a-chart-in-excel-2007/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

