Excel Basics: Working with Spreadsheets

Size: px
Start display at page:

Download "Excel Basics: Working with Spreadsheets"

Transcription

1 Excel Basics: Working with Spreadsheets E 890 / 1 Unravel the Mysteries of Cells, Rows, Ranges, Formulas and More Spreadsheets are all about numbers: they help us keep track of figures and make calculations. That makes them very useful, but also rather intimidating, and most spreadsheet programs look decidedly off-putting when you start them up: just a big, blank grid! In this article, I ll introduce you to the basics of using spreadsheets, explaining all the important terms with exercises you can follow to familiarise yourself with spreadsheets. Although I ll concentrate on Microsoft Excel, most of these basics apply to whatever spreadsheet program you happen to be using. By Rob Young Microsoft Excel Microsoft Works The Layout of a Spreadsheet: Cells, Rows and Columns... A Quick Exercise: Adding a List of Numbers... Formulas: Get Your Spreadsheet to Make Instant Calculations for You... E 890 / 4 E 890 / 5 E 890 / 8 This article shows you:... When and why spreadsheets are useful... How To find your way around a spreadsheet... How To enter and total-up lists of figures 33

2 E 890 / 2 Use spreadsheets to store, add up or compare lists of numbers Spreadsheets add numbers automatically What Makes Spreadsheets Useful, and Why Would I Use One? Do you ever make a list of numbers on a piece of paper or in a notebook? If so, you ve created a spreadsheet. It s a rather old-fashioned one, but as long as you can read what you ve written, it s no worse than a computer-based spreadsheet. You must have made this list of numbers for a reason, though. Was it to add them all up? Or to keep for future reference? Or to compare with another, similar list? There s always a reason for making a list of numbers, and whatever that reason is, you ll find it easier and more reliable to use a spreadsheet program rather than a pen and paper. Why? Here are four quick reasons: You can replace one number with another quickly and cleanly no scribbling out! The program will add up the numbers for you automatically (and always correctly). If you need to do other calculations, such as subtraction, division, or working out an average, the program handles those just as easily. If you change a number or add another to the list, the program will instantly update its total, taking the new number into account. The spreadsheet is a file stored on your PC, so whenever you need to refer to it or alter it, you just open it up like any other document. Let s go to a quick example of a spreadsheet in action. In the screenshot below, I ve entered a list of three numbers and told the program to add them up. (I ll explain how I did that a little later, after we ve covered the first few of our basics.) 34

3 E 890 / 3 Later, I decide that one of my figures is wrong: the 600 should actually be 500, so I need to change it. I click in the box where I typed 600, type in 500 and press the Enter key, and I m done: the program instantly updates the total. If I d done this on paper, I would have had to scribble out two numbers and do my adding-up again, or make a new list. If you change a number, the total updates straight away When you know a little about what spreadsheets do, you can probably start to see a few ways you could put them to good use, but here are some suggestions: Managing accounts: one list of numbers keeps a running total of everything you ve earned in a month, and another tracks everything you ve spent. You can even add a calculation to show you the difference between the two totals whether or not you re currently in profit. Sports statistics: if you re a sports fan, use a spreadsheet to keep track of your team s performance each season: wins, losses, points, goals scored and conceded. Budgeting: if you re planning a holiday, building an extension, or landscaping the garden, use a spreadsheet to enter estimated costs for each separate element, see the total, and compare it with your budget. Spreadsheets have plenty of day-to-day uses 35

4 E 890 / 4 Expense tracking: if you use a car for workrelated trips, use a spreadsheet to keep track of each trip and the mileage covered. The spreadsheet can multiply the total by a priceper-mile to tell you at a glance what expenses you should claim. The only thing these suggestions have in common is that they involve lists of numbers: money, scores, distances, points, and so on. Any other list of numbers is an equally-good candidate for a spreadsheet. Excel is one of many spreadsheet programs All spreadsheets look the same Rows are numbered, columns have letters The Layout of a Spreadsheet: Cells, Rows and Columns Microsoft Excel is the most popular spreadsheet program (and the one you ll see pictured in this article s screenshots), followed by the simpler spreadsheet built into Microsoft Works. You may well have one of these, or you may have one of the dozens of other spreadsheet programs: Lotus 1-2-3, Calc, Quattro Pro, among others. Whichever spreadsheet you use, you ll see much the same thing when you start it up: a big grid of empty white boxes. We don t call them boxes, because that would be too easy: we call them cells. The whole grid is known as a worksheet. Running along the top of the cells you ll see the letters A, B, C and so on. These are the column headers, and they give each column a name: the column of cells on the left is column A, the column beside it is column B, etc. Running down the extreme left of the grid are the row headers containing numbers: the top row of cells is row 1, the second row down is row 2, and so on. 36

