<?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: Microsoft Excel help needed</title>
	<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed/</link>
	<description>Comments on Ask MetaFilter post Microsoft Excel help needed</description>
	<pubDate>Wed, 11 Jan 2006 17:26:53 -0800</pubDate>
	<lastBuildDate>Wed, 11 Jan 2006 17:26:53 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Microsoft Excel help needed</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed</link>	
		<description>Microsoft Excel help needed. &lt;br /&gt;&lt;br /&gt; I recently found that all of the values in a spreadsheet I&apos;m using are out by a factor of ~0.8. I&apos;d like to do something similar to a search and replace, where every cell that contains a number is replaced by 0.8 times that number. So, cell = 0.8*cell. I want the resulting cell to just be a raw value, not a formula (for easy copying and pasting). Can this be done?&lt;br&gt;
&lt;br&gt;
[Running Microsoft Excel X for Mac, by the way]</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.30631</guid>
		<pubDate>Wed, 11 Jan 2006 17:24:07 -0800</pubDate>
		<dc:creator>teem</dc:creator>
		
			<category>microsoft</category>
		
			<category>excel</category>
		
			<category>spreadsheet</category>
		
	</item> <item>
		<title>By: randomstriker</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481813</link>	
		<description>Insert new column next to current column.&lt;br&gt;
Enter a formula that multiplies adjacent cell by 0.8.&lt;br&gt;
Copy and paste that formula over the whole column.&lt;br&gt;
Recalc (if on manual recalc).&lt;br&gt;
Copy the new column.  Right Click.  Paste Special.  Values.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481813</guid>
		<pubDate>Wed, 11 Jan 2006 17:26:53 -0800</pubDate>
		<dc:creator>randomstriker</dc:creator>
	</item><item>
		<title>By: i love cheese</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481819</link>	
		<description>Create a column with the formula you want.  Then highlight the column, copy it, then hit Edit&amp;gt;Paste Special... and choose &quot;Values.&quot;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481819</guid>
		<pubDate>Wed, 11 Jan 2006 17:29:47 -0800</pubDate>
		<dc:creator>i love cheese</dc:creator>
	</item><item>
		<title>By: teem</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481821</link>	
		<description>randomstriker: Thanks, but I was hoping for something that didn&apos;t require new columns. It&apos;s every single number in my spreadsheet (well, the old guy&apos;s spreadsheet...): there&apos;s lots of them, and they aren&apos;t all in orderly columns. I may end up using your method, but something more like a widespread search and replace would be ideal.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481821</guid>
		<pubDate>Wed, 11 Jan 2006 17:30:42 -0800</pubDate>
		<dc:creator>teem</dc:creator>
	</item><item>
		<title>By: randomstriker</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481823</link>	
		<description>New sheet or tab.&lt;br&gt;
Use a 3D formula (i.e. one with references to cells in a different sheet or tab), apply it across a range of same dimensions as your original table.&lt;br&gt;
Copy, Paste Special.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481823</guid>
		<pubDate>Wed, 11 Jan 2006 17:34:57 -0800</pubDate>
		<dc:creator>randomstriker</dc:creator>
	</item><item>
		<title>By: pompomtom</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481824</link>	
		<description>Hit alt-F11, select the sheet you&apos;re working in, then paste in this macro:&lt;br&gt;
&lt;br&gt;
Sub ValuesByPointEight()&lt;br&gt;
For Each cell In Range(&quot;A1:D25&quot;)&lt;br&gt;
If cell.Value &lt;&gt; &quot;&quot; Then cell.Value = cell.Value * 0.8&lt;br&gt;
Next&lt;br&gt;
End Sub&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
....adjusting the &quot;A1:D25&quot; to whatever range you&apos;re using.&lt;/&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481824</guid>
		<pubDate>Wed, 11 Jan 2006 17:34:58 -0800</pubDate>
		<dc:creator>pompomtom</dc:creator>
	</item><item>
		<title>By: pompomtom</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481831</link>	
		<description>actually scratch that... that gets broken by any text.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481831</guid>
		<pubDate>Wed, 11 Jan 2006 17:38:43 -0800</pubDate>
		<dc:creator>pompomtom</dc:creator>
	</item><item>
		<title>By: bCat</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481838</link>	
		<description>I believe you can use the multiplier function in Excel - Microsoft help shows the steps to &lt;a href=&quot;http://office.microsoft.com/en-us/assistance/HP030561411033.aspx#Multiply%20a%20range%20of%20numbers%20by%20a%20number&quot;&gt;&quot;multiply a range of numbers by a number&quot;&lt;/a&gt; (second item on the page). &lt;br&gt;
&lt;br&gt;
It doesn&apos;t breaks if there is text in the selected range but blank cells will have a zero value.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481838</guid>
		<pubDate>Wed, 11 Jan 2006 17:45:26 -0800</pubDate>
		<dc:creator>bCat</dc:creator>
	</item><item>
		<title>By: pompomtom</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481841</link>	
		<description>This one works though...&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Sub ValuesByPointEight()&lt;br&gt;
&lt;br&gt;
For Each cell In Range(&quot;a1:d35&quot;)&lt;br&gt;
    If cell.Value &lt;&gt; cell.Text Then cell.Value = cell.Value * 0.8&lt;br&gt;
Next&lt;br&gt;
&lt;br&gt;
End Sub&lt;/&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481841</guid>
		<pubDate>Wed, 11 Jan 2006 17:46:16 -0800</pubDate>
		<dc:creator>pompomtom</dc:creator>
	</item><item>
		<title>By: blm</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481857</link>	
		<description>You can do it with one extra cell:&lt;br&gt;
&lt;br&gt;
1. Select the cells you want to change. With Edit &amp;gt; Go To... &amp;gt; Special... you can select a subset of all the cells, such as all those with numbers.&lt;br&gt;
2. Create a new worksheet, put .8 in a cell, copy it.&lt;br&gt;
3. Go back to original worksheet, choose Edit &amp;gt; Paste Special.... Under Operation, click Multiply. Click Ok.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481857</guid>
		<pubDate>Wed, 11 Jan 2006 18:03:23 -0800</pubDate>
		<dc:creator>blm</dc:creator>
	</item><item>
		<title>By: teem</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481877</link>	
		<description>Thanks pompomtom, exactly what I was after.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481877</guid>
		<pubDate>Wed, 11 Jan 2006 18:36:22 -0800</pubDate>
		<dc:creator>teem</dc:creator>
	</item><item>
		<title>By: mullacc</title>
		<link>http://ask.metafilter.com/30631/Microsoft-Excel-help-needed#481942</link>	
		<description>you could also put .8 in a cell off to the side, copy that cell, highlight your range of cells and then Edit -&amp;gt;  Paste Special -&amp;gt; Multiply.&lt;br&gt;
&lt;br&gt;
But it sounds like I&apos;m too late :(</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.30631-481942</guid>
		<pubDate>Wed, 11 Jan 2006 19:49:52 -0800</pubDate>
		<dc:creator>mullacc</dc:creator>
	</item>
	</channel>
</rss>
