LECTURE 10. SPREADSHEET

Size: px
Start display at page:

Download "LECTURE 10. SPREADSHEET"

Transcription

1 LECTURE 10. SPREADSHEET Those who excel in virtue have the best right of all to rebel, but then they are of all men the least inclined to do so. Aristotle S.M. Sitompul (2016 version) MODULE OVERVIEW Part 1 What is A Spreadsheet? Part 2 Gaining Proficiency: Copying and Formatting Part 3 Using Formulas & Functions Part 4 Graphs and Charts: Delivering A Message 1

2 Part 1 What is A Spreadsheet? LEARNING OUTCOMES After the completion of the lecture and mastering the lecture materials, students should be able to 1. Describe what a spreadsheet is and potential applications 2. Distinguish between a formula and a constant 3. Open, save, print a workbook; insert and delete rows and columns 4. Use Page Setup to print worksheet and preview before printing 2

3 DEFINITION 1. A spreadsheet is a program that allows you to use data to forecast, manage, predict, and present information. 2. A spreadsheet is an electronic document in which data is arranged in the rows and columns of a grid and can be manipulated and used in calculations 3. A spreadsheet is a computer program that calculates numbers and organizes information in columns and rows 4. A spreadsheet is a document that has columns and rows which are used to calculate numbers and organize information 5. A spreadsheet is a document that stores data in a grid of horizontal rows and vertical columns. 6. A spreadsheet application is a computer program such as Excel, OpenOffice Calc, or Google Docs Spreadsheets. 7. Excel is an electronic spreadsheet program that can be used for storing, organizing and manipulating data. 8. Excel is spreadsheet software that lets you create tables, and calculate and analyze data. 3

4 SPREADSHEET BASICS Cell - the intersection of a row and column form a cell in a spreadsheet. Cell references - each cell has a unique address or reference such as A9 (cell located at column A and row 9). Rows run horizontally in an Excel worksheet, and each row is identified by a number in the row header. Columns run vertically in a worksheet, and each column is identified by a letter in the column header starting with Column A and running through to Column XFD. 4

5 Constant - an entry that does not change and may be numeric or descriptive text. Formula - a combination of numeric constants, cell references, arithmetic operators, and/or functions that produces a new value from existing values. Function - a predefined computational task or calculation. A worksheet is an Excel spreadsheet A workbook contains one or more worksheets The Ribbon Replaces the previous Menu Bar and Tool Bar The Office Button-Save, Open and Print commands Modifying the Worksheet 1. Insert Command To add individual cells, rows or columns 5

6 Modifying the Worksheet 2. Delete Command To delete individual cells, rows or columns Modifying the Worksheet 3. Page Setup Dialogue Box Page, Margins, Header/Footer, and Sheet Tabs Click the Dialogue Box Launcher at the Page Setup Frame of the Page Layout Tab 6

7 Part 2 Gaining Proficiency: Copying and Formatting LEARNING OUTCOMES After the completion of the lecture and mastering the lecture materials, students should be able to Define, select and deselect cell ranges Differentiate between relative, absolute and mixed addresses Format a worksheet Change column widths 7

8 Getting around the Worksheet Range Range Range - rectangular group of cells, which are specified by indicating the diagonally opposite corners. Getting around the Worksheet Absolute reference - a reference that does not change when copied. It is specified with a dollar sign in front of both the row and column ($A$1). Relative reference - a reference that adjusts during a copy operation and is specified without dollar signs (A1). Mixed reference - a reference that adjusts either the row or column reference but not both. It is specified with a single dollar sign ($A1 or A$1). 8

9 Getting around the Worksheet Relative Reference for Cell E5 = C5-D5 Cell E6 = C6-D6 Cell E7 = C7-D7 etc Absolute Reference for Cell F5 = D6*$B$15 Cell F6 = D6*$B$15 Cell F7 = D7*$B$15 etc Excel 2007 Formatting Select a row and move your cursor to the row s border to use the row height handler. Right-click a row to access the Row Height attribute. Row height - the height of a row in a worksheet. The row height changes automatically as the font size changes. 9

10 Row height - the height of a row in a worksheet. The row height changes automatically as the font size changes. Double- click the row height handler so that the row height is the minimum height that can make the row s cells content visible vertically. Column width - the width of a worksheet column can be changed the same way that row height can be changed. Excel 2007 Formatting Format Cells Dialog Box The most commonly used formatting commands are available as buttons at the Home tab or by right-clicking the cell to be formatted. 10