5 E 890 / 5 If you re familiar with the game Battleships, you ve probably guessed how these letters and numbers work: by combining a column letter and a row number, we can give each cell a name. The cell in the top left corner is cell A1, the cell to its right is B1; find the cell in column E on row 4 and you re at cell E4. Although it may seem sensible to call this the name of a cell, we actually call it the cell reference. Each cell is named after the column and row it s in This is column B This is row 2 This is cell B2 This is the cell selector, currently at cell D6 Whenever we refer to particular cells, we always do it using the letter first. For example, the cell in the top left corner is always called A1, and never 1A. You ll probably also see that one of the cells has a thick box around it. This box is called the cell selector, and it shows which cell is currently selected. If you were to type something, it would appear in the cell indicated by the cell selector. You can click any cell to move the cell selector there, or you can use the four arrow keys on your keyboard to move the cell selector left, right, up or down. (In the screenshot above, I clicked in cell D6, so that s where the cell selector appears.) Click a cell to select it, or use the keyboard A Quick Exercise: Adding a List of Numbers On page 3 of this article I showed you a short spreadsheet calculation. Let s run through the steps to make that list of numbers and then add them up: 37

6 E 890 / 6 1. Start your spreadsheet program. When it appears on the screen, you should see a blank grid of cells (or worksheet ). If you don t, choosing File > New will make one appear in most programs. 2. Click in cell B1, and the cell selector should appear around that cell. 3. Type the number 100 and press Enter. 4. As soon as you pressed the Enter key, the cell selector probably moved to the cell below, cell B2. If it didn t, click in cell B2. 5. Now type the number 300 into cell B2 and press Enter. 6. Now the cell selector should be in cell B3. Again, if it isn t, click in cell B3. Add a label for the row containing the total 7. Type the number 600 and press Enter. 8. Now click in cell A4, and type Total:. (This is a label an ordinary piece of text that reminds us what a certain row or column contains.) So far, the result should look similar to the next screenshot. Press Enter again. 9. Now click in cell B4, and this is where we make our spreadsheet do something useful add up our numbers. Type this into cell B4: =SUM(B1+B2+B3) 38

7 E 890 / 7 In some programs (Excel, for example), while you re typing the line above, you may see tooltips and coloured hints appear nearby. The program is trying to be helpful and suggest things you might want, but just ignore all this and keep typing. 10.Make sure you ve typed the text exactly as it is shown in step 9. Note that it starts with an equals sign, and it doesn t have any spaces at all. After checking it, press Enter. 11. What happens? Well, if all went well, the strange stuff you just typed into cell B4 should disappear, and instead you should see the number That strange stuff tells the program to add the numbers we typed into the first three cells and show the total in this cell. This cell now displays the total If you think you made a mistake in step 9, or your program has shown an error message, you can type it in again: just click in cell B4 again and type the line shown in step 9. It will automatically replace what you typed there earlier. 12.Now try experimenting with different numbers in cells B1, B2 and B3. For instance, click in cell B3 (which currently contains 600 ), and type 500 then press Enter. Straight away you should see the total change to 900. If you change a number, the total is recalculated 39

8 E 890 / 8 A formula tells the spreadsheet to calculate a result Formulas must start with an equals sign Formulas: Get Your Spreadsheet to Make Instant Calculations For You I referred to it as strange stuff, but there s a more technical term for what we typed in step 9: it s called a formula. Whenever you want a spreadsheet to work something out and display the result, you ll use a formula to do it. The most important thing to remember about formulas is that they must start with an equals sign (=). It s this that tells the program it has to work something out: if you type something into a cell without an equals sign at the beginning, the program just displays what you typed. (We saw that in action when we typed 100,300, 600 and the text Total: none of those began with an equals sign, so the program just displayed them.) When a cell contains a formula, the program does the mathematics in that formula, and then displays the result in the cell where the formula was. Now it s time to explain the formula we just used, which was: =SUM(B1+B2+B3) The equals sign, tells the program it must treat what follows as a calculation to be solved. The word SUM means do the arithmetic that follows. SUM is one of many functions built into spreadsheet programs, but it s the one you ll use most as it does adding, subtracting, multiplying and dividing. Your program may offer dozens of functions for adding or comparing dates and times, doing trigonometry, calculating distributions, and all sorts of other things I failed at school. If you press the F1 key to open the program s help, then search for 40

9 E 890 / 9 functions, you should be able to find a list of them. You probably won t need any but SUM though, so for most purposes you can assume that your formulas will always start with =SUM. After the word SUM comes the arithmetic we want to do, always in brackets. We wanted to add the contents of the three cells at the top of column B, so we tell the program to do just that: B1+B2+B3. Always use cell references in your formulas You ll notice that our formula didn t say : we didn t enter the numbers we want to add up, but the cell references containing the numbers. This is the second important point to remember about formulas: you should avoid typing real numbers into them whenever you can. When we tell the program to add B1+B2+B3 it will keep watch on those cells and make sure it always shows us what they add up to, even if we change a number in one of the cells. On the other hand, if we had written this for our formula: Always make formulas refer to cells, not to real numbers =SUM( ) it would always give us the result In fact, we d have wasted our time typing anything into those first three cells, because this formula doesn t use those cells at all! Use Cell Ranges to Add a Large Number of Cells In the example we were just using, we were adding up three cells, B1, B2 and B3. Imagine if we were adding up 20, 50 or 1000 cells this way: would you really have to type the references to all those cells in your formula? 41

