INFORMATION SHEET 24002/1: AN EXCEL PRIMER

Size: px
Start display at page:

Download "INFORMATION SHEET 24002/1: AN EXCEL PRIMER"

Transcription

1 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 basic type your data in here and write the number that appears here. It is not specifically oriented towards the road construction industry, and if you wish to practice what you have learnt, you should use your own data and calculations as an example. What is a Spreadsheet? A spreadsheet is an electronic piece of paper containing tables of figures for such things as budgets, cash books, inventories etc; anywhere where rows and columns of data and figures are required. A spreadsheet is a computerised worksheet laid out in columns and rows. You type in column and row headings, then simply fill in the numbers you want in each row. Instead of using a calculator you now tell the program the calculations you want performed. The chart below took about 1/10 of a second to calculate. A spreadsheet is therefore a computerised version of your calculator with more power. Simple budget planners are a good example. Budget Planner Monthly Expenses Jan Feb March April May June TOTAL Fixed ,768 Variable ,891 Sundry ,828 Total Expenses 1,607 1,758 1,818 1,358 1,818 1.,128 9,487 Income Fixed 3,120 3,120 3,120 3,120 3,120 3,120 18,720 Variable Total Income 3,190 3,195 3,170 3,220 3,270 3,180 19,255 Total Savings 1,583 1,437 1,352 1,862 1,452 2,052 9,738

2 On the simple spreadsheet on the previous page there are a number of calculations: To find the total amount of savings, you would have to: add together the fixed, variable and sundry expenses for each month to find the total expenses add together the fixed and variable incomes, for each month, in order to find the total income subtract the total income from the total expenses, for each month, in order to find the total savings That is 26 calculations so far involving 90 numbers! Let s imagine you get a pay rise and so your fixed income has increased, but so does your rent! With a calculator, the calculations would have to be done all over again from the start. This is the greatest benefit of a spreadsheet - alter one figure and the spreadsheet will automatically recalculate. The ability to recalculate (at lightning speed) gives spreadsheets an advantage that paper and pencil will never have. A spreadsheet allows you to: create electronic worksheets by typing in headings, numbers and calculations calculate answers to problems involving numbers automatically recalculate the answers if any numbers are changed view your worksheet on the computer screen and print it view and print graphs illustrating your figures Spreadsheets may be used for: laboratory calculations test method results budget and forecast analysis sales and profit projections personnel records analysis stock control job cost estimates Page 2 of 10

3 Parts of a spreadsheet Formula bar Active cell Active cell name The basic parts of the spreadsheet are: Row a horizontal line of cells; they are represented by numbers listed down the left hand side of the screen Column a vertical line of cells. They are represented by letters listed across the top of the screen Cell the basic unit of the spreadsheet, which is designed to hold one piece of information. You identify the cell by the letter of the column and the number of the row that the cell is in, for example A1. Active cell the cell is outlined with a thicker box for you to see more readily; this is cell you can enter data in or edit existing data. Formula bar displays what is entered in the active cell, which in the case of a formula is not what is displayed in the cell Spreadsheets are very large. They have more than a million rows and columns!!! Who would create a spreadsheet needing so much space your guess is as good as ours! Data entry Data entry is the process of entering data into individual cells. When data is keyed in, it is shown on the formula bar. When you press Tab, Enter or any Arrow key from the keyboard, the data is then shown in the active cell of the worksheet. Page 3 of 10

4 There are a number of types of information that can be entered into a cell: Text allows you to enter names onto the columns, and headings onto the worksheet and meaning into the whole spreadsheet Numbers fairly obviously, since this is a calculation program Formulae an expression indicating the way in which you want numeric data to be manipulated, e.g. =B5+G4 means you want to add together the contents of Cell B5 and G4. Function a special type of formula, e.g. =AVERAGE(A1:B2) means that the average of the values in all those cells A1, A2, B1 and B2, called a range indicated by the first (top left) and last (bottom right) cells separated by a colon is calculated and displayed in the cell The spreadsheet determines which data type is being entered by the first keystroke of the cell entry. If the first keystroke is not a equals (=) sign, then the computer assumes it is not a formula, but ordinary text. When you highlight a row or a column by clicking in the coloured area to the left or top indicating the row or column name, be aware you are highlighting many more cells than what you can see. To move around a spreadsheet you can use the keyboard arrows (located at the bottom right of your keyboard). You can also use the scroll bars, as in the word processor. Why use a spreadsheet? People use spreadsheets because the computer can calculate things faster and it is very simple to update a spreadsheet if it has been designed correctly. The most important thing to remember about spreadsheets is that you use cell references (i.e. A3) in calculations rather than typing in actual numbers (i.e. the number 3). For example look at the very simple spreadsheet below that adds two numbers together. A B C D = =A2+B2 3 Both answers that would be displayed in column C would be the same. However the correct way is the formula in row 2, because if the numbers in column A or B change, the answer would automatically change. Page 4 of 10