11 Excel 2007 Formatting Number tab enables you to specify the type of value contained in a cell and how it should be displayed. Alignment tab - you may align text within the cells either horizontally or vertically and then choose left, center, right, justify or centered. Fonts tab you may format the size, colour, style, and font family to be used. Border tab - enables you to create a border around a cell or range. Fill tab - lets you choose a different color to shade the cell or range The Number Tab in the Format Cells Dialogue Box General - the default format for numeric entries and displays the way it was entered. Number - displays a number without the thousands separator comma and with any number of decimal places. Currency - displays a number with the 1000 separator comma and an optional dollar sign and negative values (in red or minus sign). Accounting - displays a number with the thousand separation, optional dollar sign (leftmost aligned) negative values in ( ) and zero values as hyphens. Date - displays a date in various date formats. 11

12 The Number Tab in the Format Cells Dialogue Box Time - displays the time in various time formats. Percentage - the number is multiplied by 100 before is displayed with a % sign. Fraction - displays a number as a fraction such as ¼. Scientific - displays a number as a decimal followed by the exponent of base 10. Text - left aligns the entry; useful for numbers that are not used in calculations such as zip codes. Special - displays a number with extra characters such as ( ) around a phone number area code. Custom - allows you to develop your own formats. Part 3 Using Formulas & Functions 12

13 LEARNING OUTCOMES 1. Write simple formula for basic calculations 2. Use existing function of Excel : SUM AVERAGE MAX MIN PMT function Use Goal Seek 3. Create, view and print large spreadsheets Formulas A formula is an entry that performs calculation The result of the calculation is displayed in the cell containing the formula A formula always begin with an = (equal) sign, which defines it as a numeric entry In a formula that contains more than one operator, Excel performs the calculation in a specific order or precedence. Formula = 5*4 3 = 17 Formula = 5*(4 3) = 5 13

14 Formulas The values on which a numeric formula performs a calculation are called operands (numbers, cell references). Formulas use the following arithmetic operators to specify the type of numeric operation to perform : + for addition - for subtraction / for division * for multiplication ^ for exponentiation &??? Formulas Let say we have a range of cells (B1 B10) with value (1 10). To get the total (add all value in cell B1 to B10), we can just simply write down a formula in B11 as follow B11=B1+B2+B3+B4+B5+B6+B7+B8+B9+B10 14

15 Functions Functions are built-in formulas that perform certain types of calculations automatically The syntax or rules of structure for entering all functions is = Function name(argument1, argument2, ) Common functions are : =SUM() Total of arguments =AVERAGE() Average of arguments =MAX() Maximum value in argument =MIN() Minimum value in argument Functions (SUM) Let say we have a range of cells (B1 B10) with value (1 10). To get the total (add all value in cell B1 to B10), we can just simply write down a formula in B11 which is quite lengthy = B1+B2+B3+B4+B5+ B6+B7+B8+B9+B10 Using functions =SUM(), we can just use a simpler formula which is =SUM(B1:B10) 15

16 Functions (AVERAGE) Let say we have a range of cells (B1 B10) with value (1 10). To get the average value ( / 10 = 5.5) in an array of numbers we can use the =AVERAGE() function, which is =AVERAGE (B1:B10) Functions (MAX & MIN) Let say we have a range of cells (B1 B10) To get the MAX or MIN value in an array of numbers we can use the =MAX() or MIN() function, which =MAX(B1:B10) = 10 is =MIN(B1:B10) = 1 16

17 Functions (PMT) Calculates the payment for a loan based on constant payments and a constant interest rate Syntax PMT(rate,nper,pv,fv,type) Rate is the interest rate for the loan. nper is the total number of payments for the loan. pv is the present value, or the total amount that a series of future payments is worth now; also known as the principal. fv is the future value, or a cash balance you want to attain after the last payment is made. If fv is omitted, it is assumed to be 0 (zero), that is, the future value of a loan is 0. Type is the number 0 (zero) or 1 and indicates when payments are due [made at the start (1) or the end of the period (0)]. PMT(rate,nper,pv,fv,type) A2/12: Rate is the interest rate for the loan. A3: nper is the total number of payments for the loan. A4: pv is the present value, or the total amount that a series of future payments is worth now; also known as the principal. 17