10 E 890 / 10 No, fortunately not. Spreadsheets provide a handy shorthand method of entering chains of cells: these are called cell ranges. 42 Specify a range with the first cell, a colon, and the last cell Change a cell by clicking it and typing something different You can edit a cell containing a formula in the Formula Bar A range is a way of saying everything from this cell to that cell, and it looks like this: =SUM(B1:B3) That s the shorthand way of writing the formula we used earlier: add up everything from cell B1 to cell B3, inclusive. In this example it only saves a tiny bit of typing, but if we wanted to add up everything from B1 down to B480, it would be a huge timesaver: =SUM(B1:B480) How To Edit Cells in a Spreadsheet I explained earlier how you can easily change the number shown in a cell: just click that cell, type a different number and press Enter. The same is true if the cell contains a label (ordinary text 'Total:' which we added previously) just click the cell and type something different. There will be times when you don t want to type something different, perhaps, you just want to make a small change to what s already there. A prime example is a formula: if you have to edit a formula, you d rather not type the whole thing again. No problem: another option is to use the Formula Bar. In most programs, including Excel and Works, this is immediately above the column headers, as shown in the next screenshot. When you select any cell, the Formula Bar shows you the cell reference on the left, and what that cell contains on the right. In the screenshot, I ve clicked in cell B4: the Formula Bar confirms that on the left, and on the right it shows the formula

11 E 890 / 11 we re using in that cell. If you wanted to edit that formula, you d click in the Formula Bar, change the formula as required, and then press Enter. Click a cell, and you can edit its formula in the Formula Bar Here are a few other editing tips: To delete the contents of a cell, select the required cell and press the Delete key. If you want to select a collection of cells that are all connected to each other, press the mouse button down in one cell and drag the mouse (keeping the button down) until all the cells you wanted have been highlighted. To select cells that are scattered about in different places on your worksheet, click one cell, then hold down the Ctrl key and click each of the others you want. (If you select a wrong cell by mistake, keep the Ctrl key down and click it again.) To select an entire column, click that column s header (such as the C header to select the whole of column C). Likewise, you can select a whole row by clicking its row header. If you need to make a column wider, move the mouse up to the column header and position it at the join between that column and the one to its right, as shown in the next screenshot: the mouse pointer turns into a vertical bar crossed by an arrow. You can now click and drag to the right until it s wide enough. Alternatively, just You can empty selected cells with the Delete key Select cells by dragging or by holding Ctrl and clicking You can stretch columns that are too narrow 43

12 E 890 / 12 double-click the join, and the column will be widened just enough to display the widest thing that column has to display. To widen a column, find the join in the header and either drag or double-click You can lay out a spreadsheet as you like Keep these suggestions in mind How To Design Your Spreadsheet If you ve decided to use a spreadsheet for a particular purpose, you re probably wondering how to start. Well, the first rule about designing a spreadsheet is that there aren t really any rules! That big grid of cells is like an artist s canvas: you don t have to start anywhere in particular, and you certainly don t need to fill it all. In fact, leaving rows and columns empty can make it easier to read and understand. Although there aren t any rules, here are a few guidelines to work from: Use text labels as headings to tell you what each column or cell contains. Decide what labels you need before you start (as you probably would if you wrote a table on a piece of paper), and enter all your labels before adding any figures. Use bold and/or coloured text to highlight the most important cells (usually totals) and make them easy to find at a glance. Try to think ahead and leave enough space for numbers and formulas you ll add later. Let s compare two versions of the same spreadsheet. This is tracking someone s monthly 44

13 E 890 / 13 expenses. It includes labels for each category of expense we want to track (car, house and food), and labels for each month of the year. In column E we re adding up the total spent each month, and in row 7 we re adding up how much we ve spent in each category so far this year. In cell E7 we add up the total expenses this year, either by totting up cells E2 down to E6, or cells B7, C7 and D7 (either calculation should give the same result). There are two things wrong with this example. First, it isn t very well presented. If it s only for your own use, you may not mind, but a little colour and style can make it easier on the eye. Your spreadsheet program s toolbar should offer options to set the style, text colour and background colour of cells (just like those you find in your word processor ) and it s worth taking advantage of them. The second problem is that there s no forward planning. Where will the figures for the rest of the year go? What happens if you need to add another column for a new category of expenses? In the next screenshot, I ve spruced up the style a little, but more importantly I ve prepared for the future: I ve included rows and labels for the Text styles and colours make a spreadsheet more readable Plan for the future by labelling all the rows and columns you ll need 45

14 E 890 / 14 remaining months of the year, ready to add those figures when they re available, and I ve left columns E and F blank in case I think of any more types of expenses I want to add later. If you forget to think ahead, it s not a huge problem: you can insert extra rows or columns when you need to. Click a column header or a row header (depending on whether you want to add a column or a row), then go to your spreadsheet program s Insert menu and you should see an option to insert a column or a row. The new row or column will usually be inserted before the one you selected. At the same time, the program should automatically update your formulas to make sure they still refer to the same cells as they did before. 46

Taskbar: Working with Several Windows at Once

