<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Methods In Excel</title>
	<link>http://www.blog.methodsinexcel.co.uk</link>
	<description></description>
	<pubDate>Fri, 25 Jul 2008 14:40:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.1</generator>

	<item>
		<title>Comment on Spreadsheet Design? by AdamV</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/04/21/spreadsheet-design/#comment-49500</link>
		<pubDate>Thu, 19 Jun 2008 21:11:29 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/04/21/spreadsheet-design/#comment-49500</guid>
					<description>Looks like the spammers got here before me...

I like this approach, I tend to do similar things, particularly marking cells to be filled in, and I also tend to choose pastel yellow for this. If there are different users / departments then I use some kind of colour code to indicate who puts what where (a bit like the &quot;office use only&quot; bit at the bottom of a paper form). Cells for data entry I would usually put validation on as well, if a simple ruleset exists.

I also use simple error indicators, such as a ! next to invalid cells and then a check cell at the top which looks for any errors and puts a big red banner across the whole screen screaming &quot;something is wrong! check your data entry&quot; (actually usually wording a bit more helpful than that). I have used conditional formatting to make the shading of entry cells clear once all cells have a valid (and hopefully correct) entry in them. This makes much cleaner printed versions if needed.

I have had couple of cases where one cell's entry makes a big difference to the whole of the rest of a sheet, for example choosing a currency for an expenses claim form. In this case I used conditional formatting to colour the entry cells differently depending on what units they were in to make it really obvious. I changed the labels as well of course to give the right prompt.