18 What-If Analysis The real power in Excel lies in its ability to perform multiple mathematical calculations for you. One of the tools in Excel that you can use to perform these calculations is a Data tool called what-if analysis. What-if analysis allows you to see the effect different values have in formulas. Have you ever thought, "What interest rate do I need to qualify for to have a car payment of $400 on the car I want?" This question can be answered using what-if analysis. Example You need a loan to buy a new car, and you know how much money you want to borrow ($20,000 ) how long of a period of time you want to take to pay off the loan (the term, 60 months), and what payment you can afford to make each month. What you need to know is what interest rate you need to qualify for to make the payment $400 per month. If you didn t have interest, the $20,000 is just divided by 60 monthly payments = $ per month. The what-if analysis tool will allow you to easily calculate the interest rate. 18

19 No interest Managing a Large Worksheet Scrolling shows specific rows and columns Freezing Panes keeps headings in sight AutoFill capability enter series into adjacent cells Repeat specific rows as headings for printouts 19

20 Freeze Panes 1. Select the first row below the rows that should be frozen (Row 5). 2. At the View tab, click on Freeze Panes. 3. Rows 1-4 are frozen and visible no matter how far you scroll. AutoFill Handler 1. Select the cells that can 1. Select the cells that can specify the pattern of the succeeding cells. 2. Drag the fill handler until it previews the last of the required value. You can move the handler back and forth. 3. Release the fill handler when you re done. 20

21 Printing Repeating Rows If a worksheet spans more than one page, you can print row and column headings or labels (also called print titles) on every page to ensure that the data is properly labelled. 1. Select the worksheet that you want to print. 2. On the Page Layout tab, in the Page Setup group, click Print Titles. 3. On the Sheet tab, under Print titles, do one or both of the following: - In the Rows to repeat at top box, type the reference of the rows that contain the column labels. - In the Columns to repeat at left box, type the reference of the columns that contain the row labels. For example, if you want to print column labels at the top of every printed page, you could type $1:$1 in the Rows to repeat at top box. 1. Launch the Page 1. Launch the Page Setup Dialogue Box. 2. At the Sheet tabs, specify the rows to be repeated. $1:$4 specifies Rows 1 to 4 3. Press OK. 21

22 Bird animation source: Spreadsheet Basics The spreadsheet is the microcomputer application that is most widely used by managers and executives (i.e. a computerized ledger) Annual Report with Graph can be created easily with Excel 22

23 23

Part 1. Module 3 MODULE OVERVIEW. Microsoft Office Suite. Objectives. What is A Spreadsheet? Microsoft Excel

Part 1. Module 3 MODULE OVERVIEW. Microsoft Office Suite. Objectives. What is A Spreadsheet? Microsoft Excel Module 3 MODULE OVERVIEW Part 1 What is A Spreadsheet? Part 2 Gaining Proficiency: Copying and Formatting Microsoft Office Suite Microsoft Excel Part 3 Using Formulas & Functions Part 4 Graphs and Charts:

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

Excel. Tutorial 1 Getting Started with Excel. Tutorial 2 Formatting a Workbook. Tutorial 3 Working with Formulas and Functions COMPREHENSIVE

Excel. Tutorial 1 Getting Started with Excel. Tutorial 2 Formatting a Workbook. Tutorial 3 Working with Formulas and Functions COMPREHENSIVE Excel Tutorial 1 Getting Started with Excel Tutorial 2 Formatting a Workbook Tutorial 3 Working with Formulas and Functions COMPREHENSIVE Excel Tutorial 1 Getting Started with Excel COMPREHENSIVE Objectives

More information

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India Excel Working with Formulas and Functions Using Relative References Using Absolute References Using Mixed References Entering Relative, Absolute, and Mixed References To enter a relative reference, type

More information

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

More information

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting Microsoft Excel 2010 Chapter 2 Formulas, Functions, and Formatting Objectives Enter formulas using the keyboard Enter formulas using Point mode Apply the AVERAGE, MAX, and MIN functions Verify a formula

More information

The Menu and Toolbar in Excel (see below) look much like the Word tools and most of the tools behave as you would expect.

The Menu and Toolbar in Excel (see below) look much like the Word tools and most of the tools behave as you would expect. Launch the Microsoft Excel Program Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are lettered and rows, and are numbered.

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

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2007: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2007. After an introduction to spreadsheet terminology and Excel's

More information

Exploring Microsoft Office Excel 2007