Taskbar: Working with Several Windows at Once Taskbar: Working with Several Windows at Once Your Best Friend at the Bottom of the Screen How to Make the Most of Your Taskbar The taskbar is the wide bar that stretches across the bottom of your screen,

More information

EXCEL PRACTICE 5: SIMPLE FORMULAS

EXCEL PRACTICE 5: SIMPLE FORMULAS EXCEL PRACTICE 5: SIMPLE FORMULAS SKILLS REVIEWED: Simple formulas Printing with and without formulas Footers Widening a column Putting labels and data in Bold. PART 1 - DIRECTIONS 1. Open a new spreadsheet

More information

Using Microsoft Excel

Using Microsoft Excel About Excel Using Microsoft Excel What is a Spreadsheet? Microsoft Excel is a program that s used for creating spreadsheets. So what is a spreadsheet? Before personal computers were common, spreadsheet

More information

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents Section Topic Sub-topic Pages Section 2 Spreadsheets Layout and Design S2: 2 3 Formulae

More information

Word: Print Address Labels Using Mail Merge

Word: Print Address Labels Using Mail Merge Word: Print Address Labels Using Mail Merge No Typing! The Quick and Easy Way to Print Sheets of Address Labels Here at PC Knowledge for Seniors we re often asked how to print sticky address labels in

More information

Course contents. Overview: Goodbye, calculator. Lesson 1: Get started. Lesson 2: Use cell references. Lesson 3: Simplify formulas by using functions

Course contents. Overview: Goodbye, calculator. Lesson 1: Get started. Lesson 2: Use cell references. Lesson 3: Simplify formulas by using functions Course contents Overview: Goodbye, calculator Lesson 1: Get started Lesson 2: Use cell references Lesson 3: Simplify formulas by using functions Overview: Goodbye, calculator Excel is great for working

More information

INFORMATION SHEET 24002/1: AN EXCEL PRIMER

INFORMATION SHEET 24002/1: AN EXCEL PRIMER INFORMATION SHEET 24002/1: AN EXCEL PRIMER How to use this document This guide to the basics of Microsoft Excel is intended for those people who use the program, but need or wish to know more than the

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

QUICK EXCEL TUTORIAL. The Very Basics

QUICK EXCEL TUTORIAL. The Very Basics QUICK EXCEL TUTORIAL The Very Basics You Are Here. Titles & Column Headers Merging Cells Text Alignment When we work on spread sheets we often need to have a title and/or header clearly visible. Merge

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

More information

Excel 2007 Fundamentals

Excel 2007 Fundamentals Excel 2007 Fundamentals Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on that information.

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Adding Information to a Worksheet

Adding Information to a Worksheet Figure 1-1 Excel s welcome page lets you create a new, blank worksheet or a readymade workbook from a template. For now, click the Blank workbook picture to create a new spreadsheet with no formatting

More information

Moving Around the Spreadsheet

Moving Around the Spreadsheet Starting Excel 2007 In the following exercises you will learn some of the necessary steps to create a spreadsheet using Microsoft Excel 2007. You will learn not only how to type various items into the

More information

Microsoft Office Excel Training

Microsoft Office Excel Training Region One ESC presents: Microsoft Office Excel Training Create your first workbook Course contents Overview: Where to begin? Lesson 1: Meet the workbook Lesson 2: Enter data Lesson 3: Edit data and revise

More information

Creating an Excel 2007 Spreadsheet

Creating an Excel 2007 Spreadsheet Creating an Excel 2007 Spreadsheet Created: 12 December 2006 Starting Excel 2007 In the following exercises you will learn some of the necessary steps to create a spreadsheet using Microsoft Excel 2007.

More information

The Excel Project: Excel for Accountants, Business People... from the Beginning Duncan Williamson

The Excel Project: Excel for Accountants, Business People... from the Beginning Duncan Williamson The Excel Project: Excel for Accountants, Business People... from the Beginning Duncan Williamson Introduction In this book you will see that we use Excel 2007 as the focal point of much of the work we

More information

Welcome to Introduction to Microsoft Excel 2010

Welcome to Introduction to Microsoft Excel 2010 Welcome to Introduction to Microsoft Excel 2010 2 Introduction to Excel 2010 What is Microsoft Office Excel 2010? Microsoft Office Excel is a powerful and easy-to-use spreadsheet application. If you are

More information

Using Tab Stops in Microsoft Word

Using Tab Stops in Microsoft Word Using Tab Stops in Microsoft Word U 720 / 1 How to Set Up and Use Tab Stops to Align and Position Text on a Page If you ve tried to use tab stops to align text in Microsoft Word, there s every chance you

More information

Introduction to Excel

Introduction to Excel Introduction to Excel Written by Jon Agnone Center for Social Science Computation & Research 145 Savery Hall University of Washington Seattle WA 98195 U.S.A. (206)543-8110 November 2004 http://julius.csscr.washington.edu/pdf/excel.pdf

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

Burning CDs in Windows XP

Burning CDs in Windows XP B 770 / 1 Make CD Burning a Breeze with Windows XP's Built-in Tools If your PC is equipped with a rewritable CD drive you ve almost certainly got some specialised software for copying files to CDs. If

