<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<title>OpenOffice Calc Tips </title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/" />
<modified>2006-02-02T15:54:28Z</modified>
<tagline>My contribution to the OOo community - including a blog with daily tips, templates and scripts for downloading, as well as links to other related websites. Enjoy.</tagline>
<id>tag:www.openofficetips.com,2006://1</id>
<generator url="http://www.movabletype.org/" version="3.15">Movable Type</generator>
<copyright>Copyright (c) 2006, Dave</copyright>
<entry>
<title>Basic Functions: COUNTBLANK</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2006/02/basic_functions_16.html" />
<modified>2006-02-02T15:54:28Z</modified>
<issued>2006-02-02T21:17:09Z</issued>
<id>tag:www.openofficetips.com,2006://1.168</id>
<created>2006-02-02T21:17:09Z</created>
<summary type="text/plain">The COUNTBLANK function allows you to total the number of blank or empty cells in a specified range. It is used as show n below in the example. Cells C3, B5 and D5 are empty - so the COUNTBLANK function...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Function tips</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[The <b>COUNTBLANK</b> function allows you to total the number of blank or empty cells in a specified range.
<br><br>
It is used as show n below in the example. Cells <b>C3, B5</b> and <b>D5</b> are empty - so the <b>COUNTBLANK</b> function in <b>D7</b> returns 3.
<br><br>
<center><img alt="countblank.jpg" src="http://www.openofficetips.com/images/countblank.jpg" width="370" height="202" /></center>
<br><br>
You may have a situation where the array is quite large and it is important that each cell has a value. To make it easier to trap blank cells, you can  combine the <b>COUNTBLANK</b> inside an <b>IF</b> function...
<br><br>
 =if(COUNTBLANK(A1:A500)>0,"Blank Cell",average(A1:A500))
<br><br>
Conditional formatting would also help you spot blank cells.]]>

</content>
</entry>
<entry>
<title>Conditional Formatting: Comparing two Lists</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2006/02/conditional_for_5.html" />
<modified>2006-02-01T13:29:41Z</modified>
<issued>2006-02-02T04:48:29Z</issued>
<id>tag:www.openofficetips.com,2006://1.180</id>
<created>2006-02-02T04:48:29Z</created>
<summary type="text/plain">We will use conditional formatting to identify unique entries between two lists. In the sheet below, we have two lists of US States. We would like to identify the list entries that are unique to each list. This technique can...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Using OpenOffice Calc</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[We will use conditional formatting to identify unique entries between two lists.
<br><br>
In the sheet below, we have two lists of US States. We would like to identify the list entries that are unique to each list. This technique can also be applied to two versions of the same list to identify additions/removals.
<br><br>
<center><img alt="listsunique_1.jpg" src="http://www.openofficetips.com/images/listsunique_1.jpg" width="285" height="360" /></center>
<br><br>
Step 1: Select <b>B2:B19</b> and open the <b>Conditional Formatting</b> dialog - below. We have already defined a formatting style that has a darker background. 
<br><br>
In the <b>Conditional Formatting</b> dialog, select the <b>"Formula is"</b>option from the drop down list on the left and enter the formula as displayed below. Choose the predefined style. Exit the dialog.
<br><br>
We apply similar conditonal formatting to the <b>D2:D19</b> array. I will leave that as an exercise for the reader.
<br><br>
<center><img alt="listsunique_2.jpg" src="http://www.openofficetips.com/images/listsunique_2.jpg" width="622" height="295" /></center>
<br><br>
The result after the conditional formatting is applied. Those cells that are shaded dark do not have a matching entry in the other list.
<br><br>
<center><img alt="listsunique_3.jpg" src="http://www.openofficetips.com/images/listsunique_3.jpg" width="296" height="370" /></center>]]>

