<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Ideal ranges in excel charts?</title>
	<link>http://ask.metafilter.com/226511/Ideal-ranges-in-excel-charts/</link>
	<description>Comments on Ask MetaFilter post Ideal ranges in excel charts?</description>
	<pubDate>Thu, 11 Oct 2012 23:13:23 -0800</pubDate>
	<lastBuildDate>Thu, 11 Oct 2012 23:47:16 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Ideal ranges in excel charts?</title>
		<link>http://ask.metafilter.com/226511/Ideal-ranges-in-excel-charts</link>	
		<description>Displaying ideal ranges in the plot area of an Excel 2007 chart. Possible? &lt;br /&gt;&lt;br /&gt; Say I have a table in a worksheet that tracks temperature data. The table is like this:&lt;br&gt;
&lt;br&gt;
Day | Temp (F)&lt;br&gt;
&lt;br&gt;
Day is plotted on X, of course, and temp on Y.&lt;br&gt;
&lt;br&gt;
I&apos;d like to create a chart that has two components: an actual line showing daily recorded temperatures, and a filled in area behind that line that displays an ideal temperature range.&lt;br&gt;
&lt;br&gt;
I know I can do conditional formatting in the table itself, but I&apos;d really like the ideal range to be displayed handily in the plot area of a chart. I assumed I could do this using a secondary axis, but I&apos;m rather stumped as to how this might be accomplished. It seems like this would be a common thing people would like to do, but no amount of googling has revealed a method to accomplish this.&lt;br&gt;
&lt;br&gt;
If Excel 2007 can&apos;t do this, is there another spreadsheet program (preferably free) that can do this? Can Excel 2010 do this? Or is there something I could export the CSV data into that would allow this type of visualization? Preferably without needing to write code. I can write code. I don&apos;t want to.&lt;br&gt;
&lt;br&gt;
Thanks.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2012:site.226511</guid>
		<pubDate>Thu, 11 Oct 2012 23:13:23 -0800</pubDate>
		<dc:creator>xyzzy</dc:creator>
		
			<category>excel</category>
		
			<category>chart</category>
		
			<category>resolved</category>
		
	</item>
	<item>
		<title>By: Jasper Friendly Bear</title>
		<link>http://ask.metafilter.com/226511/Ideal-ranges-in-excel-charts#3277563</link>	
		<description>You can try the following in Excel 2007:&lt;br&gt;
&lt;br&gt;
Set up your data as follows:&lt;br&gt;
&lt;br&gt;
Column A: Day Labels (most likely dates)&lt;br&gt;
Column B: Daily Temperatures&lt;br&gt;
Column C: Low Temperatures for that day&lt;br&gt;
Column D: High Temperatures for the day&lt;br&gt;
Column E: Difference between the High &amp;amp; low range (i.e., column D minus column C)&lt;br&gt;
&lt;br&gt;
For example your data might look like this: &lt;br&gt;
&lt;br&gt;
A1: Day&lt;br&gt;
B1: Temp&lt;br&gt;
C1: Low Temp&lt;br&gt;
D1: High Temp&lt;br&gt;
E1: Adj High Temp&lt;br&gt;
A2: 12-Oct-12&lt;br&gt;
B2: 12&lt;br&gt;
C2: 10&lt;br&gt;
D2: 15&lt;br&gt;
E2: 5 (this will be the following formula) &lt;strong&gt;=D2-C2&lt;/strong&gt;&lt;br&gt;
A3: 13-Oct-12&lt;br&gt;
B3: 14&lt;br&gt;
C3: 12&lt;br&gt;
D3: 16&lt;br&gt;
E3: 4 (this will be the following formula) &lt;strong&gt;=D3-C3&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
1. Using the Ctrl key, select the data in columns A, B, C, and &lt;strong&gt;E&lt;/strong&gt; (not column D) and create a stacked area chart (make sure it is a &lt;strong&gt;stacked area chart&lt;/strong&gt;).&lt;br&gt;
&lt;br&gt;
2. You&apos;ll get a chart with two areas on it. Right Click the bottom area and go to &lt;strong&gt;Format data series --&amp;gt; fill&lt;/strong&gt; and set the fill to no fill. This will hide the bottom part of the chart that you don&apos;t need.&lt;br&gt;
&lt;br&gt;
3. At this point, you&apos;ll have plotted the temperature ranges&lt;br&gt;
&lt;br&gt;
4. Using the Ctrl key, select the data in column A and B.&lt;br&gt;
&lt;br&gt;
5. Use Ctrl C to copy the data you&apos;ve highlighted in columns A and B&lt;br&gt;
&lt;br&gt;
6. Select the chart, and use Ctrl V to paste the daily temperature data on to the chart.&lt;br&gt;
&lt;br&gt;
7. At this point, you&apos;ll get a new area chart sitting on top of the temperature ranges you plotted previously.&lt;br&gt;
&lt;br&gt;
8. Right click on the newly created stacked area chart showing the daily temperature, and select &quot;Change series chart type&quot;&lt;br&gt;
&lt;br&gt;
9. Select line chart for the chart type.&lt;br&gt;
&lt;br&gt;
10. Now you should have the daily temperature plotted as a line chart, with the temperature range behind it as an area chart.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2012:site.226511-3277563</guid>
		<pubDate>Thu, 11 Oct 2012 23:47:16 -0800</pubDate>
		<dc:creator>Jasper Friendly Bear</dc:creator>
	</item><item>
		<title>By: xyzzy</title>
		<link>http://ask.metafilter.com/226511/Ideal-ranges-in-excel-charts#3277574</link>	
		<description>Oh my gosh, &lt;a href=&quot;https://dl.dropbox.com/u/8095836/chart.jpg&quot;&gt;you are a GENIUS&lt;/a&gt;.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2012:site.226511-3277574</guid>
		<pubDate>Fri, 12 Oct 2012 00:50:05 -0800</pubDate>
		<dc:creator>xyzzy</dc:creator>
	</item>
	</channel>
</rss>