Exploring Microsoft Office Excel 2007 Exploring Microsoft Office Excel 2007 Chapter 1: Introduction to Excel What Can I Do with a Spreadsheet Objectives Define worksheets and workbooks Use spreadsheets across disciplines Plan for good workbook

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

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

Microsoft Excel Important Notice

Microsoft Excel Important Notice Microsoft Excel 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

MS Excel Henrico County Public Library. I. Tour of the Excel Window

MS Excel Henrico County Public Library. I. Tour of the Excel Window MS Excel 2013 I. Tour of the Excel Window Start Excel by double-clicking on the Excel icon on the desktop. Excel may also be opened by clicking on the Start button>all Programs>Microsoft Office>Excel.

More information

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2010. After an introduction to spreadsheet terminology and Excel's

More information

MS Excel Henrico County Public Library. I. Tour of the Excel Window

MS Excel Henrico County Public Library. I. Tour of the Excel Window MS Excel 2013 I. Tour of the Excel Window Start Excel by double-clicking on the Excel icon on the desktop. Excel may also be opened by clicking on the Start button>all Programs>Microsoft Office>Excel.

More information

Formulas and Functions

Formulas and Functions Formulas and Functions Excel's Golden Rule (Dan Bricklin and Bob Frankston) Excel's Golden Rule: If formula input data can change, put it in cell and refer to it with cell references. If data will not

More information

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes Unit 12 Electronic Spreadsheets - Microsoft Excel Desired Outcomes Student understands Excel workbooks and worksheets Student can navigate in an Excel workbook and worksheet Student can use toolbars and

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

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

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

The Parts of a Function:

The Parts of a Function: The Parts of a Function: Each function has a specific order, called syntax, which must be strictly followed for the function to work correctly. Syntax Order: 1. All functions begin with the = sign. 2.

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

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

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Introduction to Microsoft Excel Parts of the Screen

Introduction to Microsoft Excel Parts of the Screen Introduction to Microsoft Excel Parts of the Screen UNIT OUTCOME: Students will be able to use a spreadsheet to record, organize, and format text and numerical data. Define the Term Spreadsheet: A spreadsheet

More information

Business Spreadsheets

Business Spreadsheets COURSE 6411 Computer Applications I Unit B COMPETENCY 4.00 B2 25% OBJECTIVE 4.01 B2 20% Software Applications for Business Understand spreadsheets, charts, and graphs used in business. Understand spreadsheets

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

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

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

Excel 2013 Workshop. Prepared by

Excel 2013 Workshop. Prepared by Excel 2013 Workshop Prepared by Joan Weeks Computer Labs Manager & Madeline Davis Computer Labs Assistant Department of Library and Information Science June 2014 Excel 2013: Fundamentals Course Description

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Introduction to Excel 2013 Part 2

Introduction to Excel 2013 Part 2 Introduction to Excel 2013 Part 2 Open a file Select File from the Menu bar, select Open from the drop down menu, navigate to the place where the file was stored, double-left click on the file name. Modify

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

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

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

Introduction to Computer Applications CISY Zahoor Khan, Ph.D.

Introduction to Computer Applications CISY Zahoor Khan, Ph.D. Introduction to Computer Applications CISY 1225 Zahoor Khan, Ph.D. Last updated: May 2014 CISY 1225 Custom book Chapter 5 Introduction to Excel Copyright 2011 Pearson Education, Inc. Publishing as Prentice

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Excel 2013 Quick Start Guide The Excel Window File Tab: Click to access actions like Print, Save As, etc. Also to set Excel options. Ribbon: Logically organizes actions onto Tabs, Groups, and Buttons to

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

Quick Reference Guide for Microsoft Excel 2007

Quick Reference Guide for Microsoft Excel 2007 Quick Reference Guide for Microsoft Excel 2007 Microsoft Excel is a powerful spreadsheet application consisting of Columns that are identified by Letters (A XFD) and Rows that are identified by Numbers

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

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 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

Excel 2007 Intermediate Table of Contents

Excel 2007 Intermediate Table of Contents Table of Contents Working with Data... 1 Subtotals... 1 Removing Subtotals... 2 Grouping Columns or Rows... 2 Ungrouping Data... 3 AutoCalculate Customize Status Bar... 3 Format as Table Filters and Sorting...

More information

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007)

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) 1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) 2 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) TABLE OF CONTENTS CHAPTER 1: GETTING STARTED... 5 THE EXCEL ENVIRONMENT...