More information

Spreadsheet Concepts Using Microsoft Excel

Spreadsheet Concepts Using Microsoft Excel Spreadsheet Concepts Using Microsoft Excel lab 5 Objectives: Upon successful completion of Lab 5, you will be able to Create and edit a simple spreadsheet document Describe the advantage of using formulas

More information

Working with Data and Charts

Working with Data and Charts PART 9 Working with Data and Charts In Excel, a formula calculates a value based on the values in other cells of the workbook. Excel displays the result of a formula in a cell as a numeric value. A function

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Practice Exercises for Introduction to Excel

Practice Exercises for Introduction to Excel Practice Exercises for Introduction to Excel Follow the directions below to create the exercises. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Excel Basics Fall 2016

Excel Basics Fall 2016 If you have never worked with Excel, it can be a little confusing at first. When you open Excel, you are faced with various toolbars and menus and a big, empty grid. So what do you do with it? The great

More information

Browsing the World Wide Web with Firefox

Browsing the World Wide Web with Firefox Browsing the World Wide Web with Firefox B 660 / 1 Try this Popular and Featurepacked Free Alternative to Internet Explorer Internet Explorer 7 arrived with a bang a few months ago, but it hasn t brought

More information

Tips & Tricks for Microsoft Word

Tips & Tricks for Microsoft Word T 330 / 1 Discover Useful Hidden Features to Speed-up Your Work in Word For what should be a straightforward wordprocessing program, Microsoft Word has a staggering number of features. Many of these you

More information

Introduction to Excel 2007 for ESL students

Introduction to Excel 2007 for ESL students Introduction to Excel 2007 for ESL students Download at http://www.rtlibrary.org/excel2007esl.pdf Developed 2010 by Barb Hauck-Mah, Rockaway Township Library for The American Dream Starts @your Library

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Printing Envelopes in Microsoft Word

Printing Envelopes in Microsoft Word Printing Envelopes in Microsoft Word P 730 / 1 Stop Addressing Envelopes by Hand Let Word Print Them for You! One of the most common uses of Microsoft Word is for writing letters. With very little effort

More information

Using Microsoft Word. Tables

Using Microsoft Word. Tables Using Microsoft Word are a useful way of arranging information on a page. In their simplest form, tables can be used to place information in lists. More complex tables can be used to arrange graphics on

More information

Create your first workbook

Create your first workbook Create your first workbook You've been asked to enter data in Excel, but you've never worked with Excel. Where do you begin? Or perhaps you have worked in Excel a time or two, but you still wonder how

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW STAROFFICE 8 DRAW Graphics They say a picture is worth a thousand words. Pictures are often used along with our words for good reason. They help communicate our thoughts. They give extra information that

More information

Lesson 4: Introduction to the Excel Spreadsheet 121

Lesson 4: Introduction to the Excel Spreadsheet 121 Lesson 4: Introduction to the Excel Spreadsheet 121 In the Window options section, put a check mark in the box next to Formulas, and click OK This will display all the formulas in your spreadsheet. Excel

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel in Excel Although calculations are one of the main uses for spreadsheets, Excel can do most of the hard work for you by using a formula. When you enter a formula in to a spreadsheet

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to people in certain situations while others have

More information

Using Excel This is only a brief overview that highlights some of the useful points in a spreadsheet program.

Using Excel This is only a brief overview that highlights some of the useful points in a spreadsheet program. Using Excel 2007 This is only a brief overview that highlights some of the useful points in a spreadsheet program. 1. Input of data - Generally you should attempt to put the independent variable on the

More information

PowerPoint Basics: Create a Photo Slide Show

PowerPoint Basics: Create a Photo Slide Show PowerPoint Basics: Create a Photo Slide Show P 570 / 1 Here s an Enjoyable Way to Learn How to Use Microsoft PowerPoint Microsoft PowerPoint is a program included with all versions of Microsoft Office.

More information

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

How did you ever do without it? - from the first VisiCalc ad, 1979

How did you ever do without it? - from the first VisiCalc ad, 1979 How did you ever do without it? - from the first VisiCalc ad, 1979 Accountant s Paper Ledger 2-Dimensional representation of accounting data image from Grauer&Barber, Excel 2003, Prentice Hall, Oct., 2004

More information

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40 Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 File Tab... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 9 Downloading Templates... 9 Using

More information

1) Merge the cells that contain the title and center the title

1) Merge the cells that contain the title and center the title Supplies: You will need a storage location to save your spreadsheet for use in Session 2. You will need the 2 handouts pertaining to Session 1 Instructions: Follow the directions below to create a budget

More information

1 Introduction to Using Excel Spreadsheets

1 Introduction to Using Excel Spreadsheets Survey of Math: Excel Spreadsheet Guide (for Excel 2007) Page 1 of 6 1 Introduction to Using Excel Spreadsheets This section of the guide is based on the file (a faux grade sheet created for messing with)

More information

EXCEL BASICS: PROJECTS

EXCEL BASICS: PROJECTS EXCEL BASICS: PROJECTS In this class, you will be practicing with three basic Excel worksheets to learn a variety of foundational skills necessary for more advanced projects. This class covers: Three Project