5 EXERCISE 1. USING CELL REFERENCES IN FORMULAE 1. Type in the simple spreadsheet above into the blank spreadsheet you currently have open. (You can use the set of four arrows on your keyboard to move from cell to cell, or move your mouse over the cell you want to type in and left-click.) 2. Now change cell A1 and A2 to the number 6, and press Enter. (Notice that cell C2 changes to the new correct answer but cell C1 doesn t) Mathematics in Excel The table below shows how to use the basic mathematical operations on two numbers in two different cell locations. In the example used, the number 40 is in cell C6 and the number 10 is in cell D6. Operation Symbol Formulae Result Addition + = C6 + D6 = = 50 Subtraction - = C6 - D6 = = 30 Multiplication * = C6 * D6 = 40 * 10 = 400 Division / = C6 / D6 = 40 / 10 = 4 Mathematical expressions are calculated in a specific order based on the type of operation being performed and symbols, such as brackets. This order is the same as those used by people doing any type of calculation, by calculators and by all computer spreadsheet packages: 1. Brackets ( ) 2. Exponential (eg. 4 2 or m 3 ) 3. Multiplication & division 4. Addition & subtraction That is, all the calculations in brackets are done first, followed by any multiplication and division, before any addition and subtraction. Page 5 of 10

6 Formula Answer Explanation = * and 2 are multiplied first ( giving 8 ) then 5 is added (giving 13) = (5 + 3) * and 4 are added first ( giving 9 ) then multiplied by 2 (giving 18) = 5 * 4 / 2 10 Both multiplication & division have the same order so calculation is done from left to right. This answer is the same if the division was done first then the multiplication. Formulae Formulae can be added to a spreadsheet to make it perform these calculations. A formula always begins with an equals (=) sign and typed into the active cell where you want the result to be placed in the spreadsheet. In spreadsheets, cell references are used instead of numbers, so the first formula in the above table would normally be typed as = A1 + B1 * C1 as shown below. A B C D = A1+B1*C1 2 3 EXERCISE 2. WRITING FORMULAE What would the formulae be for the other two calculations in the above table, using the cell references above? Answers at the end of the document. Functions Functions can sometimes be used as short cuts instead of using long or complex calculations. A function is a special type of formula. As with any formula, a function always begins with an equals (=) sign but uses an action word with a cell reference or range of cells in brackets. For example, to calculate the average of a set of values in the cell range A1 to B6 can be done by the formula =AVERAGE(A1:B6). This avoids the alternative way of calculating this =(A1+A2+A3+A4+A5+A6+B1+B2+B3+B4+B5+B6)/12 and also avoids the need to know how many values are in the set. Page 6 of 10

7 EXERCISE 3. USING FUNCTIONS Try this to demonstrate how functions are better than simple mathematical formulas. 1. Type the number 1 into the first six cells of column A. 2. In cell B1, type =AVERAGE(A1:A6). 3. In cell C1, type =(A1+A2+A3+A4+A5+A6)/6. Both formulas should read Now delete one of the 1s. The function-based formula should still display 1, but the addition-based one will display Some common functions are listed in the following table: Function Example SUM Adds a range of numbers together =SUM(A1:A10) AVERAGE MIN MAX Calculates the average number, from a range of numbers. The average is the sum of all the numbers divided by the number of numerical values in the range. Finds the smallest number in a range of numbers. Finds the largest number in a range of numbers. =AVERAGE(A1:A10) =MIN(A1:A10) =MAX(A1:A10) Functions can also be used in formulas with the mathematical operators (+ - * /) and numbers and cells. For example =B1*AVERAGE(A1:A5)+2.5. Occasionally, you might see ########## in a cell. This simply means that the column is too narrow to show all the data, and needs widening (explained later). Page 7 of 10