Keep up the great blog!</description>
		<content:encoded><![CDATA[<p>Looks like the spammers got here before me&#8230;</p>
<p>I like this approach, I tend to do similar things, particularly marking cells to be filled in, and I also tend to choose pastel yellow for this. If there are different users / departments then I use some kind of colour code to indicate who puts what where (a bit like the &#8220;office use only&#8221; bit at the bottom of a paper form). Cells for data entry I would usually put validation on as well, if a simple ruleset exists.</p>
<p>I also use simple error indicators, such as a ! next to invalid cells and then a check cell at the top which looks for any errors and puts a big red banner across the whole screen screaming &#8220;something is wrong! check your data entry&#8221; (actually usually wording a bit more helpful than that). I have used conditional formatting to make the shading of entry cells clear once all cells have a valid (and hopefully correct) entry in them. This makes much cleaner printed versions if needed.</p>
<p>I have had couple of cases where one cell&#8217;s entry makes a big difference to the whole of the rest of a sheet, for example choosing a currency for an expenses claim form. In this case I used conditional formatting to colour the entry cells differently depending on what units they were in to make it really obvious. I changed the labels as well of course to give the right prompt.</p>
<p>Keep up the great blog!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Standard Deviation of Counts by Ross</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-46478</link>
		<pubDate>Tue, 20 May 2008 11:24:18 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-46478</guid>
					<description>Hi Jelle-Jeroen, 
Thanks, thats fine no worries, 
Cheers
Ross</description>
		<content:encoded><![CDATA[<p>Hi Jelle-Jeroen,<br />
Thanks, thats fine no worries,<br />
Cheers<br />
Ross
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Standard Deviation of Counts by Jelle-Jeroen</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-46466</link>
		<pubDate>Tue, 20 May 2008 08:43:02 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-46466</guid>
					<description>Ross,

I toke the liberty to post it, If you've got any problems with that I will remove it.

Jelle-Jeroen</description>
		<content:encoded><![CDATA[<p>Ross,</p>
<p>I toke the liberty to post it, If you&#8217;ve got any problems with that I will remove it.</p>
<p>Jelle-Jeroen
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Standard Deviation of Counts by Jelle-Jeroen</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-46352</link>
		<pubDate>Mon, 19 May 2008 06:33:25 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-46352</guid>
					<description>Ross,

Do you mind if I write a topic on my own blog about this.....?

Jelle-Jeroen</description>
		<content:encoded><![CDATA[<p>Ross,</p>
<p>Do you mind if I write a topic on my own blog about this&#8230;..?</p>
<p>Jelle-Jeroen
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Standard Deviation of Counts by Jelle-Jeroen</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-46299</link>
		<pubDate>Sun, 18 May 2008 13:53:12 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-46299</guid>
					<description>Ross,

After reading Rob's post I toke his way of thinking and wrote an array function for all the rows.
Its a little bit long but checked out correctly..... ( I think )

{=SQRT((SUM(counts)*SUM(MMULT(values^2,TRANSPOSE(counts)))-((SUM(MMULT(values,TRANSPOSE(counts))))^2))/(SUM(counts)*(SUM(counts)-1)))}</description>
		<content:encoded><![CDATA[<p>Ross,</p>
<p>After reading Rob&#8217;s post I toke his way of thinking and wrote an array function for all the rows.<br />
Its a little bit long but checked out correctly&#8230;.. ( I think )</p>
<p>{=SQRT((SUM(counts)*SUM(MMULT(values^2,TRANSPOSE(counts)))-((SUM(MMULT(values,TRANSPOSE(counts))))^2))/(SUM(counts)*(SUM(counts)-1)))}
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on The best chart in the world Ever! by OpenOffice downloads &#171; Smurf on Spreadsheets</title>
		<link>http://www.blog.methodsinexcel.co.uk/2007/03/05/the-best-chart-in-the-world-ever/#comment-46243</link>
		<pubDate>Sat, 17 May 2008 15:44:50 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2007/03/05/the-best-chart-in-the-world-ever/#comment-46243</guid>
					<description>[...] Sadly the chart looks like a great candidate for Ross&amp;#8217; PPP (Piss Poor Presentation) collection, but what I think its saying is 2.7 million downloads in the last 30 days. It could be saying 600k per day (or 2 days?), but the narrative suggests the 2.7 million. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Sadly the chart looks like a great candidate for Ross&#8217; PPP (Piss Poor Presentation) collection, but what I think its saying is 2.7 million downloads in the last 30 days. It could be saying 600k per day (or 2 days?), but the narrative suggests the 2.7 million. [&#8230;]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on The Evil Midnight Bomber What Bombs at Midnight by Ross</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/05/09/the-evil-midnight-bomber-what-bombs-at-midnight-site/#comment-46106</link>
		<pubDate>Fri, 16 May 2008 09:51:09 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/05/09/the-evil-midnight-bomber-what-bombs-at-midnight-site/#comment-46106</guid>
					<description>&amp;#62;&amp;#62;My motivation is to find out what others doing similar work think. And to avoid doing all the admin misery that is piled sky high on my desk (and floor now the desk is full)

Thats just like me Simon.</description>
		<content:encoded><![CDATA[<p>&gt;&gt;My motivation is to find out what others doing similar work think. And to avoid doing all the admin misery that is piled sky high on my desk (and floor now the desk is full)</p>
<p>Thats just like me Simon.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Microsoft, you just get office developers don&#8217;t you? by Jan Karel Pieterse</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/03/24/microsoft-you-just-get-office-devlopers-dont-you/#comment-45992</link>
		<pubDate>Thu, 15 May 2008 06:45:02 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/03/24/microsoft-you-just-get-office-devlopers-dont-you/#comment-45992</guid>
					<description>Given what we've discussed during the MVP Summit (which I will not disclose!!) I don't worry much about messages like this one. We'll see what comes and I'll use the tools that are available and most fit for the job at hand.

Petr: VBA dead? Doesn't bring money? You're so wrong. I make a living being an Office dev and I am completely overwhelmed with (properly paid) work. VBA/Office experts are a rare breed and highly in demand. Note the most important word in the previous sentence: &quot;experts&quot;. That is what it takes to run a serious business as an Office developer.</description>
		<content:encoded><![CDATA[<p>Given what we&#8217;ve discussed during the MVP Summit (which I will not disclose!!) I don&#8217;t worry much about messages like this one. We&#8217;ll see what comes and I&#8217;ll use the tools that are available and most fit for the job at hand.</p>
<p>Petr: VBA dead? Doesn&#8217;t bring money? You&#8217;re so wrong. I make a living being an Office dev and I am completely overwhelmed with (properly paid) work. VBA/Office experts are a rare breed and highly in demand. Note the most important word in the previous sentence: &#8220;experts&#8221;. That is what it takes to run a serious business as an Office developer.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Standard Deviation of Counts by ross</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-45920</link>
		<pubDate>Wed, 14 May 2008 11:46:45 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/05/04/standard-deviation-of-counts/#comment-45920</guid>
					<description>Hi Rob, 
Thanks I'll take a look at that, it looks like it makes sense. I did try to use a SP, but i got a bit stuck with zeros!
Cheers
Ross</description>
		<content:encoded><![CDATA[<p>Hi Rob,<br />
Thanks I&#8217;ll take a look at that, it looks like it makes sense. I did try to use a SP, but i got a bit stuck with zeros!<br />
Cheers<br />
Ross
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on The Evil Midnight Bomber What Bombs at Midnight by simon</title>
		<link>http://www.blog.methodsinexcel.co.uk/2008/05/09/the-evil-midnight-bomber-what-bombs-at-midnight-site/#comment-45893</link>
		<pubDate>Wed, 14 May 2008 00:41:45 +0000</pubDate>
		<guid>http://www.blog.methodsinexcel.co.uk/2008/05/09/the-evil-midnight-bomber-what-bombs-at-midnight-site/#comment-45893</guid>
					<description>Late or very late.
I often get ideas for posts late on I keep a list of 1 sentence summaries and write them up when I should be doing proper work.
My motivation is to find out what others doing similar work think. And to avoid doing all the admin misery that is piled sky high on my desk (and floor now the desk is full)</description>
		<content:encoded><![CDATA[<p>Late or very late.<br />
I often get ideas for posts late on I keep a list of 1 sentence summaries and write them up when I should be doing proper work.<br />
My motivation is to find out what others doing similar work think. And to avoid doing all the admin misery that is piled sky high on my desk (and floor now the desk is full)
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