</content>
</entry>
<entry>
<title>Entering Dates Quickly</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2006/01/entering_dates.html" />
<modified>2006-02-01T04:35:14Z</modified>
<issued>2006-01-31T22:45:27Z</issued>
<id>tag:www.openofficetips.com,2006://1.170</id>
<created>2006-01-31T22:45:27Z</created>
<summary type="text/plain">Here is a useful formula - a long with a variant if you need to enter dates quickly without the delimiters between the days, months and years. In the example below, we enter our shorthand dates in column B. This...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Date &amp; Time</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[Here is a useful formula - a long with a variant if you need to 
enter dates quickly without the delimiters between the days, months and years.
<br><br>
In the example below, we enter our shorthand dates in column B. This column is formatted as <b>Text</b> so that any leading zeroes are not discarded by OOo Calc as it interprets the numbers entered as an integer.
<br><br>
Column C is formatted as a <b>Date</b> and the formula entered in C2 is 
<br><br>
<b>=DATEVALUE(TEXT(CONCATENATE(LEFT(B2;2);"/";MID(B2;3;2);"/";RIGHT(B2;2));"MM/DD/YY"))</b>
<br><br>
Instead of using the <b>CONCATENATE</b> function, you can use the corresponding <b>"&"</b> operator.
<br><br>
=<b>DATEVALUE(TEXT(LEFT(B3;2)&"/"&MID(B3;3;2)&"/"&RIGHT(B3;2);"MM/DD/YY"))</b>
<br><br>
<center><img alt="fastdates.jpg" src="http://www.openofficetips.com/images/fastdates.jpg" width="215" height="182" /></center>]]>

</content>
</entry>
<entry>
<title>Returning a Blank rather than Zero or Error</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2006/01/returning_a_bla.html" />
<modified>2006-01-30T18:52:39Z</modified>
<issued>2006-01-30T21:14:12Z</issued>
<id>tag:www.openofficetips.com,2006://1.167</id>
<created>2006-01-30T21:14:12Z</created>
<summary type="text/plain">In the spreadsheet below, we wish to apply a formula to the values of a particular column - C and display the results in column D. However, the column is &apos;sparse&apos; in that not all cells in the column have...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Function tips</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[In the spreadsheet below, we wish to apply a formula to the values of a particular column - C and display the results in column D. However, the column is 'sparse' in that not all cells in the column have values.
<br><br>
This would be problematic if the formula returns an error when applied to a blank cell. However, by incorporating the <b>ISBLANK</b> function
as shown below, we can gurantee that only non-blank entries are processed.
<br><br>
<center><img alt="ignoreblanks.jpg" src="http://www.openofficetips.com/images/ignoreblanks.jpg" width="487" height="236" /></center>]]>

</content>
</entry>
<entry>
<title>Toolbar Crazy</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2006/01/toolbar_crazy.html" />
<modified>2006-01-28T16:59:23Z</modified>
<issued>2006-01-29T05:25:58Z</issued>
<id>tag:www.openofficetips.com,2006://1.173</id>
<created>2006-01-29T05:25:58Z</created>
<summary type="text/plain">I&apos;m not a big user of the OpenOffice Calc toolbars - but I was curious what it would look like if I activated them all... You can enable/disable a particular toolbar with the View - Toolbars menu option. As you...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Using OpenOffice Calc</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[I'm not a big user of the OpenOffice Calc toolbars - but I was curious what it would look like if I activated them all...
<br><br>
You can enable/disable a particular toolbar with the <b>View - Toolbars</b> menu option. As you can see, it can get quite crowded if you anable them all! In my next installment, I'll introduce you to some of them.
<br><br>
<center><img alt="toolbars.jpg" src="http://www.openofficetips.com/images/toolbars.jpg" width="630" height="524" /></center>]]>

</content>
</entry>
<entry>
<title>Creating a 2-D Lookup Table</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2006/01/creating_a_2d_l.html" />
<modified>2006-01-27T21:06:40Z</modified>
<issued>2006-01-27T20:51:04Z</issued>
<id>tag:www.openofficetips.com,2006://1.166</id>
<created>2006-01-27T20:51:04Z</created>
<summary type="text/plain">By combining INDEX and MATCH functions as shown below, we can create a lookup table whose data can be accessed by specifying the desired row and column values. This is probably best applied where the lookup table is of fixed...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Function tips</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[By combining <b>INDEX</b> and <b>MATCH</b> functions as shown below, we can create a lookup table whose data can be accessed by specifying the desired row and column values.
<br><br>
This is probably best applied where the lookup table is of fixed size - for example - calculation of sales commisions.
<br><br>
For tables that change on a regular basis - thus requiring constant updates of the lookup formulae, the <b>Base</b> application might be a better solution. Now if only I had more time to play around with that...
<br><br>
<center><img alt="2waytable.jpg" src="http://www.openofficetips.com/images/2waytable.jpg" width="469" height="309" /></center>
<br><br>
Here is a similar
<a href="http://www.openofficetips.com/blog/archives/2004/11/basic_functions_4.html">
example</a>]]>