8 EXERCISE 4. CREATING A SIMPLE SPREADSHEET 1. Start Excel a blank worksheet will open up. 2. Enter the information (words & numbers) into the cells as shown in the figure right. 3. In cell B8, enter a formula which calculates the maximum value of the five data values. 4. In cell B9, enter a formula which calculates the minimum value of the five data values. 5. In cell B10, enter a formula which calculates the difference between the maximum and minimum values (called the range). 6. In cell B11, enter a formula which calculates the average value of the five data values. 7. In cell B12, enter a formula which is the equivalent of the equation shown below. 8. Save the spreadsheet, as it can be used to practice some other skills. A few things to note: some amount of the words Relative precision will have disappeared because the text was too wide to fit in column A when there was something in column B changing column width is covered below the number of decimal places in the Relative precision result (B12) is too many that too will be covered below the formula for the range in B10 could have been =MAX(A1:A5)-MIN(A1:A5) but since you had already calculated the maximum and minimum in B8 and B9 with those individual functions, typing them in again is a waste of time Changing the column width There are various ways to do this, but the simplest is to simply drag the right-hand margin of the column header where the letters are to the width you need. You can do similarly with the row height, but this is generally much less likely to be needed. EXERCISE 5 In the spreadsheet you created in Exercise 4, make column A wide enough to show all of the words fully. Page 8 of 10

9 Formatting text Formatting and aligning text in spreadsheets is basically the same as in word processing. Individual cells and text within cells can be formatted separately. Formatting numbers The most likely display options that you may need to use are controlling the number of decimal places and showing percentages. Both these are found in the Number part of the command ribbon (see right) or the Format Cells dialog (shown below). The quicker way is to use the ribbon buttons which are fairly self-explanatory. EXERCISE 6 In the spreadsheet created in Exercise 4, select % for the value calculated for the Relative precision. (a) What do you notice? (b) Remove the 100* from the formula. That problem is now corrected. (c) Change the number of decimals to 1. Page 9 of 10

10 Inserting rows and columns The simplest way to add an extra column (or row) is to click in the cell to the right (for a column) or below (for a row) where you want the addition to occur. Right click the mouse and choose Insert. Deleting rows and columns This is also done most simply by right-clicking, but this time it is the current row or column (not an adjacent one) that disappears. Always remember the Undo function! Charts Charts (normal people call them graphs) allow you to display the information from a spreadsheet in a graph. Charts will show a variety of trends and relationships, and may make understanding the data easier. Charts can then easily be placed into a report or into a word processing document. The unit Process and interpret data has three Information Sheets 5, 6 & 7 which cover graphing in some detail, and also certain aspects of the use of Excel for graphing. It is very simply to create a generic graph in Excel. Go to the Insert tab, highlight the data you want graphed and click on the graph type. Getting the formatting exactly as you might wish is then a matter of experimentation. Answers to Exercises 2. =(A1+B1)*C1 =A1*B1/C1 4. The two formulas that require more than just a function are those in B10 and B12: B10: =B8-B9 B12: =100* (0.5*B10)/B11 or =50*B10/B11 6. (a) a % symbol is added, but the value is 100 times too high, because using the % format automatically multiplies the value in the cell by 100, which your formula has done as well. Page 10 of 10

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

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Computer & Careers Mr. Lewis

Computer & Careers Mr. Lewis Microsoft Excel Unit A Computer & Careers Mr. Lewis Definitions: Spreadsheet Worksheet Workbook Formulas File Extension When you open a spreadsheet the default name is Is an application you use to perform

More information

Cell to Cell mouse arrow Type Tab Enter Scroll Bars Page Up Page Down Crtl + Home Crtl + End Value Label Formula Note:

