
| Environment Item | Description |
|---|---|
| Title Bar | The title bar displays the name of your current spreadsheet. |
| Menu Bar | The menu bar contains the Excel command menus, e.g. File, Edit, etc., which consists of commands for performing specific tasks. Also available are the Apple Menu, the Help Menu, and the Application Menu. To issue a command, click on one of the menu items,drag to the command and release the mouse button. |
| Tool Bar | The tool bar buttons are shortcuts to some of the commands available from the menus. |
| Workspace Area | The worksheet area is a matrix of cells where your information will be displayed. Notice the A1 cell. It has a square outline around it. This outline is known as an active cell indicator. Excel has 256 columns ranging from Column A through Column IV, and 16,384 rows. |
| Reference Area | The reference area displays the name of the currently active cell. |
| Formula Bar | The Formula Bar is where you actually make changes to cell contents. When a cell is selected, its contents are displayed in the Formula Bar. To edit the contents, you edit what is in the Formula Bar. |
| Column Header & Row Header | Letters and Numbers used in combination (e.g. K11) to specify the exact location of a cell or range of cells. |
| Status Bar | The status bar located at the very bottom of your screen displays brief information about activity within your workspace area. Currently, it should say Ready. |
In the table below, the 'cursor' is the active cell indicator. The active cell is the one with the highlighted border around it.
If it is your first time to save this file to disk, you will be prompted with a dialog box that allows you to specify several things:
The last option, format, is commonly ignored. You will not need to worry about this until you want to make your file available to someone else who uses a different kind of computer or application.
After you save the file, the name you gave it will be displayed in the Title Bar.
NOTE: Once you've first saved a file, using the save command again will not result in this dialog box. This is because Excel assumes you wish to save over the previous file. If you wish to save the document with a different name, or in a different location, use the Save As... command
Save vs. Save As...
If you wish to make a copy or create a different version of your file, you will want to use the Save As... command. This will take the file that you are working on and open the same dialog box you saw the first time you saved the file. This will allow you to save it in a new location with a new name, or a new format. (It's kind of like forcing Excel to think that this is the first time you are saving the file so that you can tell Excel where and how to save it.)
Caution: When you are working on a document, the changes you make go into a very temporary kind of memory called RAM, which is erased when the computer loses power or restarts. Because of this, it is absolutely critical that you save changes to your disk or hard drive. If you don't do this and your machine crashes or is accidentally turned off, you lose all of the changes you've made since it was last saved to disk. It is recommended that you save your work to disk approximately every 10-15 minutes. Although no changes should be needed to print a single copy of the entire document, the Print dialog box provides all kind of options.
If, however, you would prefer to see how your spreadsheet will look before it is actually printed...
A "What you See is What you Get" version of your spreadsheet will appear, which is exactly what the spreadsheet will look like when printed out.
When you are ready to enter the data, remember that you need to select the cell in which you want to enter data:
When a cell is selected, the cell's contents are placed in the Formula Bar which serves as a very short term container (buffer). You can edit away in the Formula Bar without making changes to the cell until you are ready. When you begin to edit a cell, these two buttons show up in the Formula Bar:
It is highly recommended that you begin to use the return and tab keys to speed up your data entry. The most common movement is usually down (return) or to the right (tab). You can see here why people have trouble when they wish to enter data that is to be treated as text but only consists of numbers. For example, if you attempt to type, say zip code 07101, the zero will be removed. To get around this, you have to tell Excel to treat the value as a text value, by entering in an apostrophe before the number such as:
Working with Workbooks
MS Excel allows you to work with a collection of spreadsheets at a time. These collections of spreadsheets are called workbooks. Workbooks allow you to keep related spreadsheets together and make global changes.
Opening a Workbook
Switching between Spreadsheets
Movement Within a Spreadsheet
To do this Use this Move the cursor one cell to the right --> or tab Move the cursor one cell to the left <-- or up-arrow-tab Move the cursor down one cell down-arrow or return Move the cursor up one cell up arrow or up-arrow-return Move the cursor to cell A1 apple-home Move the cursor to the end of the data apple-end Move the cursor up one screen page up Move the cursor down one screen page down Remember you may also use the mouse point and click method or the scroll bars to navigate through a spreadsheet. Save and Save As...
Printing
Click on... to... Next Display Next page of previewed document Previous Display Previous page of previewed document Zoom enlarge or reduce the size of the image. Margins see where your left, right, top, and bottom margins are set. Setup make changes to margins and other options. Print print
Entering Data
Basic Data Entry
In addition to the button with the check-mark, you can enter the contents of the Formula Bar into the cell simply by moving to another cell (see Movement Within the Spreadsheet above).
Cancels any editing of the cell.
Enters the contents of the Formula Bar into the cell.
Data Types and Features
Type Example Description Number 744.556 Consists of numbers only. Text Boeing 737 Consists of numbers and at least some text (can be completely text) Calculation =A1+4 Begins with an equals sign (=) and conforms to rules of math. Cell names are used as variables (to stand for cell values). Can also consist of a function (see Entering Formulas below). '07101 '123 '4567 '62966 '000069.001M
| In Order of Priority | |
|---|---|
| (...) | Parenthesis |
| ^ | Exponentiation |
| * or / | Multiplication |
| + or - | Addition or Subtraction |
For example, if you wished to add ten to five, then multiply the result by three, the answer would be 45. However, if Excel were to perform the calculation without the proper parenthesis, the answer would be 35. Due to the mathematical priorities listed above, you must use parenthesis to preform the addition first, like so:
(5 + 10) * 3Excel follows the rules of math which say that multiplication and division MUST be performed before addition and subtraction. If you indeed wish to add 5+10 prior to multiplying (*) by 3, the calculation must be specified with the parentheses grouping items which must be calculated first: (5+10)*3. Keep this in mind as more complex spreadsheets are attempted.
=3+(5+7)/2At any point, any of the values in the above example could be replaced with cell names:
=3+(5+7)/B4If B4 = 2, you'll get the same answer as before (go ahead and try it). Now you can begin to see how Excel does its work.
A formula is something that you might see on one side of an equation such as the examples above. A function, on the other hand, can be seen as a shortcut for a formula. To demonstrate, let's take a look at how a formula might be employed to add up the numbers in the cells B6 through B8:
=B6+B7+B8That works fine. But say we had a list of all fifty states. That would be one long formula.
Here is the same calculation using a function, the SUM function (for summate):
=SUM(B6:B8)A function consists of the equals sign (of course), then the name of the function (e.g., SUM) followed by its arguments within parentheses (e.g., B6:B8). Arguments are the values upon which functions act. For instance, the SUM function above acts on the cells, B6, B7, and B8ัthe colon : represents a range from the previous cell to the following cell.
Example
To paste a function...
By deselecting the Paste Arguments check-box, the function will be pasted without the sample arguments (number1, number2, ...). The sample arguments are helpful on in that they tell you how the function needs its arguments laid out within the parentheses.
Look at the Formula Bar. It should contain =SUM(). The insertion point is located between the parentheses (|), waiting for information.
Example
Example 1
Example 2
The AIM Lab
Function Shortcuts
Summation Button
Insert Function
An alphabetical list of available functions will appear.
If the Paste Arguments check-box is selected, click on it to deselect it.
Your Formula Bar should contain the following formula: =SUM(B6:B8)
Copying Calculations
In the cells where totals should be, we need more calculations. We could enter the formula or function for each cell. Fortunately, we've already created a calculation that is similar to the ones we want to create. All we need to do is apply that formula or function to the other cells.
Using Copy and Paste
Using the Fill commands
August 10, 1995