</content>
</entry>
<entry>
<title>A Sudoku Solver!</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2006/01/a_sodoku_solver.html" />
<modified>2006-01-07T02:48:58Z</modified>
<issued>2006-01-07T01:37:01Z</issued>
<id>tag:www.openofficetips.com,2006://1.165</id>
<created>2006-01-07T01:37:01Z</created>
<summary type="text/plain">I have been wanting to do this for the longest time - ever since I became aware of this puzzle last year. So for the past week, I&apos;ve been busy putting together this spreadsheet that will assist you with solving...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Addins</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[I have been wanting to do this for the longest time - ever since I became aware of this puzzle last year. So for the past week, I've been busy putting together this spreadsheet that will assist you with solving a Sudoku puzzle.
<br><br>
Anyway, three days and 900 formulae later, I present... ooo_sodoku.
<br><br>
<center><img alt="sodoku_1.jpg" src="http://www.openofficetips.com/images/sodoku_1.jpg" width="585" height="561" /></center>
<br><br>
This is not a push-button solver. Perhaps the next version will allow that. Basically, for each square in the solution grid, the solver will determine all the possible values - saving you a lot of the drudge work associated with these puzzles.
<br><br>
<center><img alt="sodoku_2.jpg" src="http://www.openofficetips.com/images/sodoku_2.jpg" width="494" height="288" /></center>
<br><br>
As you manually enter the values in the solution grid - top left, the main grid in the center will display one of three colors for each square. Light blue indicates that square already filled in solution grid. Green indicates only one possible value - which has yet to be entered in the solution grid, and brown indicates more than one solution
<br><br>
Your comments, encouragement and feedback are always welcome. As I said earlier, there are 900+ formulae here - so bugs are possible.
<br><br>
Download this utility <a href="http://www.openofficetips.com/downloads/ooo_sodoku.ods">here</a>]]>

</content>
</entry>
<entry>
<title>Data Validation: Drop down lists</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2006/01/data_validation_2.html" />
<modified>2006-01-03T23:08:20Z</modified>
<issued>2006-01-03T22:00:00Z</issued>
<id>tag:www.openofficetips.com,2006://1.164</id>
<created>2006-01-03T22:00:00Z</created>
<summary type="text/plain">For each cell, you can define in advance what type of contents is valid for that cell. This allows you to guide users through data entry in OpenOffice.org Calc by restricting cells to receive specific values and ranges. For selected...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Forms</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[For each cell, you can define in advance what type of contents is valid for that cell. This allows you to guide users through data entry in OpenOffice.org Calc by restricting cells to receive specific values and ranges.
<br><br>
For selected cells, a drop-down list of possible values can be defined. In this tutorial, we show how this is done.
<br><br>
Step1: Select the required cell and open the data validation dialog as shown below.
<br><br>
<center><img alt="ddl_1.jpg" src="http://www.openofficetips.com/images/ddl_1.jpg" width="421" height="342" /></center>
<br><br>
Step2: In the <b>Criteria</b> tab of the <b>validation</b> dialog, the <b>Allow</b> option is itself a drop-down list. We select <b>List</b>.
<br><br>
<center><img alt="ddl_2.jpg" src="http://www.openofficetips.com/images/ddl_2.jpg" width="531" height="397" /></center>
<br><br>
Step3: With <b>List</b> slected, a text box appears which we populate with the list of allowed values for the selected cell(s). We are almost done.
<br><br>
<center><img alt="ddl_3.jpg" src="http://www.openofficetips.com/images/ddl_3.jpg" width="530" height="395" /></center>
<br><br>
After closing the validation dialog, we see that we now must select a value for our cell from the drop-down list we have just created - as shown below. It is also acceptable to leave it blank. 
<br><br>
<center><img alt="ddl_4.jpg" src="http://www.openofficetips.com/images/ddl_4.jpg" width="307" height="391" /></center>
<br><br>
This example can be downloaded <a href="http://www.openofficetips.com/images/dropdownlist.ods">here.</a>]]>