More information

Speed Up Windows by Disabling Startup Programs

Speed Up Windows by Disabling Startup Programs Speed Up Windows by Disabling Startup Programs Increase Your PC s Speed by Preventing Unnecessary Programs from Running Windows All S 630 / 1 When you look at the tray area beside the clock, do you see

More information

Excel Basic: Create Formulas

Excel Basic: Create Formulas Better Technology, Onsite and Personal Connecting NIOGA s Communities www.btopexpress.org www.nioga.org [Type Excel Basic: Create Formulas Overview: Let Excel do your math for you! After an introduction

More information

Outlook is easier to use than you might think; it also does a lot more than. Fundamental Features: How Did You Ever Do without Outlook?

Outlook is easier to use than you might think; it also does a lot more than. Fundamental Features: How Did You Ever Do without Outlook? 04 537598 Ch01.qxd 9/2/03 9:46 AM Page 11 Chapter 1 Fundamental Features: How Did You Ever Do without Outlook? In This Chapter Reading e-mail Answering e-mail Creating new e-mail Entering an appointment

More information

Creating a Spreadsheet by Using Excel

Creating a Spreadsheet by Using Excel The Excel window...40 Viewing worksheets...41 Entering data...41 Change the cell data format...42 Select cells...42 Move or copy cells...43 Delete or clear cells...43 Enter a series...44 Find or replace

More information

Microsoft Excel Microsoft Excel

Microsoft Excel Microsoft Excel Excel 101 Microsoft Excel is a spreadsheet program that can be used to organize data, perform calculations, and create charts and graphs. Spreadsheets or graphs created with Microsoft Excel can be imported

More information

Excel Foundation Quick Reference (Windows PC)

Excel Foundation Quick Reference (Windows PC) Excel Foundation Quick Reference (Windows PC) See https://staff.brighton.ac.uk/is/training/pages/excel/foundation.aspx for videos and exercises to accompany this quick reference card. Structure of a spreadsheet

More information

Making and Editing a Table in Microsoft Word 2007

Making and Editing a Table in Microsoft Word 2007 Making and Editing a Table in Microsoft Word 2007 Table of Contents Introduction... 2 Creating a Table... 2 1. Finding the "Table" button... 2 2. Methods for making a table... 3 Editing Table Dimensions...

More information

Spreadsheet Basics by Dick Evans, (updated )

Spreadsheet Basics by Dick Evans, (updated ) Spreadsheet Basics by Dick Evans, (updated 2-27-2017) www.rwevans.com What is a spreadsheet? It is a group of values and other data organized into rows and columns much like the columnar pads or ledgers

More information

Basic tasks in Excel 2013

Basic tasks in Excel 2013 Basic tasks in Excel 2013 Excel is an incredibly powerful tool for getting meaning out of vast amounts of data. But it also works really well for simple calculations and tracking almost any kind of information.

More information

Intro To Excel Spreadsheet for use in Introductory Sciences

Intro To Excel Spreadsheet for use in Introductory Sciences INTRO TO EXCEL SPREADSHEET (World Population) Objectives: Become familiar with the Excel spreadsheet environment. (Parts 1-5) Learn to create and save a worksheet. (Part 1) Perform simple calculations,

More information

Excel 2010: Basics Learning Guide

Excel 2010: Basics Learning Guide Excel 2010: Basics Learning Guide Exploring Excel 2010 At first glance, Excel 2010 is largely the same as before. This guide will help clarify the new changes put into Excel 2010. The File Button The purple

More information

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA FACULTY AND STAFF COMPUTER TRAINING @ FOOTHILL-DE ANZA Office 2001 Excel Worksheets A Quick Reference Guide 1 Getting Started Excel is a powerful spreadsheet program. To open up a new Microsoft Excel 2001

More information

COPYRIGHTED MATERIAL. Making Excel More Efficient

COPYRIGHTED MATERIAL. Making Excel More Efficient Making Excel More Efficient If you find yourself spending a major part of your day working with Excel, you can make those chores go faster and so make your overall work life more productive by making Excel

More information

Activity: page 1/10 Introduction to Excel. Getting Started

Activity: page 1/10 Introduction to Excel. Getting Started Activity: page 1/10 Introduction to Excel Excel is a computer spreadsheet program. Spreadsheets are convenient to use for entering and analyzing data. Although Excel has many capabilities for analyzing

More information

Section 3. Formulas. By the end of this Section you should be able to:

Section 3. Formulas. By the end of this Section you should be able to: Excel 2003 CLAIT Plus Section 3 Formulas By the end of this Section you should be able to: Create Simple Formulas Understand Mathematical Operators Use Brackets Calculate Percentages Select Cells with

More information

Spreadsheet Basics. by Dick Evans,

Spreadsheet Basics. by Dick Evans, Spreadsheet Basics by Dick Evans, www.rwevans.com What is a spreadsheet? It is a group of values and other data organized into rows and columns much like the columnar pads or ledgers used manually by bookkeepers

More information

Lesson 2. Introducing Apps. In this lesson, you ll unlock the true power of your computer by learning to use apps!

Lesson 2. Introducing Apps. In this lesson, you ll unlock the true power of your computer by learning to use apps! Lesson 2 Introducing Apps In this lesson, you ll unlock the true power of your computer by learning to use apps! So What Is an App?...258 Did Someone Say Free?... 259 The Microsoft Solitaire Collection

More information

Introduction to Microsoft Excel 2007

Introduction to Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Microsoft Excel is a very powerful tool for you to use for numeric computations and analysis. Excel can also function as a simple database but that is another class.

More information

Module Four: Formulas and Functions

Module Four: Formulas and Functions Page 4.1 Module Four: Formulas and Functions Welcome to the fourth lesson in the PRC s Excel Spreadsheets Course 1. This lesson concentrates on adding formulas and functions to spreadsheet to increase

More information

Excel 2016: Part 2 Functions/Formulas/Charts

Excel 2016: Part 2 Functions/Formulas/Charts Excel 2016: Part 2 Functions/Formulas/Charts Updated: March 2018 Copy cost: $1.30 Getting Started This class requires a basic understanding of Microsoft Excel skills. Please take our introductory class,

More information

» How do I Integrate Excel information and objects in Word documents? How Do I... Page 2 of 10 How do I Integrate Excel information and objects in Word documents? Date: July 16th, 2007 Blogger: Scott Lowe

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE EXCEL INTERMEDIATE Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS AND FUNCTIONS... 6 BASIC EXCEL REVIEW... 6 FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references...

More information

Animations involving numbers

Animations involving numbers 136 Chapter 8 Animations involving numbers 8.1 Model and view The examples of Chapter 6 all compute the next picture in the animation from the previous picture. This turns out to be a rather restrictive

More information

2 A little on Spreadsheets

2 A little on Spreadsheets 2 A little on Spreadsheets Spreadsheets are computer versions of an accounts ledger. They are used frequently in business, but have wider uses. In particular they are often used to manipulate experimental

More information

Checklist. ORB Education Quality Teaching Resources. ORB Education Visit for the full, editable versions.

Checklist. ORB Education Quality Teaching Resources. ORB Education Visit   for the full, editable versions. Checklist 1. Data in our Lives 2. Representing Data 3. Working with Data 4. Introducing Spreadsheets 5. Basic Excel Skills 6. Google Sheets 7. Sorting and Filtering 8. Formulas 9. Plots and Trendlines

More information

SAMLab Tip Sheet #1 Translating Mathematical Formulas Into Excel s Language

SAMLab Tip Sheet #1 Translating Mathematical Formulas Into Excel s Language Translating Mathematical Formulas Into Excel s Language Introduction Microsoft Excel is a very powerful calculator; you can use it to compute a wide variety of mathematical expressions. Before exploring

More information

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING EXCEL + POWERPOINT Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING KEYBOARD SHORTCUTS NAVIGATION & SELECTION SHORTCUTS 3 EDITING SHORTCUTS 3 SUMMARIES PIVOT TABLES

More information

Introduction. A cell can contain any of the following:

Introduction. A cell can contain any of the following: Introduction A spreadsheet is a table consisting of Rows and Columns. Where a row and a column meet, the box is called a Cell. Each cell has an address consisting of the column name followed by the row

More information

CHAPTER 1 GETTING STARTED

CHAPTER 1 GETTING STARTED GETTING STARTED WITH EXCEL CHAPTER 1 GETTING STARTED Microsoft Excel is an all-purpose spreadsheet application with many functions. We will be using Excel 97. This guide is not a general Excel manual,

More information

What we will learn in Introduction to Excel. How to Open Excel. Introduction to Excel 2010 Lodi Memorial Library NJ Developed by Barb Hauck-Mah

What we will learn in Introduction to Excel. How to Open Excel. Introduction to Excel 2010 Lodi Memorial Library NJ Developed by Barb Hauck-Mah Introduction to Excel 2010 Lodi Memorial Library NJ Developed by Barb Hauck-Mah What is Excel? It is a Microsoft Office computer software program to organize and analyze numbers, data and labels in spreadsheet

More information

Word 2007: Inserting & Formatting Pictures

Word 2007: Inserting & Formatting Pictures Word 2007: Inserting & Formatting Pictures W 380 / 1 Spice Up Your Word Documents with Images to Create Stylish Effects Almost any word processor allows you to include pictures in the documents you write,

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

A PRACTICAL TUTORIAL TO EXCEL

A PRACTICAL TUTORIAL TO EXCEL 2010 BEGINNERS A PRACTICAL TUTORIAL TO EXCEL by: Julio C. Fajardo A Practical Tutorial to Excel About: Excel is one of the early software tools developed by Microsoft. The program has been widely adopted

More information

A Document Created By Lisa Diner Table of Contents Western Quebec School Board October, 2007

A Document Created By Lisa Diner Table of Contents Western Quebec School Board October, 2007 Table of Contents A Document Created By Lisa Diner Western Quebec School Board October, 2007 Table of Contents Some Basics... 3 Login Instructions... 4 To change your password... 6 Options As You Login...

More information

Payment Function Exercise

Payment Function Exercise Payment Function Exercise Follow the directions below to create a payment function exercise. Read through each individual direction before performing it, like you are following recipe instructions. Remember

More information

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data.

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data. SPREADSHEETS BASIC TERMINOLOGY A Spreadsheet is a grid of rows and columns containing numbers, text, and formulas. A workbook is the file Excel creates to store your data. A worksheet is an individual

More information

PART ONE 1. LAYOUT. A file in Excel is called a Workbook. Each Workbook is made up of Worksheets (usually three but more can be added).

PART ONE 1. LAYOUT. A file in Excel is called a Workbook. Each Workbook is made up of Worksheets (usually three but more can be added). PART ONE 1. LAYOUT A file in Excel is called a Workbook. Each Workbook is made up of Worksheets (usually three but more can be added). The work area is where the data and formulae are entered. The active

More information

Editing and Formatting Worksheets

Editing and Formatting Worksheets LESSON 2 Editing and Formatting Worksheets 2.1 After completing this lesson, you will be able to: Format numeric data. Adjust the size of rows and columns. Align cell contents. Create and apply conditional

More information

Intermediate Microsoft Excel

Intermediate Microsoft Excel Intermediate Microsoft Excel Class learning objectives By the end of class, students should be able to perform the following tasks in Microsoft Word: 1. Completing a Series 2. Review of Excel Basics Create

More information

EXCEL EXPERT. Starting Excel EXPLORING THE EXCEL WINDOW

EXCEL EXPERT. Starting Excel EXPLORING THE EXCEL WINDOW Microsoft Excel Basics What you will learn from this lesson: Explore the workbook window. Navigate through the workbook. Create an Excel worksheet. Use automatic fill. Create formulas. Open an existing

More information

Learning Worksheet Fundamentals

Learning Worksheet Fundamentals 1.1 LESSON 1 Learning Worksheet Fundamentals After completing this lesson, you will be able to: Create a workbook. Create a workbook from a template. Understand Microsoft Excel window elements. Select

More information

Keep Track of Your Passwords Easily

Keep Track of Your Passwords Easily Keep Track of Your Passwords Easily K 100 / 1 The Useful Free Program that Means You ll Never Forget a Password Again These days, everything you do seems to involve a username, a password or a reference

More information

When you first start OneNote, it creates a sample notebook for you. You can use this notebook or quickly create your own.

When you first start OneNote, it creates a sample notebook for you. You can use this notebook or quickly create your own. Basic tasks in Microsoft OneNote 2013 OneNote is a digital notebook that provides a single place for all of your notes and information everything you need to remember and manage in your life at home, at

More information

Outlook Web Access. In the next step, enter your address and password to gain access to your Outlook Web Access account.

Outlook Web Access. In the next step, enter your  address and password to gain access to your Outlook Web Access account. Outlook Web Access To access your mail, open Internet Explorer and type in the address http://www.scs.sk.ca/exchange as seen below. (Other browsers will work but there is some loss of functionality) In

More information

Advanced Microsoft Excel 2010

Advanced Microsoft Excel 2010 Agenda: 1. Introduction 2. Complex formulas & cell references 3. Functions 4. Charts 5. Pivot Tables 6. Practice and Questions In order to keep computer literacy programs running in the future, we must

More information

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Contents 1 Introduction to Using Excel Spreadsheets 2 1.1 A Serious Note About Data Security.................................... 2 1.2

More information

Making use of other Applications

Making use of other Applications AppGameKit 2 Collision Using Arrays Making use of other Applications Although we need game software to help makes games for modern devices, we should not exclude the use of other applications to aid the

More information

How to Open Excel. Introduction to Excel TIP: Right click Excel on list and select PIN to Start Menu. When you open Excel, a new worksheet opens

How to Open Excel. Introduction to Excel TIP: Right click Excel on list and select PIN to Start Menu. When you open Excel, a new worksheet opens Introduction to Excel 2010 What is Excel? It is a Microsoft Office computer software program to organize and analyze numbers, data and labels in spreadsheet form. Excel makes it easy to translate data

More information

How to Rescue a Deleted File Using the Free Undelete 360 Program

How to Rescue a Deleted File Using the Free Undelete 360 Program R 095/1 How to Rescue a Deleted File Using the Free Program This article shows you how to: Maximise your chances of recovering the lost file View a list of all your deleted files in the free Restore a

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

Homework 1 Excel Basics

Homework 1 Excel Basics Homework 1 Excel Basics Excel is a software program that is used to organize information, perform calculations, and create visual displays of the information. When you start up Excel, you will see the

More information

Excel 2007/2010. Don t be afraid of PivotTables. Prepared by: Tina Purtee Information Technology (818)

Excel 2007/2010. Don t be afraid of PivotTables. Prepared by: Tina Purtee Information Technology (818) Information Technology MS Office 2007/10 Users Guide Excel 2007/2010 Don t be afraid of PivotTables Prepared by: Tina Purtee Information Technology (818) 677-2090 tpurtee@csun.edu [ DON T BE AFRAID OF

More information