More information

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi MICROSOFT EXCEL Prepared By: Amna Alshurooqi Hajar Alshurooqi Lesson 1 BIS 202 1. INTRODUCTION Microsoft Excel is a spreadsheet application used to perform financial calculations, statistical analysis,

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

Excel Basics. TJ McKeon

Excel Basics. TJ McKeon Excel Basics TJ McKeon What is Excel? Electronic Spreadsheet in a rows and columns layout Can contain alphabetical and numerical data (text, dates, times, numbers) Allows for easy calculations and mathematical

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

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

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

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

Microsoft Excel Tutorial for Chapter 4 TIE-into Practice Exercises

Microsoft Excel Tutorial for Chapter 4 TIE-into Practice Exercises Integrating Educational Technology into Teaching (4 th Edition) M. D. Roblyer University of Maryland University College Microsoft Excel Tutorial for Chapter 4 TIE-into Practice Exercises Created by William

More information

Advanced Formulas and Functions in Microsoft Excel

Advanced Formulas and Functions in Microsoft Excel Advanced Formulas and Functions in Microsoft Excel This document provides instructions for using some of the more complex formulas and functions in Microsoft Excel, as well as using absolute references

More information

DAY 12: MICROSOFT EXCEL (CHAPTER 8, 9, 10) Daksha Yadav September 25, 2013

DAY 12: MICROSOFT EXCEL (CHAPTER 8, 9, 10) Daksha Yadav September 25, 2013 DAY 12: MICROSOFT EXCEL (CHAPTER 8, 9, 10) Daksha Yadav daksha.yadav@mail.wvu.edu September 25, 2013 1 ANNOUNCEMENTS Homework #3 due on Friday, 27 th Homework Help Live! for HW #3 tomorrow HW #1 grades

More information

Spreadsheet Software

Spreadsheet Software Spreadsheet Software Objectives: Working with Spreadsheets Enhancing Productivity Using the Application Open, close a spreadsheet application. Open, close documents. Create a new spreadsheet based on default

More information

Activity 1 Creating a simple gradebook

Activity 1 Creating a simple gradebook Activity 1 Creating a simple gradebook 1 Launch Excel to start a new spreadsheet a. Click on the Excel icon to start a new workbook, either from the start menu, Office Toolbar, or an Excel icon on the

More information

EXCEL 2010 PROCEDURES

EXCEL 2010 PROCEDURES EXCEL 2010 PROCEDURES Starting Excel 1 Click the Start 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Excel 2010 Naming and Saving (Ctrl+S) a Workbook 1 Click File 2 Click

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

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

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 Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel Module 1 Contents Chapter 1: Introduction to Microsoft Excel The Microsoft Excel Screen...1-1 Moving the Cursor...1-3 Using the Mouse...1-3 Using the Arrow Keys...1-3 Using the Scroll Bars...1-4 Moving

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 Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

More information

Microsoft Excel for Lawyers - The Fundamentals Reference Guide

Microsoft Excel for Lawyers - The Fundamentals Reference Guide Microsoft Excel for Lawyers - The Fundamentals Reference Guide This guide includes step by step procedures for fundamental Excel commands and accompanies the Microsoft Excel for Lawyers -The Fundamentals

More information

Excel 2016 Basics for Mac

Excel 2016 Basics for Mac Excel 2016 Basics for Mac Excel 2016 Basics for Mac Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn from

More information

CALCULATE NPV USING EXCEL

CALCULATE NPV USING EXCEL CALCULATE NPV USING EXCEL Identify major components of the Excel window Excel is a computerized spreadsheet, which is an important business tool that helps you report and analyze information. Excel stores

More information

ECDL Module 4 REFERENCE MANUAL

ECDL Module 4 REFERENCE MANUAL ECDL Module 4 REFERENCE MANUAL Spreadsheets Microsoft Excel XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 4 (USING MICROSOFT EXCEL XP) - MANUAL 4.1 USING THE APPLICATION... 4 4.1.1 FIRST STEPS

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

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

Tips & Tricks: MS Excel

Tips & Tricks: MS Excel Tips & Tricks: MS Excel 080501.2319 Table of Contents Navigation and References... 3 Layout... 3 Working with Numbers... 5 Power Features... 7 From ACS to Excel and Back... 8 Teacher Notes: Test examples

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

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

Introduction to MS Excel Management Information Systems