</content>
</entry>
<entry>
<title>Basic Functions: WEEKDAY</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2005/12/basic_functions_17.html" />
<modified>2005-12-30T15:24:35Z</modified>
<issued>2005-12-30T05:18:18Z</issued>
<id>tag:www.openofficetips.com,2005://1.163</id>
<created>2005-12-30T05:18:18Z</created>
<summary type="text/plain">The WEEKDAY function returns an integer that represents the day of the week. The usefulness of this function is in identifying weekends in a series of dates. It is straightforward to use the filldown functionality of Openoffice Calc to create...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Function tips</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[The <b>WEEKDAY</b> function returns an integer that represents the day of the week. The usefulness of this function is in identifying weekends in a series of dates.
<br><br>
It is straightforward to use the filldown functionality of Openoffice Calc to create a column of consecutive dates. We can use the <b>WEEKDAY</b> function to only include the days of the week we want - for example excluding weekends.
<br><br>
The arguments to the function are :
<br><br>
   <b>WEEKDAY(Number; Type)</b>
where
<ul>
<li><b>Number</b>, as a date value, is a decimal for which the weekday is to be returned.
<li><b>Type</b> determines the type of calculation. For Type =1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type =2, the weekdays are counted starting from Monday =1. For Type = 3, the weekdays are counted starting from Monday = 0.
</ul>
In the example below, we use the <b>WEEKDAY</b> function to identify weekend days.
<br><br>
<img alt="weekday_a.jpg" src="http://www.openofficetips.com/images/weekday_a.jpg" width="466" height="200" />
<br><br>
We now use the <b>WEEKDAY</b> function to create a column of dates that exclude the weekends. An alternative (but similar) approach is shown 
<a href="http://www.openofficetips.com/blog/archives/2005/10/creating_a_seri.html">here</a>
<br><br>
<img alt="weekday_b.jpg" src="http://www.openofficetips.com/images/weekday_b.jpg" width="417" height="165" />
<br><br>
The sheet for this example can be downloaded <a href="http://www.openofficetips.com/downloads/weekday.ods">here</a>]]>

</content>
</entry>
<entry>
<title>Splitting an address (US) into separate cells</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2005/12/splitting_an_ad_1.html" />
<modified>2005-12-29T02:30:08Z</modified>
<issued>2005-12-28T18:19:05Z</issued>
<id>tag:www.openofficetips.com,2005://1.162</id>
<created>2005-12-28T18:19:05Z</created>
<summary type="text/plain">The FIND, LEFT, MID, RIGHT and LEN text functions are extremely useful and versatile. We have seen before how to split a person&apos;s name into it&apos;s component parts. Here, we take a single cell containing a US address and split...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Function tips</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[The <b>FIND, LEFT, MID, RIGHT and LEN</b> text functions are extremely useful and versatile. We have seen <a href="http://www.openofficetips.com/blog/archives/2004/09/text_formulas_e.html">
before</a> how to split a person's name into it's component parts.
<br><br>
Here, we take a single cell containing a US address and split it into  it's City, State and Zip components. As long as the string we want to partition is well beahved - as is the case here, splitting should be relatively straightforward with the appropriate combination of text functions.
<br><br>
<center><img alt="cell2columns_1.jpg" src="http://www.openofficetips.com/images/cell2columns_1.jpg" width="472" height="195" /></center>
<br><br>
If, for example, we did not have a comma after the city, we could use the formulae below to extract the city and state components...
<br>
<center>=LEFT(B3;LEN(B3)-9) and 
<br>=MID(B3;LEN(B3)-7;2)</center>
<br><br>
Also, if you want to delete column B, you will first need to preserve the columns you have just created by doing a Paste Special (values only) as shown  <a href="http://www.openofficetips.com/blog/archives/2005/09/paste_special_i_1.html">
here</a>
<br><br>
This worksheet can be downloaded <a href="http://www.openofficetips.com/downloads/cell2columns.ods">here</a>]]>