Cell to Cell mouse arrow Type Tab Enter Scroll Bars Page Up Page Down Crtl + Home Crtl + End Value Label Formula Note: 1 of 1 NOTE: IT IS RECOMMENDED THAT YOU READ THE ACCOMPANYING DOCUMENT CALLED INTRO TO EXCEL LAYOUT 2007 TO FULLY GRASP THE BASICS OF EXCEL Introduction A spreadsheet application allows you to enter data

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

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

Kenora Public Library. Computer Training. Introduction to Excel

Kenora Public Library. Computer Training. Introduction to Excel Kenora Public Library Computer Training Introduction to Excel Page 2 Introduction: Spreadsheet programs allow users to develop a number of documents that can be used to store data, perform calculations,

More information

USING FORMULAS AND FUNCTIONS...

USING FORMULAS AND FUNCTIONS... 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... 7 Using a Simple

More information

Introduction to Excel

Introduction to Excel Office Button, Tabs and Ribbons Office Button The File menu selection located in the upper left corner in previous versions of Excel has been replaced with the Office Button in Excel 2007. Clicking on

More information

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY Table of Contents Table of Contents 1. Creating a Microsoft Excel Workbook...1 Starting Microsoft Excel...1 Creating a Workbook...2 Saving a Workbook...3 The Status Bar...5 Adding and Deleting Worksheets...6

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

Gloucester County Library System EXCEL 2007

Gloucester County Library System EXCEL 2007 Gloucester County Library System EXCEL 2007 Introduction What is Excel? Microsoft E x c e l is an electronic s preadsheet program. I t is capable o f performing many diff e r e n t t y p e s o f c a l

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

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

I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS...

I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS... EXCEL 2010 BASICS Microsoft Excel I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS... 6 The Mouse... 6 What Are Worksheets?... 6 What is a Workbook?...

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

COMPUTER TRAINING CENTER

COMPUTER TRAINING CENTER Excel 2007 Introduction to Spreadsheets COMPUTER TRAINING CENTER 1515 SW 10 th Avenue Topeka KS 66604-1374 785.580.4606 class@tscpl.org www.tscpl.org Excel 2007 Introduction 1 Office button Quick Access

More information

Contents. Spreadsheet Software ITQ Level 1

Contents. Spreadsheet Software ITQ Level 1 Contents SKILL SET 1 FUNDAMENTALS... 11 1 - SPREADSHEET PRINCIPLES... 12 2 - STARTING EXCEL... 13 3 - THE LAYOUT OF THE EXCEL SCREEN... 14 4 - THE RIBBON... 16 5 - THE WORKSHEET WINDOW... 18 6 - CLOSING

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 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Excel Simple Worksheets (with Functions)

Excel Simple Worksheets (with Functions) Excel 2007 Simple Worksheets (with Functions) Contents The Excel 2007 Window 4 Navigating in Excel... 7 Entering Data 8 Working with Ranges of Cells... 9 Selecting Ranges of Cells 9 Copy and Moving Cell

More information

ENTERING DATA & FORMULAS...

ENTERING DATA & FORMULAS... Overview NOTESOVERVIEW... 2 VIEW THE PROJECT... 5 NAVIGATING... 6 TERMS... 6 USING KEYBOARD VS MOUSE... 7 The File Tab... 7 The Quick-Access Toolbar... 8 Ribbon and Commands... 9 Contextual Tabs... 10

More information

A cell is highlighted when a thick black border appears around it. Use TAB to move to the next cell to the LEFT. Use SHIFT-TAB to move to the RIGHT.

A cell is highlighted when a thick black border appears around it. Use TAB to move to the next cell to the LEFT. Use SHIFT-TAB to move to the RIGHT. Instructional Center for Educational Technologies EXCEL 2010 BASICS Things to Know Before You Start The cursor in Excel looks like a plus sign. When you click in a cell, the column and row headings will

More information

Microsoft Office Excel

Microsoft Office Excel Microsoft Office 2007 - Excel Help Click on the Microsoft Office Excel Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

More information

Basic Excel 2010 Workshop 101

Basic Excel 2010 Workshop 101 Basic Excel 2010 Workshop 101 Class Workbook Instructors: David Newbold Jennifer Tran Katie Spencer UCSD Libraries Educational Services 06/13/11 Why Use Excel? 1. It is the most effective and efficient

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

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

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

