<?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>Everything is Crap &#187; excel</title>
	<atom:link href="http://everythingiscrap.com/tag/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://everythingiscrap.com</link>
	<description>Notes on the crap we&#039;ve been subjected to</description>
	<lastBuildDate>Wed, 02 May 2012 15:33:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Doing math on a selection of cells in Excel</title>
		<link>http://everythingiscrap.com/doing-math-on-a-selection-of-cells-in-excel/</link>
		<comments>http://everythingiscrap.com/doing-math-on-a-selection-of-cells-in-excel/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 14:05:33 +0000</pubDate>
		<dc:creator>kris</dc:creator>
				<category><![CDATA[excel]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=226</guid>
		<description><![CDATA[Why do I keep forgetting this?  To do math on a selection of cells in Excel (like making all the numbers negative for example) type the new number in a blank cell (-1 for this example), copy it select the cells you want to do the math to pick paste special pick the correct math [...]]]></description>
			<content:encoded><![CDATA[<p>Why do I keep forgetting this?  To do math on a selection of cells in Excel (like making all the numbers negative for example)</p>
<ul>
<li>type the new number in a blank cell (-1 for this example),</li>
<li>copy it</li>
<li>select the cells you want to do the math to</li>
<li>pick paste special</li>
<li>pick the correct math function under "Operation" (Multiply for this example)</li>
<li>Click ok</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/doing-math-on-a-selection-of-cells-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convoluted Matching using Expression Web and Excel</title>
		<link>http://everythingiscrap.com/convoluted-matching-using-expression-web-and-excel/</link>
		<comments>http://everythingiscrap.com/convoluted-matching-using-expression-web-and-excel/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 18:28:00 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[expression web]]></category>

		<guid isPermaLink="false">http://piotrouble.wordpress.com/2007/08/29/convoluted-matching-using-expression-web-and-excel</guid>
		<description><![CDATA[Today, I was able to take a list if the customer names and account numbers from a text file and associate them with the account numbers in an excel file. First, I filtered the list (accepting only lines with a "-" in them). replaced&#8230; {.*}{[0-9][0-9][0-9]-[0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]}{.*} &#8230;with&#8230; 1t2t3 &#8230;in Expression Web. Then, I pasted that to [...]]]></description>
			<content:encoded><![CDATA[<div>Today, I was able to take a list if the customer names and account numbers from a text file and associate them with the account numbers in an excel file. First, I filtered the list (accepting only lines with a "-" in them). replaced&#8230;</div>
<div></div>
<div>{.*}{[0-9][0-9][0-9]-[0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]}{.*}</div>
<div></div>
<div>&#8230;with&#8230;</div>
<div></div>
<div>1t2t3</div>
<div></div>
<div>&#8230;in Expression Web. Then, I pasted that to a separate worksheet in the excel file. From there, in the excel's main worksheet I was able to use the following formula&#8230;</div>
<div></div>
<div>=IF(ISERROR(MATCH(A56,'Company Names'!B:B,0)),"",INDEX('Company Names'!A:A,MATCH(A56,'Company Names'!B:B,0),1))</div>
<div></div>
<div>What this does, is it returns the name of the company on the "Company Names" work book by matching the account numbers. It's quite convoluted, but it works. Break it down for yourself and you'll get it. Whew. That was fun.</div>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/convoluted-matching-using-expression-web-and-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filtering e-mail addresses from a huge mound of plain-text</title>
		<link>http://everythingiscrap.com/filtering-e-mail-addresses-from-a-huge-mound-of-plain-text/</link>
		<comments>http://everythingiscrap.com/filtering-e-mail-addresses-from-a-huge-mound-of-plain-text/#comments</comments>
		<pubDate>Wed, 30 May 2007 23:47:00 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[excel]]></category>

		<guid isPermaLink="false">http://piotrouble.wordpress.com/2007/05/30/filtering-e-mail-addresses-from-a-huge-mound-of-plain-text</guid>
		<description><![CDATA[I'm faced with a mailbox full of bounced/undeliverable messages and from that I need to extract all the e-mail addresses that need to be removed from our home-spun mass-mail program. After messing around a whole bunch, installing a whole mess of different editors and tools that I downloaded from the internet, and wasting a lot [...]]]></description>
			<content:encoded><![CDATA[<div>I'm faced with a mailbox full of bounced/undeliverable messages and from that I need to extract all the e-mail addresses that need to be removed from our home-spun mass-mail program.</div>
<div></div>
<div>After messing around a whole bunch, installing a whole mess of different editors and tools that I downloaded from the internet, and wasting a lot of time I finally came up with a solution that works for complex search and replace operations yet uses only the tools that I already have: Excel and Expression Web. I was able to export a mailbox from outlook containing hundreds of messages, and I was able to strip the unique e-mail addresses for each message. Here's the steps I took (minus the figuring out and messing around that I did)&#8230;</div>
<div></div>
<div>To make the e-mails useful I exported them into a CSV. From there I took just the message text and pasted that into Microsoft Expression Web. To isolate the e-mail addresses from the rest of the garbage, I searched for this&#8230;</div>
<div></div>
<div>[a-zA-Z0-9_.-]#@[a-zA-Z0-9_.-]+ </div>
<div></div>
<div>&#8230;and did a "find all." After that I took my search results and pasted them into a new document and then did a replace funciton where I replaced&#8230;</div>
<div></div>
<div>.*[ t&lt;(&quot;&#39;]{[a-zA-Z0-9_.-]#@[a-zA-Z0-9_.-]+}.*</div>
<div></div>
<div>&#8230; with &#8230; </div>
<div></div>
<div>1</div>
<div></div>
<div>It worked, but there was some problem recognising usernames that had a dot in them. There were, naturally, a lot of duplicates, so I pasted that list back into excel and performed this&#8230;</div>
<div></div>
<div>=IF(COUNTIF(A1:A670,A1)&gt;1,"",A1)</div>
<div></div>
<div>&#8230;in the column next to the e-mail addresses. That told me whether or not there are duplicates below the current line. I filled the formula down to the end of the column. I copied that column and pasted as values into the next column, then I sorted the values and I have a list of e-mails with no duplicates, ready to be used.</div>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/filtering-e-mail-addresses-from-a-huge-mound-of-plain-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