</content>
</entry>
<entry>
<title>Financial Functions: Creating a Payment Chart</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2005/12/finnancial_func.html" />
<modified>2005-12-27T19:46:40Z</modified>
<issued>2005-12-27T19:04:15Z</issued>
<id>tag:www.openofficetips.com,2005://1.161</id>
<created>2005-12-27T19:04:15Z</created>
<summary type="text/plain">One of the most useful and widely used financial functions available in OpenOffice Calc is PMT. We have discussed this before. It&apos;s use is illustrated below in a simple example showing how to calculate the payments on a loan with...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Finance</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[One of the most useful and widely used financial functions available in OpenOffice Calc is <b>PMT</b>. We have discussed this <a href="http://www.openofficetips.com/blog/archives/2004/10/financial_funct.html">
before</a>.
<br><br>It's use is illustrated below in a simple example showing how to calculate the payments on a loan with fixed interest rate over a specified repayment term.
<br><br>
<center><img alt="pmttable_1.jpg" src="http://www.openofficetips.com/images/pmttable_1.jpg" width="415" height="245" /></center>
<br><br>
The advantage of using a spreadsheet in this manner is that we can plug different parameters into the equation and instantly see how it affects the payment we would need to make.
<br><br>
I will now extend this capability by showing how to create a table of payments for a range of loan amounts and interest rates. We first set up a blank table with the desired loan amounts on the side and the interest rates along the top.
<br><br>
In cell <b>G4</b>, we enter the following formula <br> <center><b>=PMT(G$2/12;$C$6;-$F3;0)</b></center>
<br><br>
<center>
<img alt="pmttable_2.jpg" src="http://www.openofficetips.com/images/pmttable_2.jpg" width="456" height="214" /></center>
<br><br>
We have already used this technique to create a multiplication chart <a href="http://www.openofficetips.com/blog/archives/2005/09/filling_a_multi.html">
here</a>
<br><br>
Using the 'hybrid' addressing mode results in OOo Calc generating the correct results when we autofill the formulae down the first column. More information on the autofill mechanism <a href="http://www.openofficetips.com/blog/archives/2004/09/auto_filling_ce.html">
here.</a>
<br><br>
<center>
<img alt="pmttable_3.jpg" src="http://www.openofficetips.com/images/pmttable_3.jpg" width="456" height="218" /></center>
<br><br>
Likewise, we can autofill the complete table by dragging the first column across with the fill handle as shown below. 
<br><br>
<center>
<img alt="pmttable_4.jpg" src="http://www.openofficetips.com/images/pmttable_4.jpg" width="459" height="223" /></center>
<br><br>
The above example spreadsheet can be downloaded 
<a href="http://www.openofficetips.com/downloads/pmttable.ods">here</a>
(ODF format)]]>

</content>
</entry>
<entry>
<title>Merry Christmas</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2005/12/merry_christmas.html" />
<modified>2005-12-24T19:03:56Z</modified>
<issued>2005-12-24T18:59:35Z</issued>
<id>tag:www.openofficetips.com,2005://1.160</id>
<created>2005-12-24T18:59:35Z</created>
<summary type="text/plain">Here&apos;s wishing you all a Merry Christmas and a prosperous 2006! I have not been updating recently - but I plan to get back into the swing of things as soon as I can after the holidays. Right now, I...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>

<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[Here's wishing you all a Merry Christmas and a prosperous 2006!
<br><br>
I have not been updating recently - but I plan to get back into the swing of things as soon as I can after the holidays.
<br><br>
Right now, I need to head out the store one more time for a rocker chair for my mother in law.
<br><br>
All the best!
<br><br>
Dave]]>

</content>
</entry>
<entry>
<title>Financial Functions : Balloon Loan Example</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2005/12/financial_funct_5.html" />
<modified>2005-12-04T00:10:14Z</modified>
<issued>2005-12-03T23:24:41Z</issued>
<id>tag:www.openofficetips.com,2005://1.159</id>
<created>2005-12-03T23:24:41Z</created>
<summary type="text/plain">A balloon mortgage is a short loan, lasting five to seven years, but the payments are based on a term of 30 years. Balloon loans often have a lower interest rate, and can usually be easier to qualify for than...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Finance</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[A balloon mortgage is a short loan, lasting five to seven years, but the payments are based on a term of 30 years. Balloon loans often have a lower interest rate, and can usually be easier to qualify for than the traditional 30 year mortgage. At the end of your loan term you will need to pay off your outstanding balance. This usually means a refinance, a home sale or a conversion to a traditional mortgage at the current interest rates.
<br><br>
In the spreadsheet below, we use the <b>PMT</b> and <b>FV</b> functions to calculate the payments and final payment for a 7 year 8% balloon loan for $100,000.
<br><br>
<center><img alt="balloon.jpg" src="http://www.openofficetips.com/im/balloon.jpg" width="538" height="328" /></center>
<br><br>
Let us now revise this worksheet with a "what if" scenario - so easy with OOo Calc. let us sweeten the payment each month and see how it impacts our final payment due.
<br><br>
<center><img alt="balloon_2.jpg" src="http://www.openofficetips.com/images/balloon_2.jpg" width="554" height="311" /></center>
<br><br>
The worksheet for this example can be downloaded <a href="http://www.openofficetips.com/downloads/balloon.ods">here</a> (OO0 2.0)]]>