Gloucester County Library System. Excel 2010

Gloucester County Library System. Excel 2010 Gloucester County Library System Excel 2010 Introduction What is Excel? Microsoft Excel is an electronic spreadsheet program. It is capable of performing many different types of calculations and can organize

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Select a Row or a Column Place your pointer over the Column Header (gray cell at the top of a column that contains a letter identifying the column)

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

Prepared By: Graeme Hilson. U3A Nunawading

Prepared By: Graeme Hilson. U3A Nunawading 0 Prepared By: Graeme Hilson U3A Nunawading - 2015 1 CONTENTS This Course Page 3 Reference Material Page 3 Introduction page 3 Microsoft Excel Page 3 What is a Spreadsheet Page 4 Excel Screen Page 4 Using

More information

Reference Services Division Presents. Excel Introductory Course

Reference Services Division Presents. Excel Introductory Course Reference Services Division Presents Excel 2007 Introductory Course OBJECTIVES: Navigate Comfortably in the Excel Environment Create a basic spreadsheet Learn how to format the cells and text Apply a simple

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

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

Open Learning Guide. Microsoft Excel Introductory. Release OL356v1

Open Learning Guide. Microsoft Excel Introductory. Release OL356v1 Guide Microsoft Excel 2013 Introductory Note: Microsoft, Excel and Windows are registered trademarks of the Microsoft Corporation. Release OL356v1 Contents SECTION 1 FUNDAMENTALS... 9 1 - SPREADSHEET PRINCIPLES...

More information

Contents. 1. Managing Seed Plan Spreadsheet

Contents. 1. Managing Seed Plan Spreadsheet By Peter K. Mulwa Contents 1. Managing Seed Plan Spreadsheet Seed Enterprise Management Institute (SEMIs) Managing Seed Plan Spreadsheet Using Microsoft Excel 2010 3 Definition of Terms Spreadsheet: A

More information

CUA Spreadsheets Laboratory

CUA Spreadsheets Laboratory CUA Spreadsheets Laboratory Microsoft Excel 97 Basic Introduction Excel is spreadsheet capable of storing tables of data and text values and providing a range. Most Microsoft Products have similar menu

More information

Lecture- 5. Introduction to Microsoft Excel

Lecture- 5. Introduction to Microsoft Excel Lecture- 5 Introduction to Microsoft Excel The Microsoft Excel Window Microsoft Excel is an electronic spreadsheet. You can use it to organize your data into rows and columns. You can also use it to perform

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

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar Microsoft Excel 2007 is a spreadsheet application in the Microsoft Office Suite. A spreadsheet is an accounting program for the computer. Spreadsheets are primarily used to work with numbers and text.

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

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 TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

More information

Using Formulas and Functions in Microsoft Excel

Using Formulas and Functions in Microsoft Excel Using Formulas and Functions in Microsoft Excel This document provides instructions for using basic formulas and functions in Microsoft Excel. Opening Comments Formulas are equations that perform calculations

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Manually adjust column width Place the pointer on the line between letters in the Column Headers. The pointer will change to double headed arrow. Hold

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

Excel Basics: Working with Spreadsheets

Excel Basics: Working with Spreadsheets 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.

More information

Lesson 1: Creating a Worksheet and a Chart Microsoft Excel 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO

Lesson 1: Creating a Worksheet and a Chart Microsoft Excel 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Lesson 1: Creating a Worksheet and a Chart Microsoft Excel 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Enter

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

Excel 2013 Part 2. 2) Creating Different Charts

Excel 2013 Part 2. 2) Creating Different Charts Excel 2013 Part 2 1) Create a Chart (review) Open Budget.xlsx from Documents folder. Then highlight the range from C5 to L8. Click on the Insert Tab on the Ribbon. From the Charts click on the dialogue

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

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

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

Using Basic Formulas 4

Using Basic Formulas 4 Using Basic Formulas 4 LESSON SKILL MATRIX Skills Exam Objective Objective Number Understanding and Displaying Formulas Display formulas. 1.4.8 Using Cell References in Formulas Insert references. 4.1.1

More information

Intermediate Microsoft Excel 2008

