This is a very basic discussion of spreadsheets for those who have no idea what they are or what they do.
A spreadsheet is a document which is composed of many, many cells: 65, 535 of them, in most cases. It's a document which is made up of a huge table; it has also been described as an electronic ledger sheet. The most commonly used spreadsheet is Microsoft Excel, but there are many others: Lotus, Quattro Pro, Mesa (Mac only), and OpenOffice Calc to name a few. To learn to use a spreadsheet, you'll need to acquire one. If you don't already have Microsoft Office (which contains Excel), the expense ($229.95 at Buy.com here:
http://www.buy.com/prod/microsoft-office-2007-ultimate-complete-product-1-pc/q/loc/105/204071247.html) may drive you away, but the Office suite is by far the business leader. You'll find MS Office at prices ranging from the one shown here, all the way up to about $550. Shop around. It's the same program.
If you're somewhat computer savvy (doesn't take much, though), you can download OpenOffice for free, and use its Calc program. You can find it at
http://download.openoffice.org/2.2.1/index.html, but you'll want a broadband connection; it's about a 110MB download. There are many companies which provide OpenOffice and its documentation on CD-ROM for a small fee ($10-20 or so), if you don't have a broadband connection. Find them here:
http://distribution.openoffice.org/cdro ... html#cdrom
Organization of a spreadsheet:
You need to know about rows, columns, ranges, cell references, and cell formulas to understand what you're trying to do with a spreadsheet.
Rows and Columns: Spreadsheets are made up of rows, usually 1-65,535; and columns A - ZZZZ. You refer to a cell by its Column and Row designations. The top left cell is A1. Five cells right of that first cell is F1. Two rows down from that last cell is F3, and so on. This is called a cell reference.
Cell Formulas and Cell Ranges: You can tell the spreadsheet to add, subtract, multiply, divide, exponentiate, or do any of a host of other mathematical operations on the contents of cells. For example, if we have a column of numbers starting in Cell A1 and extending to A5, we can add them up and put the total in cell A6 by simply clicking in cell A6 and entering =SUM(A1:A5). When you hit Return, the sum of the first five cells appears in A6. Now click in A7 and enter =AVERAGE(A1:A5). Guess what happens in A7. Okay, we'll complicate things some more: Click in A8, and enter =STDEV(A1:A5). The standard deviation appears in A8. Try these: =MAX(A1:A8); MIN(A1:A8). Some spreadsheets like OpenOffice also have =MEDIAN(A1:A5); you'll just have to try that one to see whether Excel has it or not. The "A1:A5" part defines the range over which the function is to work. In other words, tell it which cells you want the function to work with. This is called a Cell Range.
Suppose we have a spreadsheet composed of data downloaded from the MLS. The columns are referenced by their column letter, but looking across the top of the sheet, we see that the columns are also named: Address, Sale Date, Sale Price, DOM, GLA, etc. The rows contain the individual sales we want to analyze; let's say that our search tuned up 340 sales in the past year. This sheet would have 341 rows and as many columns as are needed for each of the data items. Think of a row as a single record of a sale, and the columns within that row as the pieces of that sale which describe it.
But we said there were only 340 sales. How come we've got 341 rows, then? Because you've got a header row. That's the first row across the top of the page which describes the information in each of the columns: GLA, Price, Sale Date, etc. So there's one row describing the data, and 340 rows listing it.
If we want to find out the maximum and minimum sale prices, for example, we'd use the MAX and MIN functions, and tell them what range to look in. Let's say the Sale Price is located in column Y. We already know the last row of the table is row 341. So the cell formula used in cell Y342 would read =MAX(Y2:Y341), and the highest sale price in that range would be shown in Cell Y342. (Remember, Y1 is the header for Column Y, and doesn't contain a number. It contains only the words, "Sale Price". So we tell the function to work from Y2 to Y341).
Now that you know a little of the jargon found in discussing spreadsheets, try the tutorial located here:
http://www.usd.edu/trio/tut/excel/index.html. This is a web page on the University of South Dakota website. To learn more about Excel, try Microsoft's own website:
http://office.microsoft.com/training/training.aspx?AssetID=RC100620751033&pid=CR100479681033 Additionally, you can try the MrExcel website at
http://www.mrexcel.com/for tutorials about how to do specific things using Excel. This is a very good site, and has video tutorials available for purchase. It also has two-minute podcasts to which you can subscribe, published each business day. But get familiar with spreadsheets first; use the USD site to learn the terminology and basics better. Then try MrExcel.
Most of the things you learn about Excel can be adapted to work in OpenOffice Calc or other spreadsheets. But there are slight differences. In Excel, the PMT function needs three other cells to work with: It needs to know the rate of interest per year, the term of the note in years, and the principal amount. Put those in cells A1, B1, and C1 (down the first column). In D1, enter =PMT(A1/12, B1*12, -C1). The payment will magically appear when you hit "return." In OpenOffice Calc, you'd enter =PMT(A1/12; B1*12; -C1). The only difference is that the arguments are separated by semicolons in Calc and by commas in Excel.
That's a little more computer jargon to learn: What you put in the parentheses of a function is called an argument. Plural, if there's more than one of them. They're also called "Function parameters."
Later on, we'll be publishing some tutorials about how to import MLS data into your spreadsheet; how to add more columns to facilitate analysis; how to chart your results; and how to use spreadsheets for market analysis.
Post any questions here, and one of us will answer them.