<?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>Tangential Ramblings &#187; Spreadsheets</title>
	<atom:link href="http://blog.osirra.com/category/spreadsheets/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.osirra.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 06:18:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Tag-stacking: happy days</title>
		<link>http://blog.osirra.com/2010/07/09/tag-stacking-happy-days/</link>
		<comments>http://blog.osirra.com/2010/07/09/tag-stacking-happy-days/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 22:57:45 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Numbers and stuff]]></category>
		<category><![CDATA[Spreadsheets]]></category>

		<guid isPermaLink="false">http://blog.osirra.com/?p=3533</guid>
		<description><![CDATA[Today I undertook some more awesome analytics. I received some data at lunchtime courtesy of one of my more distant Twitter connections.  I&#8217;d been recommended to her by one of her Twitter-hungry ex-colleagues as a trusted member of the government community (I think), and importantly as someone who knows their way around Excel. The data [...]]]></description>
			<content:encoded><![CDATA[<p>Today I undertook some more awesome analytics.</p>
<p>I received some data at lunchtime courtesy of one of my more distant Twitter connections.  I&#8217;d been recommended to her by one of her Twitter-hungry ex-colleagues as a trusted member of the government community (I think), and importantly as someone who knows their way around Excel.</p>
<p>The data was very high profile—its basis has adorned the front page of BBC News in the not-too-distant past—but I won&#8217;t divulge any more information about its contents, nor those requesting the analysis.  Suffice to say it had nothing to do with school repairs.</p>
<p>Here&#8217;s the challenge I faced.</p>
<p>There were over 10,000 rows of data.  And there was a single column at the end that contained comma-separated tags for each record.  And the most tag-heavy record was furnished with a smidgeon over 200 tags.  My mission was to create a single list of tags, together with their frequencies.</p>
<p>The first step was to get each tag into a separate cell.  Data | Text to Columns allowed me to declare the comma as the separator, and what was a single column became 209 columns of data.  But there wasn&#8217;t an easy way to stack these that I could think of.</p>
<p>So I went for a wee.  And suddenly thought of an ideal solution.</p>
<p>The ADDRESS function brings back the A1-style (or even an R1C1-style, if you choose) cell reference.  So =ADDRESS(2,3) will bring back the cell reference of row 2, column 3, i.e. &#8220;C2&#8243;.</p>
<p>But it brings this back as text.  Which is where the INDIRECT function comes into play.  INDIRECT takes some text and interprets it as a formula.  So =INDIRECT(C2) will give you the contents of C2.</p>
<p>Combine the two, and you have:</p>
<blockquote><p>=INDIRECT(ADDRESS(2,3))</p></blockquote>
<p>This will bring back the contents of cell C2.  But if you make the two arguments of the ADDRESS formula themselves into cell references, you have dynamite.</p>
<p>So I created two columns, one to contain the row references of the tags and one containing their column references.  The <em>rows</em> data contained 209 1s followed by 209 2s, 209 3s etc. until we hit 10,000.  The <em>columns</em> data contained the numbers 1 through 209, repeated 10,000 times.</p>
<p>2,144,967 rows of data (to be precise) were too much for Excel 2007, so I had to break it into three chunks.  A minor inconvenience.</p>
<p>Applying the above formula to each of those row/column combinations brought back every single tag in a list, with zeros where there was no tag.  (I.e. a record with five tags would have those listed followed by 204 zeros.  Not the most efficient mechanism maybe, but it worked.)</p>
<p>The three tag-lists were sorted, the zeros removed and the resulting lists were stacked upon one another.  A simple PivotTable then gave me the frequency count for each tag.  Over 25,000 tags in total (the zeros having been removed), made up of over 6,000 unique values.</p>
<p>One satisfied customer.  And one satisfied analyst.  <span style="font-size: 12.7315px;">Happy days indeed.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2010/07/09/tag-stacking-happy-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel-based site map generator</title>
		<link>http://blog.osirra.com/2010/07/08/excel-based-site-map-generator/</link>
		<comments>http://blog.osirra.com/2010/07/08/excel-based-site-map-generator/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 15:50:04 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Spreadsheets]]></category>
		<category><![CDATA[Tech stuff]]></category>

		<guid isPermaLink="false">http://blog.osirra.com/?p=3526</guid>
		<description><![CDATA[A good six or seven years back, I developed an Excel spreadsheet that took a hierarchical data feed of pages (page name, level in the IA, page type) and generated a visual representation for you on the fly. A crop of the visual is shown below. It used conditional formatting up the ying-yang, with particular [...]]]></description>
			<content:encoded><![CDATA[<p>A good six or seven years back, I developed an Excel spreadsheet that took a hierarchical data feed of pages (page name, level in the IA, page type) and generated a visual representation for you on the fly.  A crop of the visual is shown below.</p>
<p>It used conditional formatting up the ying-yang, with particular complexities around developing the interconnects between the boxes.  While there were some macros to re-hash the incoming data, the visuals were all based on conditional formats which were at the time limited to a maximum of three (plus the default format) per cell.</p>
<p>All in all, it was awesome.  (If I may say so.)  If anyone out there has a use for it, let me know.</p>
<p><a href="http://blog.osirra.com/wp-content/uploads/2010/07/Sitemap.png" ><img class="alignnone size-medium wp-image-3527" title="Sitemap" src="http://blog.osirra.com/wp-content/uploads/2010/07/Sitemap-300x222.png" alt="Sitemap" width="300" height="222" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2010/07/08/excel-based-site-map-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distances as the crow flies: the solution</title>
		<link>http://blog.osirra.com/2010/07/01/distances-as-the-crow-flies-the-solution/</link>
		<comments>http://blog.osirra.com/2010/07/01/distances-as-the-crow-flies-the-solution/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 21:23:50 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Numbers and stuff]]></category>
		<category><![CDATA[Spreadsheets]]></category>

		<guid isPermaLink="false">http://blog.osirra.com/?p=3510</guid>
		<description><![CDATA[Yesterday I posted about joyful Tuesday, a day I spent lost in Excel, data and maps.  And as requested by @lesteph, here&#8217;s the solution I developed.  I&#8217;ve sanitised it, but the principles still stand. The spreadsheet takes six places: Edinburgh, Bristol, Cambridge, London, Cardiff and Halifax.  It shows their latitude and longitude and uses the [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I posted about joyful Tuesday, a day I spent lost in Excel, data and maps.  And as requested by <a href="http://twitter.com/lesteph" title="Twitter: lesteph"  target="_blank">@lesteph</a>, <a href="http://blog.osirra.com/wp-content/uploads/2010/07/Distances.xlsx" title="Distances spreadsheet"  target="_blank">here&#8217;s the solution</a> I developed.  I&#8217;ve sanitised it, but the principles still stand.</p>
<p>The spreadsheet takes six places: Edinburgh, Bristol, Cambridge, London, Cardiff and Halifax.  It shows their latitude and longitude and uses the following formula to calculate the distance in kilometres to one decimal place between each pairing.</p>
<blockquote><p>=ROUNDDOWN(6371.0072*ACOS(COS(RADIANS(90-lat_from))*COS(RADIANS(90-lat_to))+SIN(RADIANS(90-lat_from))*SIN(RADIANS(90-lat_to))*COS(RADIANS(long_from-long_to))),1)</p></blockquote>
<p>lat_from is the latitude of the &#8220;from&#8221; location, and you can guess the other three such references.  The references in the spreadsheet itself are cell references to allow easy copy/paste action.</p>
<p>Conditional formatting hides the lower half of the square, and emphasises those places that are closest together.</p>
<p>I made the schoolboy error of hardcoding the earth&#8217;s radius (6,371.0072km), meaning that the model does not scale to other planets or moons in our solar system.  Apologies.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2010/07/01/distances-as-the-crow-flies-the-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapping on a grand scale: poetry</title>
		<link>http://blog.osirra.com/2010/06/30/mapping-on-a-grand-scale-poetry/</link>
		<comments>http://blog.osirra.com/2010/06/30/mapping-on-a-grand-scale-poetry/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 21:55:23 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Numbers and stuff]]></category>
		<category><![CDATA[Spreadsheets]]></category>

		<guid isPermaLink="false">http://blog.osirra.com/?p=3507</guid>
		<description><![CDATA[I had a riot yesterday.  At work.  I was truly in my element. I was given a task to map the 300+ offices that my client had across the UK.  And from that to identify clusters.  Although they relied on the same underlying data, I treated these two tasks largely in isolation to one another. [...]]]></description>
			<content:encoded><![CDATA[<p>I had a riot yesterday.  At work.  I was truly in my element.</p>
<p>I was given a task to map the 300+ offices that my client had across the UK.  And from that to identify clusters.  Although they relied on the same underlying data, I treated these two tasks largely in isolation to one another.  After all, identifying clusters from a visual map is rather an inexact science.</p>
<p>The mapping was sublime.  I used a Google Spreadsheet to convert postcodes to latitude and longitude coordinates (using the advice I&#8217;d previously documented <a href="http://blog.osirra.com/2009/05/02/google-docs-getting-round-the-importdata-limitation/" title="Tangential Ramblings: Google Docs: getting round the IMPORTDATA limitation"  target="_self">here</a>), used this to generate a KML file (through some fancy Excel formulae) which I could then import into Google Maps to create a visual representation of the locations.  Awesome.</p>
<p>Then on to the distances.  I&#8217;d had a vision the previous evening that I wanted to create one of those triangles that you used to see in the back of road atlases, across which you could trace your finger to figure out the distance from Plymouth to Edinburgh, for example.  So I went about creating one.</p>
<p>I made column headings out of the locations in Excel, transposing the data to duplicate them as row headings, together with their respective latitude and longitude coordinates.  I then used trigonometry (with the earth&#8217;s radius as a constant) to find the distance between each pair of locations (as the crow flies rather than driving distance).  A lovely piece of conditional formatting (if row number is greater than column number) allowed me to hide all the lower half of the triangle—a number format of ;;; hides a cell&#8217;s contents without affecting the value of the cell.</p>
<p>I was lost in Excel and Google Maps for an entire morning.  The subject matter had me gripped.  The quality of the output was top drawer; and the importance of the messages therein was right up there.  I love days like that.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2010/06/30/mapping-on-a-grand-scale-poetry/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Excel is like life</title>
		<link>http://blog.osirra.com/2010/05/31/excel-is-like-life/</link>
		<comments>http://blog.osirra.com/2010/05/31/excel-is-like-life/#comments</comments>
		<pubDate>Mon, 31 May 2010 21:29:04 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Random thoughts]]></category>
		<category><![CDATA[Spreadsheets]]></category>

		<guid isPermaLink="false">http://blog.osirra.com/?p=3476</guid>
		<description><![CDATA[Life is complex.  Problems are complex.  And it&#8217;s rare that an intricate problem can be solved by a simple solution.  Or indeed that a single solution is the only one.  Excel is a good analogy here. It has rows and columns and it was invented to organise data. Yet in its 2007 version, it comes [...]]]></description>
			<content:encoded><![CDATA[<p>Life is complex.  Problems are complex.  And it&#8217;s rare that an intricate problem can be solved by a simple solution.  Or indeed that a single solution is the only one.  Excel is a good analogy here.</p>
<p>It has rows and columns and it was invented to organise data.</p>
<p>Yet in its 2007 version, it comes with eight standard ribbons.  (Further ribbons present themselves in specific situations.)  The <em>Home</em> ribbon alone has 42 separate items within it.  Twenty of these have dropdowns from which further options can be selected.  A very conservative estimate would be that an average of five sub-options are available for each of these.  If the other seven ribbons are similar, then that&#8217;s 976 options, and that doesn&#8217;t account for the plethora of formulae that can be written in each of the cells, and the canvas of colours available.  (As a slight aside, that would allow 16 trillion possible actions across the cells of a single worksheet.)</p>
<p>Admittedly, Excel was not designed to solve a single problem.  But the arsenal of tools available merely highlights the huge variety of ways in which problems can be addressed.  If you give ten people the same problem and ask them to solve it in Excel, each one will address it in a different way, sometimes subtly different, sometimes wildly different.  If you don&#8217;t tell them which tool to use, then your range of solutions will widen further.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2010/05/31/excel-is-like-life/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Killer Sudoku Pro: spreadsheet helper</title>
		<link>http://blog.osirra.com/2010/04/11/killer-sudoku-spreadsheet-helper/</link>
		<comments>http://blog.osirra.com/2010/04/11/killer-sudoku-spreadsheet-helper/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 18:34:29 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Numbers and stuff]]></category>
		<category><![CDATA[Spreadsheets]]></category>

		<guid isPermaLink="false">http://blog.osirra.com/?p=3440</guid>
		<description><![CDATA[My dad called yesterday, leaving a voicemail informing me that he had a technical problem.  I returned the call, expecting to have to solve some form of driver compatibility issue or the like, but instead he gave me the following conundrum. There is a variant of Sudoku called Killer Sudoku, in which areas of the [...]]]></description>
			<content:encoded><![CDATA[<p>My dad called yesterday, leaving a voicemail informing me that he had a technical problem.  I returned the call, expecting to have to solve some form of driver compatibility issue or the like, but instead he gave me the following conundrum.</p>
<blockquote><p>There is a variant of Sudoku called Killer Sudoku, in which areas of the grid, either square, rectangular or some other irregular shape, are caged off, a small number in the corner indicating the value to which the numbers therein must sum.  My dad informed me that there is a further variant (Killer Sudoku Pro) in which these cages are further marked to indicate whether the number in the corner represents the sum of the numbers therein, their product, or their subtraction.  (For subtraction, this is taken as the highest number minus all other numbers.)  There is also a divide operator, saved for the cages two squares in size—this equates to the higher number divided by the lower number.  He asked whether there was a way to understand what options were valid in cages three-squares in size (squares are considered sufficiently basic for the human brain to fathom immediately) for each of the three valid operators.</p></blockquote>
<p>I turned to Excel.  (No shit, Sherlock.)  And <a href="http://blog.osirra.com/wp-content/uploads/2010/04/Killer-sudoku.xls" >here is the result</a>.  It&#8217;s a thing of beauty, if I may say so,  the most poetic moment being when I established that the result of the minus operator could be established through the following formula:</p>
<blockquote><p>(2 * MAX(cells)) &#8211; SUM(cells)</p></blockquote>
<p>Hope you enjoy playing with it as much as I did creating it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2010/04/11/killer-sudoku-spreadsheet-helper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tubewhacking</title>
		<link>http://blog.osirra.com/2010/03/17/tubewhacking/</link>
		<comments>http://blog.osirra.com/2010/03/17/tubewhacking/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 22:53:25 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Random thoughts]]></category>
		<category><![CDATA[Spreadsheets]]></category>

		<guid isPermaLink="false">http://blog.osirra.com/?p=3411</guid>
		<description><![CDATA[Paul Clarke introduced me today to the pastime of Tubewhacking.  Similar to Googlewhacking, it involves finding an English word none of whose letters appears in the name of a Tube station, and for that station to be unique in that quality.  The most famous example I know is St. John&#8217;s Wood, none of the letters [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.twitter.com/paul_clarke" title="Twitter: Paul Clarke"  target="_blank">Paul Clarke</a> introduced me today to the pastime of Tubewhacking.  Similar to Googlewhacking, it involves finding an English word none of whose letters appears in the name of a Tube station, and for that station to be unique in that quality.  The most famous example I know is St. John&#8217;s Wood, none of the letters of the word <em>mackerel</em> appearing in its name, a claim that no other station can make.</p>
<p>I wondered whether any stations were themselves Tubewhacks of other stations.  So I got to work.</p>
<p>Fortunately, the number of columns in Excel has increased recently—I needed 7,616 columns to complete my logic, along with a tidy 11.8Mb.  And below is a summary of the results.</p>
<p>There are 59 stations that have Tubewhacks, although their Tubewhacks come from only 22 unique stations.  Bank is the most common, being the Tubewhack of a whopping (not Wapping) nine stations. Each of Vauxhall and Woodford accounts for seven Tubewhacks.</p>
<p>Below is the full list—station on the left, Tubewhack on the right.</p>
<p>Barbican: Temple<br />
Becontree: Vauxhall<br />
Bermondsey: Vauxhall<br />
Bond Street: Vauxhall<br />
Boston Manor: Chigwell<br />
Brent Cross: Vauxhall<br />
Burnt Oak: Chigwell<br />
Camden Town: Ruislip<br />
Canary Wharf: Temple<br />
Canning Town: Shepherd&#8217;s Bush<br />
Charing Cross: Temple<br />
Chorleywood: Bank<br />
Colliers Wood: Bank<br />
Dagenham Heathway: Ruislip<br />
East Putney: Woodford<br />
Eastcote: Kilburn<br />
Edgware: Pimlico<br />
Elephant &amp; Castle: Woodford<br />
Elm Park: St. John&#8217;s Wood<br />
Farringdon: Temple<br />
Fulham Broadway: Epping<br />
Gants Hill: Woodford<br />
Goldhawk Road: Upney<br />
Green Park: Dollis Hill<br />
Hainault: Woodford<br />
Hampstead: Kilburn<br />
Highgate: Woodford<br />
Holloway Road: Epping<br />
Ickenham: Woodford<br />
Kew Gardens: Pimlico<br />
Knightsbridge: Oval<br />
Leyton: Chiswick Park<br />
Limehouse: Bank<br />
Liverpool Street: Bank<br />
Mill Hill East: Woodford<br />
Mornington Crescent: Vauxhall<br />
Newbury Park: Dollis Hill<br />
Perivale: St. John&#8217;s Wood<br />
Piccadilly Circus: Kenton<br />
Plaistow: Debden<br />
Putney Bridge: Oval<br />
Queensway: Pimlico<br />
Richmond: St. Pauls<br />
Rotherhithe: Bank<br />
Royal Victoria: Debden<br />
Shadwell: Brixton<br />
Shoreditch: Bank<br />
Southfields: Bank<br />
St. James&#8217;s Park: Hillingdon<br />
Tooting Bec: Vauxhall<br />
Tower Hill: Bank<br />
Upminster Bridge: Oval<br />
Upton Park: Chigwell<br />
Warren Street: Pimlico<br />
West Brompton: Vauxhall<br />
West Finchley: Moor Park<br />
West Ham: Kilburn<br />
West Hampstead: Kilburn<br />
West Ruislip: Bank</p>
<p>Liverpool Street and Bank form the only pairing in the above list that are one stop away from one another.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2010/03/17/tubewhacking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Formatted hashtags</title>
		<link>http://blog.osirra.com/2009/07/11/formatted-hashtags/</link>
		<comments>http://blog.osirra.com/2009/07/11/formatted-hashtags/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 20:51:56 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Spreadsheets]]></category>
		<category><![CDATA[Tech stuff]]></category>

		<guid isPermaLink="false">http://blog.osirra.com/?p=3167</guid>
		<description><![CDATA[Paul Clarke speculates here about the usefulness of Twitter, with a specific focus on whether its penetration can be used to local effect: in reporting weather conditions or traffic disruption, for example. He cites a couple of examples of hashtags (#uksnow, #uktraffic), both of which require(d) a specific syntax following the hashtag.  For example, #uktraffic [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://honestlyreal.wordpress.com/2009/07/10/twitter-and-usefulness/" title="Honestly Real: Twitter and usefulness"  target="_blank">Paul Clarke speculates here</a> about the usefulness of Twitter, with a specific focus on whether its penetration can be used to local effect: in reporting weather conditions or traffic disruption, for example.</p>
<p>He cites a couple of examples of hashtags (<a href="http://twitter.com/#search?q=%23uksnow" title="Twitter: #uksnow"  target="_blank">#uksnow</a>, <a href="http://twitter.com/#search?q=%23uksnow" title="Twitter: #uktraffic"  target="_blank">#uktraffic</a>), both of which require(d) a specific syntax following the hashtag.  For example, #uktraffic needs to of the form:</p>
<blockquote><p>#uktraffic [road] [where: jcts or place] [direction] [description] RT&amp;seewhathappens</p></blockquote>
<p>By submitting hashtags in that form, it enables them to be parsed for use in other applications, allowing them to be mapped, summarised etc.</p>
<p>With all due respect, I don&#8217;t think the Twitter community is sufficiently diligent to obey what seem like simple instructions such as this.  Yes, they can probably remember the hashtag.  But I&#8217;m sceptical as to whether they can remember the specific items that follow, let alone the order in which they need to appear.</p>
<p>For syntax-dependent hashtags like this to work, there needs to be a mechanism by which they can be registered, complete with the required syntax.  That way, end users can subscribe to such hashtags, allowing their client applications to prompt them with the required syntax once they&#8217;ve entered that hashtag.  Much in the way that Excel prompts you with the arguments needed for a formula that you&#8217;ve started to use.  (Hell, even I never remember the order in which SUMIF arguments should be entered.)</p>
<p>Without this, the hashtags might be used, but the data they generate will be next-to-useless.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2009/07/11/formatted-hashtags/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Monday 6 July, 2009.  Statistically significant</title>
		<link>http://blog.osirra.com/2009/07/01/monday-6-july-2009-statistically-significant/</link>
		<comments>http://blog.osirra.com/2009/07/01/monday-6-july-2009-statistically-significant/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 08:01:14 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Numbers and stuff]]></category>
		<category><![CDATA[Spreadsheets]]></category>

		<guid isPermaLink="false">http://www.osirra.com/?p=3141</guid>
		<description><![CDATA[I&#8217;m sure you&#8217;re all aware of the double significance of Monday.  But I thought I&#8217;d document it for completeness and for the heathens among you. Monday 6 July, 2009 will mark the fifth anniversary of this humble little blog.  And it will also be the 40,000th day since the start of the 20th century. * [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure you&#8217;re all aware of the double significance of Monday.  But I thought I&#8217;d document it for completeness and for the heathens among you.</p>
<p>Monday 6 July, 2009 will mark the fifth anniversary of this humble little blog.  And it will also be the 40,000th day since the start of the 20th century. *</p>
<p>The latter fact is, of course, significant given that Excel calculates time in days using 1 January, 1900 as its point of reference.  (50,000 will occur on 21 November, 2036, in case you want to book a venue in advance.)</p>
<p>Happy fifth birthday for Monday, little blog.  And happy 40,000th birthday, Excel.</p>
<p>* Actually, Tuesday 7 July, 1900 is the 40,000th day since the start of the 20th century.  But Excel purposely included a bug making 1900 a leap year (it wasn&#8217;t; remember?) to comply with other flawed date systems.  So Excel thinks 6 July, 2009 is represented as 40,000, even though it should be 39,999.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2009/07/01/monday-6-july-2009-statistically-significant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re-categorising: I&#8217;m scared</title>
		<link>http://blog.osirra.com/2009/06/05/re-categorising-im-scared/</link>
		<comments>http://blog.osirra.com/2009/06/05/re-categorising-im-scared/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 17:47:33 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Spreadsheets]]></category>

		<guid isPermaLink="false">http://www.osirra.com/?p=3066</guid>
		<description><![CDATA[I&#8217;ve been putting Google Spreadsheets posts in the All things Excel category for want of a better place to put them.  Should I change the name of the category to Spreadsheets?  It seems a bit like the end of an era to get rid of the Excel word.  But times are achangin&#8217;, and I think [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been putting Google Spreadsheets posts in the <em>All things Excel</em> category for want of a better place to put them.  Should I change the name of the category to <em>Spreadsheets</em>?  It seems a bit like the end of an era to get rid of the <em>Excel</em> word.  But times are achangin&#8217;, and I think I need to change with them.  Thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.osirra.com/2009/06/05/re-categorising-im-scared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