Intermediate Microsoft Excel 2008 Intermediate Microsoft Excel 2008 Table of Contents ADVANCED FORMATTING... 2 FORMATTING NUMBERS... 2 WRAPPING TEXT... 3 THE MERGE AND CENTER FUNCTIONS... 4 INSERTING COMMENTS... 5 FREEZE PANES... 6 INSERTING

More information

IFTA Staff Excel Training Manual

IFTA Staff Excel Training Manual IFTA Staff Excel Training Manual 1 INTRODUCTION Microsoft Excel is a program designed to create spreadsheets. A spreadsheet is a large sheet of squared paper where the squares can be used in calculation

More information

Excel Core Certification

Excel Core Certification Microsoft Office Specialist 2010 Microsoft Excel Core Certification 2010 Lesson 6: Working with Charts Lesson Objectives This lesson introduces you to working with charts. You will look at how to create

More information

Microsoft Office Illustrated. Getting Started with Excel 2007

Microsoft Office Illustrated. Getting Started with Excel 2007 Microsoft Office 2007- Illustrated Getting Started with Excel 2007 Objectives Understand spreadsheet software Tour the Excel 2007 window Understand formulas Enter labels and values and use AutoSum Objectives

More information

Excel Spreadsheets and Graphs

Excel Spreadsheets and Graphs Excel Spreadsheets and Graphs Spreadsheets are useful for making tables and graphs and for doing repeated calculations on a set of data. A blank spreadsheet consists of a number of cells (just blank spaces

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

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

More information

Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics. To apply number formatting:

Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics. To apply number formatting: Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics Formatting text and numbers In Excel, you can apply specific formatting for text and numbers instead of displaying all cell content

More information

Beginner s Guide to Microsoft Excel 2002

Beginner s Guide to Microsoft Excel 2002 Beginner s Guide to Microsoft Excel 2002 Microsoft Excel lets you create spreadsheets, which allow you to make budgets, track inventories, calculate profits, and design charts and graphs. 1. Open Start

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

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

Microsoft Excel 2010 Basics

Microsoft Excel 2010 Basics Microsoft Excel 2010 Basics Starting Word 2010 with XP: Click the Start Button, All Programs, Microsoft Office, Microsoft Excel 2010 Starting Word 2010 with 07: Click the Microsoft Office Button with the

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

Excel. module. Lesson 1 Create a Worksheet Lesson 2 Create and Revise. Lesson 3 Edit and Format

Excel. module. Lesson 1 Create a Worksheet Lesson 2 Create and Revise. Lesson 3 Edit and Format module 2 Excel Lesson 1 Create a Worksheet Lesson 2 Create and Revise Formulas Lesson 3 Edit and Format Worksheets Lesson 4 Print Worksheets Lesson 5 Modify Workbooks Lesson 6 Create and Modify Charts

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

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

M i c r o s o f t E x c e l A d v a n c e d. Microsoft Excel 2010 Advanced Microsoft Excel 2010 Advanced 0 Working with Rows, Columns, Formulas and Charts Formulas A formula is an equation that performs a calculation. Like a calculator, Excel can execute formulas that add, subtract,

More information

Excel Quick Reference Guide

Excel Quick Reference Guide Excel Quick Reference Guide CONTENTS Screen elements 3 Mouse shapes and actions 3 Cursor movement keys 4 Select a range using the keyboard 4 Edit cell contents 5 Select a range using the mouse 5 Sorting

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

Excel. Spreadsheet functions

Excel. Spreadsheet functions Excel Spreadsheet functions Objectives Week 1 By the end of this session you will be able to :- Move around workbooks and worksheets Insert and delete rows and columns Calculate with the Auto Sum function

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

More information

Text University of Bolton.

Text University of Bolton. Text University of Bolton. The screen shots used in this workbook are from copyrighted licensed works and the copyright for them is most likely owned by the publishers of the content. It is believed that

More information

SPREADSHEET (Excel 2007)

SPREADSHEET (Excel 2007) SPREADSHEET (Excel 2007) 1 U N I T 0 4 BY I F T I K H A R H U S S A I N B A B U R Spreadsheet Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative

More information

Formulas Learn how to use Excel to do the math for you by typing formulas into cells.

Formulas Learn how to use Excel to do the math for you by typing formulas into cells. Microsoft Excel 2007: Part III Creating Formulas Windows XP Microsoft Excel 2007 Microsoft Excel is an electronic spreadsheet program. Electronic spreadsheet applications allow you to type, edit, and print

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: Getting Started with Microsoft Excel

1: Getting Started with Microsoft Excel 1: Getting Started with Microsoft Excel The Workspace 1 Menu commands 2 Toolbars 3 Cell References 4 Cell Entries 4 Formatting 5 Saving and Opening Workbook Files 7 The Workspace Figure 1 shows the Microsoft

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

European Computer Driving Licence. Advanced Spreadsheet Software BCS ITQ Level 3. Syllabus Version 2.0

European Computer Driving Licence. Advanced Spreadsheet Software BCS ITQ Level 3. Syllabus Version 2.0 ECDL Advanced European Computer Driving Licence Advanced Spreadsheet Software BCS ITQ Level 3 Using Microsoft Excel 2010 Syllabus Version 2.0 This training, which has been approved by BCS, The Chartered

More information

A Tutorial for Excel 2002 for Windows

A Tutorial for Excel 2002 for Windows INFORMATION SYSTEMS SERVICES Writing Formulae with Microsoft Excel 2002 A Tutorial for Excel 2002 for Windows AUTHOR: Information Systems Services DATE: August 2004 EDITION: 2.0 TUT 47 UNIVERSITY OF LEEDS

More information

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012 Introductory Excel 2010 Walpole Public Schools Professional Development Day March 6, 2012 By: Jessica Midwood Agenda: What is Excel? How is Excel 2010 different from Excel 2007? Basic functions of Excel

More information

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office.

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office. Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start Choose: programs Choose : Microsoft Office Select: Excel *The interface of Excel program - Menu bar. - Standard bar.

More information

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems GCSE CCEA GCSE EXCEL 2010 USER GUIDE Business and Communication Systems For first teaching from September 2017 Contents Page Define the purpose and uses of a spreadsheet... 3 Define a column, row, and

More information

Section 8 Formatting

Section 8 Formatting Section 8 Formatting By the end of this Section you should be able to: Format Numbers, Dates & Percentages Change Cell Alignment and Rotate Text Add Borders and Colour Change Row Height and Column Width

More information

Microsoft Excel for Beginners

Microsoft Excel for Beginners Microsoft Excel for Beginners training@health.ufl.edu Basic Computing 4 Microsoft Excel 2.0 hours This is a basic computer workshop. Microsoft Excel is a spreadsheet program. We use it to create reports

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

Tutorial 1: Getting Started with Excel

Tutorial 1: Getting Started with Excel Tutorial 1: Getting Started with Excel Microsoft Excel 2010 Objectives Understand the use of spreadsheets and Excel Learn the parts of the Excel window Scroll through a worksheet and navigate between worksheets

More information

Exploring extreme weather with Excel - The basics

Exploring extreme weather with Excel - The basics Exploring extreme weather with Excel - The basics These activities will help to develop your data skills using Excel and explore extreme weather in the UK. This activity introduces the basics of using

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. The Beginner s Guide to Microsoft Excel Written by Sandy Stachowiak Published April 2018. Read the original article here: https://www.makeuseof.com/tag/beginners-guide-microsoftexcel/ This ebook is the

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

Spreadsheet Concepts: Creating Charts in Microsoft Excel

Spreadsheet Concepts: Creating Charts in Microsoft Excel Spreadsheet Concepts: Creating Charts in Microsoft Excel lab 6 Objectives: Upon successful completion of Lab 6, you will be able to Create a simple chart on a separate chart sheet and embed it in the worksheet

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

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

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

Functional Skills. Entry 3 to Level 2. Spreadsheets 2010 Version Information

Functional Skills. Entry 3 to Level 2. Spreadsheets 2010 Version Information Functional Skills Skills ICT Entry 3 to Level 2 YOU DO NOT NEED TO WORK THROUGH THIS. IT IS AN PACK TO TEACH YOU THE SKILLS NEEDED TO COMPLETE THE TASKS. YOU CAN USE IT WHILST WORKING THROUGH THE TASKS,

More information