<?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>Spreadsheets by Email</title>
	<atom:link href="http://www.spreadsheetsbyemail.biz/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.spreadsheetsbyemail.biz</link>
	<description>Custom spreadsheets built in Microsoft Excel</description>
	<lastBuildDate>Wed, 06 Jul 2011 09:52:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>New website</title>
		<link>http://www.spreadsheetsbyemail.biz/2011/07/06/new-website/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2011/07/06/new-website/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 09:52:58 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=276</guid>
		<description><![CDATA[As part of an internal re-organisation we have decided to give this service a new, snappier name and a funky new website: Try it now at: We hope you like it.]]></description>
			<content:encoded><![CDATA[<p>As part of an internal re-organisation we have decided to give this service a new, snappier name and a funky new website:</p>
<p>Try it now at:</p>
<p><a href="http://www.needaspreadsheet.com"><img class="aligncenter size-medium wp-image-269" title="Need a spreadsheet?" src="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/06/NeedASpreadsheetBanner-300x63.jpg" alt="Need a spreadsheet?" width="300" height="63" /></a></p>
<p>We hope you like it.</p>
<div class="shr-publisher-276"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2011/07/06/new-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EXCEL TIP: The dollar sign ($) in a formula &#8211; Fixing cell references</title>
		<link>http://www.spreadsheetsbyemail.biz/2011/05/27/excel-tip-the-dollar-sign-in-a-formula-fixing-cell-references/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2011/05/27/excel-tip-the-dollar-sign-in-a-formula-fixing-cell-references/#comments</comments>
		<pubDate>Fri, 27 May 2011 17:32:34 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=260</guid>
		<description><![CDATA[From the Not Just Numbers blog: I want to cover something today that I use all of the time but seems to be understood in varying degrees by clients I work with. I am talking about use of the dollar sign ($) in an Excel formula. Relative cell references When you copy and paste an Excel [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-261" title="Dollar signs" src="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2011/05/Dollar-signs-300x214.jpg" alt="Dollar signs" width="300" height="214" /></p>
<p><strong>From the <a href="http://www.notjustnumbers.co.uk/" target="_blank">Not Just Numbers</a> blog:</strong></p>
<p>I want to cover something today that I use all of the time but seems to be understood in varying degrees by clients I work with.</p>
<p>I am talking about use of the dollar sign ($) in an Excel formula.</p>
<p><strong>Relative cell references</strong><br />
When you copy and paste an Excel formula from one cell to another, the cell references change, relative to the new position:</p>
<p><em>EXAMPLE:</em></p>
<p>If we have the very simple formula &#8220;=A1&#8243; in cell B1 it will change as follows when copied and pasted:</p>
<p>Pasted to B2, it becomes &#8220;=A2&#8243;</p>
<p>Pasted to C2, it becomes &#8220;=B2&#8243;</p>
<p>Pasted to A2, it returns an error!</p>
<p>In each case it is changing the reference to refer to the cell one to the left on the same row as the cell that the formula is in, i.e. the same relative position that A1 was to the original formula.</p>
<p>The reason an error is returned when it is pasted into column A, is because there <em>are</em>no columns to the left of column A.</p>
<p>This behaviour is very useful and is what allows a sum to be copied across or down the page and automatically refer to the new column or row that it finds itself in.</p>
<p>But in some situations, you want some or all of the references to remain fixed when they are copied elsewhere.</p>
<p><strong>The dollar sign ($)</strong><br />
This is where the dollar sign is used.</p>
<p><em>EXAMPLE:</em></p>
<p>Take an example where you have a column of Sales values in Pounds Sterling in column A and a formula to convert these into US Dollars in column B. You could enter the actual exchange rate into the formula but it would be more sensible to refer to a cell where the exchange rate is held, so that it can be updated whenever it is needed.</p>
<p><a href="http://2.bp.blogspot.com/-rxLR12Fjrko/TdZMhUJQgoI/AAAAAAAAAA4/DFLrH11SOE4/s1600/Dollarsign1.jpg"><img src="http://2.bp.blogspot.com/-rxLR12Fjrko/TdZMhUJQgoI/AAAAAAAAAA4/DFLrH11SOE4/s400/Dollarsign1.jpg" border="0" alt="" width="400" height="153" /></a></p>
<p>The simple formula for cell B2, would be &#8220;=A2*E1&#8243;, however if you copy this down, then the formula in cell B3, would read &#8220;=A3*E2&#8243; as both references would move down a row as described above.</p>
<p>This is where the dollar sign ($) is used. The dollar sign allows you to fix either the row, the column or both on any cell reference, by preceding the column or row with the dollar sign. In our example if we replace the formula in cell B2 with &#8220;=A2*$E$1&#8243;, then both the &#8220;E&#8221; and the &#8220;1&#8243; will remain fixed when the formula is copied. i.e. in cell B3, the formula will read &#8220;=A3*$E$1&#8243;, still referring to the cell with the exchange rate in it.</p>
<p>In this example we have fixed both the row and the column, but in other situations, you may just want to fix one or the other, for example:</p>
<p><a href="http://1.bp.blogspot.com/-dykAsCViB30/TdZP_7wSehI/AAAAAAAAAA8/k5FL1gpcHh8/s1600/Dollarsign2.jpg"><img src="http://1.bp.blogspot.com/-dykAsCViB30/TdZP_7wSehI/AAAAAAAAAA8/k5FL1gpcHh8/s400/Dollarsign2.jpg" border="0" alt="" width="400" height="136" /></a></p>
<p>Above we have a spreadsheet calculating the times tables where we want to every cell in the white area to be the product of its row and column heading. This is easy using the dollar symbol. In cell B2, the formula without dollars would be &#8220;=A2*B1&#8243;, but for this formula to work when copied to each column, we need it to always look at column A for the first reference and to work for each row, we need to always look at row 1 for the second. Using the dollar sign to do this, it becomes &#8220;=$A2*B$1&#8243;. This can then be copied to every cell in the white area.</p>
<p><strong><em>Quick Tip</em></strong><br />
<em>You can speed up entering the dollar signs by using the function key F4 when editing the formula, if the cursor is on a cell reference in the formula, repeatedly hitting the F4 key, toggles between no dollar signs, both dollar signs, just the row and just the column.</em><br />
<strong><br />
</strong><br />
<strong>If you enjoyed this post, go to the top left corner of the <a href="http://www.notjustnumbers.co.uk/">blog</a>, where you can subscribe for regular updates and your free report. If you wish to help me to provide future posts like this, please consider <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=SGCHKSVRHAK6N">donating</a> using the button in the right hand column.</strong></p>
<div class="shr-publisher-260"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2011/05/27/excel-tip-the-dollar-sign-in-a-formula-fixing-cell-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just for fun &#8211; How I created my Excel Christmas Quiz</title>
		<link>http://www.spreadsheetsbyemail.biz/2011/01/18/just-for-fun-how-i-created-my-excel-christmas-quiz/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2011/01/18/just-for-fun-how-i-created-my-excel-christmas-quiz/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 12:34:58 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=241</guid>
		<description><![CDATA[From the Not Just Numbers blog: Before Christmas you may have seen my Excel Christmas Quiz which you can still download here (although the questions might no longer be appropriate for the season, the prize is still valuable until the end of January). I thought it might be useful in this post to tell you how it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/12/Christmas-Present.png"><img class="alignright size-full wp-image-235" title="Christmas Present" src="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/12/Christmas-Present.png" alt="Christmas Present" width="144" height="144" /></a></p>
<p><strong>From the <a href="http://www.notjustnumbers.co.uk/" target="_blank">Not Just Numbers</a> blog:</strong></p>
<p>Before Christmas you may have seen my Excel Christmas Quiz which you can still download <a href="http://www.notjustnumbers.co.uk/2010/12/excel-christmas-quiz-2010.html">here</a> (although the questions might no longer be appropriate for the season, the prize is still valuable until the end of January).</p>
<p>I thought it might be useful in this post to tell you how it was made.</p>
<p>This post will make more sense if you <a href="http://www.spreadsheetsbyemail.biz/ChristmasQuiz2010.xls">download the spreadsheet first</a>.</p>
<p><strong>The Quiz</strong></p>
<p>The quiz element is pretty straight forward. There are 3 hidden columns alongside the spaces for the answers. One column contains the correct answers (column T), another column (column S) contains a nested <a href="http://www.notjustnumbers.co.uk/2010/10/excel-tip-if-statement-made-simple.html">IF statement</a> as follows:</p>
<p>(for the first question &#8211; row 5)  <strong>=IF(R5=&#8221;",&#8221;",IF(R5=T5,&#8221;Ho Ho Ho&#8221;,&#8221;Grinch!&#8221;))</strong></p>
<p>which returns a blank cell if no answer is entered, returns &#8220;Ho Ho Ho&#8221; if the answer entered is equal to the correct answer and &#8220;Grinch&#8221; if not. Cheesy I know, but it was Christmas.</p>
<p>The third column (column H) contains another IF statement:</p>
<p>(again for the same row) <strong>=IF(R5=T5,1,0)</strong></p>
<p>which returns a 1 if the answer is correct or a zero if not.</p>
<p>This third column is summed for the score as follows:</p>
<p><strong>=SUM($H$5:$H$14)&amp;&#8221;/10&#8243;</strong></p>
<p>This takes the sum of these 1s and 0s and adds the text &#8220;/10&#8243; after it. See my post on<a href="http://www.notjustnumbers.co.uk/2010/06/excel-tip-manipulating-text-in.html">manipulating text in Excel</a> for more detail on this.</p>
<p><strong>The revealing of the Christmas picture</strong><br />
<strong><br />
</strong><br />
This was done using the background facility in Excel and a series of IF statements combined with offset formulae and conditional formatting.</p>
<p>I first set the background image to be the Christmas picture using Format -&gt; Sheet -&gt; Background. As this tiles the picture in the background and gives no facility to re-size I needed to use some trial and error to get the size I wanted and had to have the image in the top-left to ensure it stayed in the right place.</p>
<p>I then needed to choose a background colour for the rest of the sheet so that the picture was not repeated across the whole sheet &#8211; for this I simply formatted the cells with that fill colour (in my case green). It is easier to apply this for the whole sheet and then remove the colour from the cells that hide the picture.</p>
<p>I then created on a separate sheet (hidden) a grid of the same number of cells as the picture, containing random whole numbers between 0 and 9 in each of the cells, representing the 10 questions. This will be used to determine which cells are revealed for each question. I actually used the random number generator to create this grid using the following formula:</p>
<p><strong>=ROUNDDOWN(RAND()*10,0)</strong><br />
<strong><br />
</strong><br />
RAND() returns a random number between 0 and 1, multiplying this by 10 therefore returns a random number between 0 and 10 (but not necessarily a whole number). The ROUNDDOWN formula rounds down to the number of decimal places specified in the second argument (in this case 0). The result of the whole formula, therefore, is a random whole number between 0 and 9.</p>
<p>Because the RAND formula recalculates on each calculation the spreadsheet does, I needed to fix these numbers as I wanted the cells revealed by a question to stay revealed, not be re-scattered across different cells every time an answer is entered. The simplest way to do this was to copy the grid of numbers and re-paste it over the top of itself using &#8216;paste as values&#8217;.</p>
<p>Going back to the main sheet I entered the following formula in the top-left cell of the picture (A1):</p>
<p><strong>=IF(SUM($H$5:$H$14)=10,&#8221;",IF(OFFSET($H$5,Sheet4!A1,0)=1,&#8221;",1))</strong><br />
<strong><br />
</strong><br />
The objective of this formula is to return an empty cell if the corresponding question is correct and a 1 if not. I&#8217;ll explain shortly what we do with this result.<br />
<strong><br />
</strong><br />
The first <a href="http://www.notjustnumbers.co.uk/2010/10/excel-tip-if-statement-made-simple.html">IF statement</a> returns an empty cell if the sum of the scores is 10, so all cells are empty if all answers are right. If the total score does not equal 10, the second <a href="http://www.notjustnumbers.co.uk/2010/10/excel-tip-if-statement-made-simple.html">IF statement</a> checks whether the score of the relevant question is correct (i.e. 1 in column H) and an empty cell if not. The <a href="http://www.notjustnumbers.co.uk/2010/02/using-offset-function-in-microsoft.html">offset function</a> is used to determine which question to look at. $H$5 is the first score (with dollars to fix this reference) but the row number is offset by the number in the corresponding cell in our number grid (on Sheet4). The zero is the number of columns to offset. For example, if the number in the grid is zero, the offset formula will look at cell H5, i.e. the score of question 1, if it is 9 it will look at cell H14 (5+9) and return the score for question 10.</p>
<p>This formula is copied to all cells on the picture, leaving the dollars off the Sheet4 reference so that in cell A2, it looks at cell A2 on Sheet4, etc.</p>
<p>We now have empty cells corresponding to correct questions, which is right as we want an empty cell with no fill as the picture is revealed. For incorrect, or not yet completed, answers we have a 1 in the cell. We use conditional formatting to use this result to hide these cells.</p>
<p>First of all, set the font colour of these cells to the background colour of the rest of the sheet (green in this case). We now have a green &#8220;1&#8243; in front of the picture for incorrect answers.</p>
<p>We use conditional formatting to choose a green background for these cells if they contain the number 1.</p>
<p>In Excel 2003, select Format -&gt; Conditional Formatting, in Excel 2007/2010 you need to add a new rule. In either case select &lt; <strong>Cell value is</strong> &gt; &lt; <strong>equal to</strong> &gt; &lt; <strong>1</strong> &gt; for the three boxes and click the format button to choose the green fill.</p>
<p>Now the picture has a green background until correct answers are entered to gradually reveal the picture.</p>
<p><strong>Revealing the prize</strong><br />
<strong><br />
</strong><br />
The final step is a much simpler version of revealing the picture, that is only dependent on the total score.</p>
<p>The background of the prize box is set to yellow using the normal cell format and the font colour to whatever you want it to be when it is revealed.</p>
<p>We then use conditional formatting again but enter the following for all of the cells in the prize area:</p>
<p>&lt; <strong>Formula is </strong>&gt; &lt; <strong>=$R$16&lt;&gt;&#8221;10/10&#8243; </strong>&gt;</p>
<p>setting the format to a yellow font colour. This switches the font colour to yellow if the score in cell R16 does not equal 10/10, making the text invisible on the yellow background.</p>
<p><strong>Protecting it all</strong></p>
<p>Finally, we need to protect the sheet so that none of this information can be seen or edited.</p>
<p>Cells are formatted as &#8220;Locked&#8221; by default, so we need to select the cells that the user needs to be able to use (just the 10 answer boxes), select Format-&gt;Cells and on the Protection tab, un-tick the &#8220;Locked&#8221; box.</p>
<p>We then protect the sheet as follows:</p>
<p>Select Tools-&gt;Protection-&gt;Protect Sheet</p>
<p>Enter a password so that users cannot switch off the protection and un-tick all boxes in the list except the one that says &#8220;Select unlocked cells&#8221;. Once you have clicked OK, the user cannot even click in any of the cells apart from the 10 answer boxes.</p>
<p>There you have it! Your very own Excel Quiz.</p>
<div class="shr-publisher-241"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2011/01/18/just-for-fun-how-i-created-my-excel-christmas-quiz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Christmas Quiz 2010</title>
		<link>http://www.spreadsheetsbyemail.biz/2010/12/22/excel-christmas-quiz-2010/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2010/12/22/excel-christmas-quiz-2010/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 16:06:41 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=233</guid>
		<description><![CDATA[A Merry Christmas to all of our clients. Last year I created a Christmas Quiz in Excel just for fun (last year&#8217;s quiz),  but it proved very popular so I thought I should do it again this year. This time though I thought it might be nice to add a little Christmas present if you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spreadsheetsbyemail.biz/ChristmasQuiz2010.xls"><img class="alignright size-full wp-image-235" title="Christmas Present" src="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/12/Christmas-Present.png" alt="Christmas Present" width="144" height="144" /></a></p>
<p>A Merry Christmas to all of our clients.</p>
<p>Last year I created a Christmas Quiz in Excel just for fun (<a href="http://www.notjustnumbers.co.uk/2009/12/fun-christmas-quiz-in-excel.html" target="_blank">last year&#8217;s quiz</a>),  but it proved very popular so I thought I should do it again this year.</p>
<p>This time though I thought it might be nice to add a little Christmas present if you get them all right. I won&#8217;t tell you what it is and spoil the surprise, but you will find it very useful if you need a spreadsheet. Even if you don&#8217;t, I hope you have a bit of fun with the quiz.</p>
<p>Maybe you could even do it without Google!</p>
<p><a href="http://www.spreadsheetsbyemail.biz/ChristmasQuiz2010.xls" target="_blank"><strong>Download your copy of the Christmas Quiz</strong></a></p>
<p>Good Luck and have a great Christmas break and a fantastic 2011!</p>
<div class="shr-publisher-233"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2010/12/22/excel-christmas-quiz-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Off-the-shelf or bespoke software &#8211; How to decide</title>
		<link>http://www.spreadsheetsbyemail.biz/2010/11/18/off-the-shelf-or-bespoke-software-how-to-decide/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2010/11/18/off-the-shelf-or-bespoke-software-how-to-decide/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 13:35:36 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=220</guid>
		<description><![CDATA[From the Not Just Numbers blog: I have been approached by a client to build a project planning spreadsheet, but given the client&#8217;s very general requirements, I have pointed him towards an off-the-shelf, on-line solution that will be a much more cost-effective solution for him. This got me to thinking about that choice. My previous [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a rel="attachment wp-att-222" href="http://www.spreadsheetsbyemail.biz/2010/11/18/off-the-shelf-or-bespoke-software-how-to-decide/cointossanimated-2/"><img class="alignright size-full wp-image-222" title="CoinTossAnimated" src="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/11/CoinTossAnimated.gif" alt="" width="92" height="105" /></a>From the <a href="http://www.notjustnumbers.co.uk" target="_blank">Not Just Numbers</a> blog:</strong></p>
<p>I have been approached by a client to build a project planning spreadsheet, but given the client&#8217;s very general requirements, I have pointed him towards an off-the-shelf, on-line solution that will be a much more cost-effective solution for him. This got me to thinking about that choice.</p>
<p>My previous post on <a href="http://www.notjustnumbers.co.uk/2010/11/spreadsheet-or-database-how-to-decide.html">how to decide between a spreadsheet or a database</a> made the assumption that you had already decided that you needed a custom solution, but how do you come to that conclusion.</p>
<p>I will take a similar approach to that previous post and list what I think are the key points to consider:</p>
<p><strong>1. How unique is what I need?</strong><br />
Is your requirement something very specific to you or your business or is it quite generic, even if that is just in your industry? The more generic the requirement, the more likely an excellent solution already exists.</p>
<p><strong>2. Do I have some very exacting requirements about how I want the need met?</strong><br />
In a similar vein to point 1, even if you have what appears to be a generic requirement, you may want it implemented in a particular way. We recently developed an on-line time-sheet system for a client because for their business had some very specific ways they wanted to keep time-sheets.</p>
<p><strong>3. Is it possible, or practical, to change the process?</strong><br />
To get the best from an off-the-shelf product, it is better if you can adapt your processes to suit the way the software works. In many cases, this leads to an improvement in the process anyway &#8211; but sometimes the current process is key to the business, or a change would cause too much disruption. A bespoke solution can be tailored to the process.</p>
<p><strong>4. How complex is my requirement?</strong><br />
This one really comes down to comparative cost and development time. For a simple requirement, a bespoke solution can often cost little more than an off-the shelf package and be implemented as quickly, but it can be tailored to your exact needs. The more complex the requirement, the more incentive there is to tap into (possibly) years of development that have already gone into an off-the-shelf package where the development costs are shared with the other users, than to pay to re-invent the wheel yourself.</p>
<p><strong>5. What is my budget?</strong><br />
As ever, this is always going to be a factor. In most cases the off-the-shelf package will be the cheapest option, however do bear in mind any costs of tailoring your processes to fit (see point 3).</p>
<p><strong>6. Ultimately, does the package I want exist?</strong><br />
If your answers to the other questions suggest that an off-the-shelf package would be best for you. This is only of any use if an off-the-shelf package exists. Alternatively, you may have just identified a business opportunity!</p>
<p>If you do feel that you need a bespoke solution (either <a href="http://www.spreadsheetsbyemail.biz/">spreadsheet</a> or <a href="http://www.spreadsheetsbyemail.biz/on-line-tools/">on-line database</a>), then visit us at <a href="http://www.spreadsheetsbyemail.biz" target="_blank">Spreadsheets by Email</a> where we can provide you with a cost-effective, fixed price solution.</p>
<div class="shr-publisher-220"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2010/11/18/off-the-shelf-or-bespoke-software-how-to-decide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spreadsheet or database &#8211; How to decide</title>
		<link>http://www.spreadsheetsbyemail.biz/2010/11/03/spreadsheet-or-database-how-to-decide/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2010/11/03/spreadsheet-or-database-how-to-decide/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 15:33:37 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=213</guid>
		<description><![CDATA[From the Not Just Numbers blog: There are those who will tell you that every application should be a database and that spreadsheets should never be used, whereas others will look to address every problem with a spreadsheet. How do you decide what is best for your specific requirement? As with most of these things, [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-214" href="http://www.spreadsheetsbyemail.biz/2010/11/03/spreadsheet-or-database-how-to-decide/spreadsheet-vs-database/"><img class="alignright size-full wp-image-214" title="Spreadsheet vs Database" src="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/11/Spreadsheet-vs-Database.gif" alt="Spreadsheet vs Database" width="128" height="190" /></a><strong>From the <a href="http://www.notjustnumbers.co.uk" target="_blank">Not Just Numbers</a> blog:</strong></p>
<p>There are those who will tell you that every application should be a database and that spreadsheets should never be used, whereas others will look to address every problem with a spreadsheet. How do you decide what is best for your specific requirement?</p>
<p>As with most of these things, neither is right for every application. In this post I want to give you my thoughts about when I believe you should favour either &#8211; I would appreciate your views in the comment too, whether agreeing or opposing.</p>
<p>I thought the best way to address this would be as a series of questions about your specific requirement and some comments about how your answer might influence the decision.</p>
<p>I have assumed in the questions below that the decision has already been reached that a bespoke solution is required.</p>
<p><strong>1. Does my application require access (and particularly editing) by multiple users at the same time?</strong><br />
<strong></strong>Although there are ways to achieve this with a spreadsheet (for example using Sharepoint with Excel, or if you do not require the functionality of Excel, Google spreadsheets are great at this), a yes to this question should certainly push you down the database route. In most cases, if there is only one user then a spreadsheet is the most cost-effective option.</p>
<p><strong>2. Will large amounts of data need to be held in the application?</strong><br />
If the data really does need to be held in the application, a yes would favour a database, however if the data is already held elsewhere (for example your accounting or ERP system), Excel is an excellent tool for reporting from the data.</p>
<p><strong>3. What interaction (if any) does the application require with other applications?</strong><br />
As stated in point 2, Excel can be an excellent reporting tool from other applications where the data flow is one way (i.e. into Excel). If your application needs two-way communication with other applications, or if it needs to trigger real-time events, such as reminder emails, then a database would normally be more appropriate.</p>
<p><strong>4. Who will use it?</strong><br />
Many users are comfortable with Excel and will find it easy to use, however it is much harder to make &#8220;idiot-proof&#8221;. If you really want to lock it down in such a way that it can&#8217;t be edited by the user at all, then a database may be more appropriate. With a reasonably competent Excel user, the ability to edit and enhance might be a positive for the spreadsheet solution.</p>
<p><strong>5. Where are the users?</strong><br />
If everyone who might use the application is on the same network (and point 1 is not a major issue), then a spreadsheet held on the server might be what is needed. Alternatively, where the application performs a task (rather than holds data), multiple copies can be used &#8211; although this may need to be controlled. An on-line database can be great way to deal with multiple users who need to access the same data from anywhere as all they need is a web browser.</p>
<p><strong>6. What is my budget?</strong><br />
<strong></strong>In the real world, this one can&#8217;t be ignored. Assuming that either approach could address your requirements, it will almost certainly be cheaper to pay a third party to have a spreadsheet built &#8211; in many cases you can do it yourself.</p>
<p>I hope this helps. If you need any help in deciding, please feel free to drop me an <a href="mailto:glen@feechan.co.uk">email</a>. At <a href="http://www.spreadsheetsbyemail.biz/">Spreadsheets by Email</a> we can help you with both <a href="http://www.spreadsheetsbyemail.biz/">spreadsheet solutions</a> and <a href="http://www.spreadsheetsbyemail.biz/on-line-tools/">online databases</a>.<br />
<strong></strong><strong><br />
</strong></p>
<div class="shr-publisher-213"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2010/11/03/spreadsheet-or-database-how-to-decide/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>EXCEL TIP: The IF Statement made simple</title>
		<link>http://www.spreadsheetsbyemail.biz/2010/10/21/excel-tip-the-if-statement-made-simple/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2010/10/21/excel-tip-the-if-statement-made-simple/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 21:04:18 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=206</guid>
		<description><![CDATA[From the Not Just Numbers blog: One of the functions I use most often in Excel is the IF statement. This function is very powerful and to many can seem very complicated, whereas to others it is deceptively simple and its power can be underestimated. The basic IF statement The basic format of an IF statement is [...]]]></description>
			<content:encoded><![CDATA[<p><strong>From the <a href="http://www.notjustnumbers.co.uk/" target="_blank">Not Just Numbers</a> blog:</strong><br />
<img class="alignright size-full wp-image-207" title="CoinTossAnimated" src="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/10/CoinTossAnimated.gif" alt="Animated Coin Toss" width="92" height="105" /></p>
<p>One of the functions I use most often in Excel is the <strong>IF</strong> statement. This function is very powerful and to many can seem very complicated, whereas to others it is deceptively simple and its power can be underestimated.</p>
<p><strong>The basic IF statement</strong><br />
<strong><br />
</strong><br />
The basic format of an IF statement is as follows:</p>
<p><strong>=IF(if this is true,return this,otherwise return this)</strong><br />
<strong><br />
</strong><br />
Example:</p>
<p>=IF(A2&gt;3,&#8221;Greater than three&#8221;,&#8221;Not greater than three&#8221;)</p>
<p>returns the text <em>Greater than three</em> if the number in cell A2 is greater than 3 and <em>Not greater than three</em>, if it is not.</p>
<p>The first argument can be any expression that can be true or false, usually using =,&gt;,&lt;,&lt;=,&gt;= or &lt;&gt;.</p>
<p>Other Examples:</p>
<p>=IF(A3=&#8221;X&#8221;,&#8221;Yes&#8221;,&#8221;No&#8221;)<br />
=IF(SUM(A2:A10)&gt;B2,&#8221;Over Budget&#8221;,&#8221;Within Budget&#8221;)<br />
=IF(A2&lt;0,0,A2)</p>
<p><strong>Combining conditions</strong><br />
<strong><br />
</strong><br />
All of the above examples include only one condition, but it is possible to combine numerous conditions using the AND and OR functions.</p>
<p>Theses functions are formatted as follows:</p>
<p>=AND(Condition 1, Condition 2, Condition 3&#8230;..Condition n)<br />
=OR(Condition 1, Condition 2, Condition 3&#8230;..Condition n)</p>
<p>The AND function returns TRUE if ALL of the individual conditions are true.</p>
<p>The OR function returns TRUE if ANY of the individual conditions are true.</p>
<p>They can be used in IF statements as follows:</p>
<p>=IF(AND(A2&lt;=200,A2&gt;=100),&#8221;In Range&#8221;,&#8221;Out if Range&#8221;)<br />
=IF(OR(A2=&#8221;X&#8221;,B2=&#8221;X&#8221;,C2=&#8221;X&#8221;),&#8221;Contains X&#8221;,&#8221;Doesn&#8217;t Contain X&#8221;)</p>
<p><strong>More complex decisions (Nested IF Statements)</strong><br />
<strong><br />
</strong><br />
If the decision required is more complicated, you can have IF statements within IF statements &#8211; this is called <em>Nesting</em>.</p>
<p>Example:</p>
<p>=IF(A2=0,&#8221;NIL&#8221;,IF(A2&gt;0,&#8221;POSITIVE&#8221;,&#8221;NEGATIVE&#8221;))</p>
<p>If A2 is 0, this will return the word <em>NIL</em>, however if A is not 0 the third argument is another IF statement that will return the word <em>POSITIVE</em> if A2 is greater than zero, otherwise it will return <em>NEGATIVE</em>.</p>
<p>And that is the IF statement. Don&#8217;t forget you can still take the easy route and get your spreadsheet built for you at <a href="http://www.blogger.com/www.spreadsheetsbyemail.biz">Spreadsheets by Email</a>.<strong><br />
</strong></p>
<div class="shr-publisher-206"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2010/10/21/excel-tip-the-if-statement-made-simple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Introduction to working with dates in Excel</title>
		<link>http://www.spreadsheetsbyemail.biz/2010/10/05/an-introduction-to-working-with-dates-in-excel/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2010/10/05/an-introduction-to-working-with-dates-in-excel/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 16:17:58 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=199</guid>
		<description><![CDATA[From the Not Just Numbers blog: I find that many clients are quite comfortable working with financial figures in Excel, but don&#8217;t know how useful Excel can be when manipulating dates. I thought that it might be useful to provide a short post on some of the most useful functions for handling dates in Excel. One [...]]]></description>
			<content:encoded><![CDATA[<p><strong>From the <a href="http://www.notjustnumbers.co.uk/" target="_blank">Not Just Numbers</a> blog:</strong></p>
<p><strong><a href="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/10/Dates-in-Excel.jpg"><img class="size-medium wp-image-200 alignright" title="Dates in Excel" src="http://www.spreadsheetsbyemail.biz/wp-content/uploads/2010/10/Dates-in-Excel-300x214.jpg" alt="Dates in Excel" width="300" height="214" /></a></strong></p>
<p>I find that many clients are quite comfortable working with financial figures in Excel, but don&#8217;t know how useful Excel can be when manipulating dates.</p>
<p>I thought that it might be useful to provide a short post on some of the most useful functions for handling dates in Excel.</p>
<p>One of the simplest functions is the <strong>TODAY</strong>function, which can be used on its own or within another formula to return today&#8217;s date. It has no arguments and is essentially a variable (Excel still requires empty brackets after it so that it has the same format as other functions)..</p>
<p>Examples:</p>
<p>=TODAY()          will display today&#8217;s date in the cell<br />
=IF(A1&lt;TODAY(),&#8221;Overdue&#8221;,&#8221;Not Yet Due&#8221;)      returns <em>Overdue </em>if the due date in cell A1 is earlier than today, otherwise it returns <em>Not yet due</em><br />
<em><br />
</em><br />
I covered <strong>YEAR</strong>, <strong>MONTH</strong> and <strong>DAY</strong> in an <a href="http://www.notjustnumbers.co.uk/2009/03/excel-tip-reporting-by-year-or-month.html">earlier post</a>. These allow you to return the year, month or day respectively (as a number).</p>
<p>Examples:</p>
<p>Where cell A1 contains the date 5th October 2010,</p>
<p>=YEAR(A1)   returns 2010<br />
=MONTH(A1)   returns 10<br />
=DAY(A1)    returns 5</p>
<p><strong>WEEKDAY</strong> allows you to identify the day of the week (as a number) of any date. It has two arguments, the first being the date you wish to use and the second (optional) argument being the number 1,2 or 3 depending on how you want to number your days.</p>
<p>1:  Sunday=1 through to Saturday=7<br />
2:  Monday=1 through to Sunday=7<br />
3:  Monday=0 through to Sunday=6</p>
<p>If this argument is not entered then it defaults to setting 1.</p>
<p>Examples:</p>
<p>Where cell A1 contains 5th October 2010 again (a Tuesday),</p>
<p>=WEEKDAY(A1)   returns 3<br />
=WEEKDAY(A1,1)   returns 3<br />
=WEEKDAY(A1,2)   returns 2<br />
=WEEKDAY(A1,3)   returns 1</p>
<p>I hope this has made you feel a little more comfortable when working with dates in Excel.</p>
<p>Don&#8217;t forget if you want to take the even easier route, we can build your spreadsheet for you at <a href="http://www.spreadsheetsbyemail.biz/">Spreadsheets by Email</a>.</p>
<div class="shr-publisher-199"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2010/10/05/an-introduction-to-working-with-dates-in-excel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 5 Tips to make Excel Spreadsheets work for you</title>
		<link>http://www.spreadsheetsbyemail.biz/2010/08/23/top-5-tips-to-make-excel-spreadsheets-work-for-you/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2010/08/23/top-5-tips-to-make-excel-spreadsheets-work-for-you/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 15:12:02 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=181</guid>
		<description><![CDATA[From the Not Just Numbers blog: I thought I would share with you an article I was kindly asked to write for Malcolm Gallagher&#8217;s Achiever Newsletter. It&#8217;s a nice summary of what I think are the top 5 most useful things to learn to get the most out of Excel. I&#8217;d also love to hear any [...]]]></description>
			<content:encoded><![CDATA[<p><strong>From the <a href="http://www.notjustnumbers.co.uk" target="_blank">Not Just Numbers</a> blog:</strong></p>
<p><em>I</em><em> thought I would share with you an article I was kindly asked to write for <a href="http://bizvision.co.uk/">Malcolm Gallagher&#8217;s Achiever Newsletter</a>. It&#8217;s a nice summary of what I think are the top 5 most useful things to learn to get the most out of Excel. I&#8217;d also love to hear any you feel I have missed (please use the comments below).</em></p>
<p><em><span style="font-style: normal;"><em>Here is the article:</em></span></em></p>
<p><strong>Top 5 Tips to make Excel Spreadsheets work for you</strong></p>
<p>You probably already use Excel in your business to some extent, but very few businesses even scratch the surface of what it can do for them. I build spreadsheets for businesses throughout the world and below I will show you the top 5 things you should know to really start making Excel work for your business:</p>
<p><strong>1. Learn Pivot Tables</strong> &#8211; The number one spot has to go to learning how to create a Pivot Table. A pivot table allows you to analyse any data you have, whether you have keyed it in or pulled it from a database such as your accounting software, in seconds. Master these and you will amaze yourself with how you can master your data. There is not enough space here to show you how to do this, but here is a <a href="http://www.pivot-tables.biz/FreeVideo.htm">FREE VIDEO</a> that will take you through it step-by-step.</p>
<p><strong>2. Find the Insert Function (fx) button</strong> &#8211; This little tip pushed pivot tables close for the number one spot because it allows you to use any function Excel has, without knowing it first. All you need to do is click the little fx button to the left of the formula bar and you can browse all of Excel’s formulae. It will tell you what the formula does, how to use it and then help you to fill in the arguments step-by-step. To see how it does this, just click on it, or see this <a href="http://www.notjustnumbers.co.uk/2009/03/excel-tip-use-any-excel-function-in.html">blog post</a> for more detail.</p>
<p><strong>3. Use dropdowns for data entry</strong> – The information you get from a spreadsheet is only as good as the data you (or your employees) put in. It is very easy to use Excel’s Data Validation to create a drop-down list that only allows you to enter data from that list. I have created a <a href="http://www.notjustnumbers.co.uk/2009/06/excel-tip-dropdown-boxes-in-microsoft.html">blog post</a> that covers how to do this in detail.</p>
<p><strong>4. Learn the VLOOKUP formula</strong> – You can access this via the Insert Function (fx) facility discussed in point 2. VLOOKUP allows you to look up data from a list in a spreadsheet. For example, you could enter a product code and automatically show the description and price from a separate price list. Use the fx button for more detail or watch the <a href="http://www.notjustnumbers.co.uk/2009/04/learn-vlookup-with-this-short-free.html">FREE VIDEO</a> on my blog.</p>
<p><strong>5. Learn how to record a macro</strong> – a macro is a short program attached to a spreadsheet that carries out a particular task. The good news is that you do not need to be a programmer to create one – when you have a repetitive task you can simply ask Excel to record you carrying out the task and create a macro to do it automatically next time. You do this by selecting Tools &gt; Macro &gt; Record New Macro… Again, there is a short <a href="http://www.notjustnumbers.co.uk/2009/06/free-video-record-macro-in-excel.html">FREE VIDEO</a> on my blog.</p>
<p>Hopefully these tips help you to tap into how Excel can help your business, just question whenever you are manually manipulating data whether it can be done in Excel – it almost certainly can.</p>
<p><em><strong>For those of you who don’t have the time, or the inclination, to build the spreadsheet you need, why not let my team and I do it for you at </strong></em><a href="http://www.spreadsheetsbyemail.biz/"><em><strong>Spreadsheets by Email</strong></em></a><em><strong>?</strong></em></p>
<div class="shr-publisher-181"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2010/08/23/top-5-tips-to-make-excel-spreadsheets-work-for-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ease your World Cup woes and finish June on a positive note</title>
		<link>http://www.spreadsheetsbyemail.biz/2010/06/28/ease-your-world-cup-woes-and-finish-june-on-a-positive-note/</link>
		<comments>http://www.spreadsheetsbyemail.biz/2010/06/28/ease-your-world-cup-woes-and-finish-june-on-a-positive-note/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 14:14:26 +0000</pubDate>
		<dc:creator>Glen Feechan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spreadsheetsbyemail.biz/?p=85</guid>
		<description><![CDATA[As most of our clients are in England and the USA, this weekend was not a good one for us from a football (or soccer if you prefer) perspective. The USA put up a brave fight against Ghana on Saturday night which is more than can be said for England yesterday against Germany. I can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>As most of our clients are in England and the USA, this weekend was not a good one for us from a football (or soccer if you prefer) perspective. The USA put up a brave fight against Ghana on Saturday night which is more than can be said for England yesterday against Germany.</p>
<p>I can&#8217;t take away all of the pain but I will do what I can to ensure that June has not been wasted. To this end, I am offering a <strong>20% discount</strong> on almost all of Feechan Consulting&#8217;s services if paid for before the end of June.</p>
<p>That&#8217;s:</p>
<li><span style="color: #008000;"><strong>20% off any existing quotes you have from </strong></span><a href="http://www.spreadsheetsbyemail.biz"><span style="color: #008000;"><strong>Spreadsheets by Email</strong></span></a> &#8211; Simply click the link in your quote to pay by debit/credit card or PayPal before close of play on 30th June 2010 and the 20% discount will be refunded to your card/PayPal account;</li>
<li><span style="color: #008000;"><strong>20% off all new </strong></span><a href="http://www.spreadsheetsbyemail.biz"><span style="color: #008000;"><strong>Spreadsheets by Email</strong></span></a><span style="color: #008000;"><strong> jobs paid for before the end of the month</strong></span> &#8211; Just submit your requirement at <a href="http://www.spreadsheetsbyemail.biz" target="_blank">http://www.spreadsheetsbyemail.biz</a>, we will provide your fixed price quote and you can claim your discount as above;</li>
<li><strong><span style="color: #008000;">20% off </span></strong><a href="http://www.spreadsheetsbyemail.biz/excel-advice/" target="_blank"><strong><span style="color: #008000;">Excel Advice by Email</span></strong></a><strong><span style="color: #008000;"> annual subscriptions</span></strong> &#8211; Purchase the Annual subscription for £75 before 30th June from <a href="http://www.spreadsheetsbyemail.biz/excel-advice/" target="_blank">http://www.spreadsheetsbyemail.biz/excel-advice/</a> and £15 will be refunded to your card/PayPal Account;</li>
<li><span style="color: #008000;"><strong>20% off the </strong></span><a href="http://www.pivot-tables.biz" target="_blank"><span style="color: #008000;"><strong>Introduction to Pivot Tables On-line Video Training course</strong></span></a> &#8211; Purchase for £19.50 before 30th June from <a href="http://www.pivot-tables.biz" target="_blank">http://www.pivot-tables.biz</a> and £3.90 will be refunded to you card/PayPal Account;</li>
<li><strong><span style="color: #008000;">20% off any consultancy booked and paid for from </span></strong><a href="http://www.feechan.co.uk" target="_blank"><strong><span style="color: #008000;">Feechan Consulting</span></strong></a><strong><span style="color: #008000;"> before 30th June</span></strong> &#8211; Please call on 0845 6439693 or email <a href="mailto:enquiries@feechan.co.uk" target="_blank">enquiries@feechan.co.uk</a> to discuss your requirements.</li>
<p>There&#8217;s still time to ensure that you remember June for something positive.</p>
<div class="shr-publisher-85"></div>]]></content:encoded>
			<wfw:commentRss>http://www.spreadsheetsbyemail.biz/2010/06/28/ease-your-world-cup-woes-and-finish-june-on-a-positive-note/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