</content>
</entry>
<entry>
<title>Converting time to minutes past midnight</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2005/11/converting_time.html" />
<modified>2005-12-03T23:11:24Z</modified>
<issued>2005-12-01T05:25:26Z</issued>
<id>tag:www.openofficetips.com,2005://1.158</id>
<created>2005-12-01T05:25:26Z</created>
<summary type="text/plain">To convert a time to the number of minutes past midnight, just multiply by 1440 - as shown below. You also need to make sure the result cell is formatted as a number....</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Date &amp; Time</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[To convert a time to the number of minutes past midnight, just multiply by 1440 - as shown below.
<br><br>
You also need to make sure the result cell is formatted as a number.
<br><br>
<center><img alt="time2minutes.jpg" src="http://www.openofficetips.com/images/time2minutes.jpg" width="240" height="235" /></center>]]>

</content>
</entry>
<entry>
<title>Sheet/Cell Protection 101</title>
<link rel="alternate" type="text/html" href="http://www.openofficetips.com/blog/archives/2005/11/sheetcell_prote.html" />
<modified>2005-12-03T23:12:07Z</modified>
<issued>2005-11-23T05:34:35Z</issued>
<id>tag:www.openofficetips.com,2005://1.157</id>
<created>2005-11-23T05:34:35Z</created>
<summary type="text/plain">There are a number of situations where it is desirable to take advantage of the sheet/cell protectection features of OOo Calc. Perhaps you want to prevent the values for a range of cells from being overwritten. Perhaps, you want to...</summary>
<author>
<name>Dave</name>

<email>richhillsoftware@gmail.com</email>
</author>
<dc:subject>Using OpenOffice Calc</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.openofficetips.com/">
<![CDATA[There are a number of situations where it is desirable to take advantage of the sheet/cell protectection features of OOo Calc.
<br><br>
Perhaps you want to prevent the values for a range of cells from being overwritten. Perhaps, you want to protect sensitive financial formulae but share the results.
<br><br>
In order for protection settings to be enabled for a range of cells, the document or sheet must be protected. Protecting a sheet or document prevents the format of the cells from being changed - and because cell protection settings are part of the format, we apply this first before protecting the sheet.
<br><br>
By default, all cells are unprotected and all formulae are visible (below)
<br><br>
<center><img alt="protect_1.jpg" src="http://www.openofficetips.com/images/protect_1.jpg" width="309" height="307" /></center>
<br><br>
With the desired cells selected, open the Cells Format dialog - Cell Protection tab - shown below. Select <b>Protected</b> to prevent changes to the contents or the format of a cell. Select <b>Hide Formula</b> to hide formulas.
<br><br>
<center><img alt="protect_5.jpg" src="http://www.openofficetips.com/images/protect_5.jpg" width="530" height="398" /></center>
<br><br>
With the correct protection settings having been applied to the selected cells, we must now protect the sheet or document. This is done as shown below...
<br><br>
<center><img alt="protect_2.jpg" src="http://www.openofficetips.com/images/protect_2.jpg" width="473" height="434" /></center>
<br><br>
A password is required - don't forget it!!
<br><br>
<center><img alt="protect_3.jpg" src="http://www.openofficetips.com/images/protect_3.jpg" width="396" height="135" /></center>
<br><br>
This is the message that you get when attempting to modify the contents of a cell.
<br><br>
<center><img alt="protect_4.jpg" src="http://www.openofficetips.com/images/protect_4.jpg" width="234" height="111" /></center>

<br><br>  ]]>

</content>
</entry>

</feed>