<?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>Zack of All Trades &#187; date</title>
	<atom:link href="http://zackofalltrades.com/tag/date/feed/" rel="self" type="application/rss+xml" />
	<link>http://zackofalltrades.com</link>
	<description>… and master of, um… let me get back to you on that…</description>
	<lastBuildDate>Fri, 01 Apr 2011 14:20:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Extracting useful dates from bank CSV files</title>
		<link>http://zackofalltrades.com/2008/10/extracting-useful-dates-from-bank-csv-files/</link>
		<comments>http://zackofalltrades.com/2008/10/extracting-useful-dates-from-bank-csv-files/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 04:52:17 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bank]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[financial]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[spreadsheet]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=142</guid>
		<description><![CDATA[I download activity from my bank in CSV format to work on it in a spreadsheet, which is pretty useful when you're reconciling accounts, etc.  Unfortunately, the date as given in the file isn't in a format recognizable by a spreadsheet. Here's how to change that. ]]></description>
			<content:encoded><![CDATA[<p>I download activity from my bank in CSV format to work on it in a spreadsheet, which is pretty useful when you&#8217;re reconciling accounts, etc.  Unfortunately, the date as given in the file isn&#8217;t in a format recognizable by a spreadsheet (Excel in this case, but most other spreadsheet programs use an identical formula language).  Here&#8217;s how to change that. </p>
<p>The date format as it comes from the bank looks like this:</p>
<pre>
20081009120000[0:GMT]
</pre>
<p>From a datestamp perspective, it&#8217;s pretty useful &#8211; gives the whole date and time, plus the timezone.  In my bank&#8217;s case, the time and timezone is always noon and GMT, so I&#8217;d much rather have just the date. </p>
<p>Assuming that the above value is in cell B1, this formula will extract a date in the considerably more useful YYYY-MM-DD format:</p>
<pre>
= LEFT(B1,4) &#038; "-" &#038; RIGHT(LEFT(B1,6),2) &#038; "-" &#038; RIGHT(LEFT(B1,8),2)
</pre>
<p>This formula prints 2008-10-09 for the above date string.  If you want to get rid of the original date column, copy the new column of dates, then do a &#8220;Paste Special&#8230;&#8221; selecting &#8220;Values&#8221;, and it will no longer be dependent on the original date column. </p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2008/10/extracting-useful-dates-from-bank-csv-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