Introduction to MS Excel Management Information Systems Introduction to MS Excel 2007 Management Information Systems 1 Overview What is MS Excel? Functions. Sorting Data. Filtering Data. Data Form. Data Validation. Create charts in Excel. Formatting Cells.

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

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

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

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

Making EXCEL Work for YOU!

Making EXCEL Work for YOU! Tracking and analyzing numerical data is a large component of the daily activity in today s workplace. Microsoft Excel 2003 is a popular choice among individuals and companies for organizing, analyzing,

More information

Open Office Calc (Spreadsheet) Tutorial

Open Office Calc (Spreadsheet) Tutorial Open Office Calc (Spreadsheet) Tutorial Table of Contents Introduction...3 What is a Spreadsheet?...3 Starting OpenOffice Calc...3 OpenOffice Calc (Spreadsheet) Basics...4 Creating a New Document...5 Entering

More information

Working with Formulas and Functions

Working with Formulas and Functions Microsoft Excel 20032003- Illustrated Introductory Working with Formulas and Functions Objectives Create a formula with several operators Use names in a formula Generate multiple totals with AutoSum Use

More information

Unit 2785 (V7) Create a computer spreadsheet to provide a solution for organisation use. w ith. Microsoft Excel 2010

Unit 2785 (V7) Create a computer spreadsheet to provide a solution for organisation use. w ith. Microsoft Excel 2010 Student Workbook Unit 2785 (V7) Create a computer spreadsheet to provide a solution for organisation use w ith Microsoft Excel 2010 Easy to follow Step-by-step instructions Covers Unit Standard Criteria

More information

Spreadsheet Management Software Cases. Evaluate the effectiveness of an e-commerce company s Web site and advertising sites

Spreadsheet Management Software Cases. Evaluate the effectiveness of an e-commerce company s Web site and advertising sites 31 Spreadsheet Case 2 Athena Beauty Products Problem: Management skills: Excel skills: File: Evaluate the effectiveness of an e-commerce company s Web site and advertising sites Analyzing Organizing Formulas

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

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 Contents Starting Excel... 2 Excel Window Properties... 2 The Ribbon... 3 Tabs... 3 Contextual Tabs... 3 Dialog Box Launchers... 4 Galleries... 5 Minimizing the Ribbon... 5 The

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

Chapter 13 Creating a Workbook

Chapter 13 Creating a Workbook Chapter 13 Creating a Workbook Learning Objectives LO13.1: Understand spreadsheets and Excel LO13.2: Enter data in cells LO13.3: Edit cell content LO13.4: Work with columns and rows LO13.5: Work with cells

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Create formulas in Excel

Create formulas in Excel Training Create formulas in Excel EXERCISE 1: TYPE SOME SIMPLE FORMULAS TO ADD, SUBTRACT, MULTIPLY, AND DIVIDE 1. Click in cell A1. First you ll add two numbers. 2. Type =534+382. 3. Press ENTER on your

More information

Introduction to Microsoft Excel 2010 Quick Reference Sheet

Introduction to Microsoft Excel 2010 Quick Reference Sheet Spreadsheet What is a spreadsheet? How is Excel 2010 different from previous versions? A grid of rows and columns that help to organize, summarize and calculate data. Microsoft Excel 2010 is built on the

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

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

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

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the Show All About spreadsheets You can use a spreadsheet to enter and calculate data. A spreadsheet consists of columns and rows of cells. You can enter data directly into the cells of the spreadsheet and

More information

Workbooks & Worksheets. Getting Started. Formatting. Formulas & Functions

Workbooks & Worksheets. Getting Started. Formatting. Formulas & Functions 1 Getting Started Cells Workbooks & Worksheets Formatting Formulas & Functions Chart Printing 2 Getting Started Start a spreadsheet program Recognize the spreadsheet screen layout Use the ribbon,quick

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

Excel Tutorial 1

Excel Tutorial 1 IT٢.we Excel 2003 - Tutorial 1 Spreadsheet Basics Screen Layout Title bar Menu bar Standard Toolbar Other Tools Task Pane Adding and Renaming Worksheets Modifying Worksheets Moving Through Cells Adding

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

Links to Activities ACTIVITY 3.1. Links to Activities

Links to Activities ACTIVITY 3.1. Links to Activities EXCEL Using Functions, Setting Print Options, and Adding Visual Elements Section 3 0 1 2 Skills Create AVERAGE, formulas to perform statistical analysis Create TODAY, NOW, and DATE formulas Create PMT

More information