Almost all spreadsheet programs are based on a simple concept: the malleable matrix.



Similar documents
Microsoft Excel 2010 Part 3: Advanced Excel

Basic Excel Handbook

Excel 2003 Tutorial I

Intro to Excel spreadsheets

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas

What is Microsoft Excel?

Excel 2007 Basic knowledge

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

Q&As: Microsoft Excel 2013: Chapter 2

Advanced Excel 10/20/2011 1

Basic Microsoft Excel 2007

Microsoft Excel 2010 Tutorial

The Center for Teaching, Learning, & Technology

Excel 2007 A Beginners Guide

Excel 2003 A Beginners Guide

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

Creating Basic Excel Formulas

Introduction to Microsoft Excel 1 Part I

Formulas & Functions in Microsoft Excel

Getting Started with Excel Table of Contents

Introduction to Microsoft Excel 2010

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Indiana County Assessor Association Excel Excellence

Excel Guide for Finite Mathematics and Applied Calculus

Preface of Excel Guide

Spreadsheet - Introduction

Creating a Gradebook in Excel

PA Payroll Exercise for Intermediate Excel

Analyzing Data Using Excel

How To Use Excel With A Calculator

Computer Training Centre University College Cork. Excel 2013 Level 1

Introduction to Excel

Excel 2010: Create your first spreadsheet

Excel Project Creating a Stock Portfolio Simulation

INTRODUCTION TO EXCEL

Sage Intelligence Report Designer Add-In

Microsoft Excel Understanding the Basics

Excel 2007: Basics Learning Guide

MICROSOFT ACCESS STEP BY STEP GUIDE

Microsoft Excel Tutorial

Spreadsheet. Parts of a Spreadsheet. Entry Bar

Microsoft Excel Tips & Tricks

Formulas & Functions in Microsoft Excel

Creating A Grade Sheet With Microsoft Excel

ROUND(cell or formula, 2)

Introduction to Microsoft Access 2003

An Introduction to Excel Pivot Tables

MICROSOFT EXCEL STEP BY STEP GUIDE

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Excel Using Pivot Tables

This activity will show you how to draw graphs of algebraic functions in Excel.

Introduction to Microsoft Excel 2007/2010

Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information.

Excel Using Pivot Tables

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

Merging Labels, Letters, and Envelopes Word 2013

Appendix 2.1 Tabular and Graphical Methods Using Excel

Microsoft Excel 2007 Mini Skills Overview of Tables

Performing Simple Calculations Using the Status Bar

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy

Microsoft Excel 2007 Level 2

Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11

Microsoft Access 2010 Overview of Basics

Excel Basics By Tom Peters & Laura Spielman

Excel Spreadsheets: Getting Started

Task Force on Technology / EXCEL

Working with Spreadsheets

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL

Excel Basics for Account Reconciliation

Working with Excel in Origin

Excel for Data Cleaning and Management

Microsoft Excel 2013: Headers and Footers

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS

MBA Quantitative Methods PC-Exercises Introductory Examples

Computer Training Centre University College Cork. Excel 2013 The Quick Analysis Tool

How to Use Excel for Law Firm Billing

Using Microsoft Excel 2010

ECDL / ICDL Spreadsheets Syllabus Version 5.0

How to Excel with CUFS Part 2 Excel 2010

Excel 2003 Tutorials - Video File Attributes

What is the difference between simple and compound interest and does it really matter?

Handout: How to Use Excel 2010

Microsoft Excel Training - Course Topic Selections

EXCEL SPREADSHEET MANUAL

Microsoft Office. Mail Merge in Microsoft Word

DESKTOP PRODUCTIVITY SOFTWARE

Microsoft Office Excel 2007 Key Features. Office of Enterprise Development and Support Applications Support Group

Excel Database Management Microsoft Excel 2003

TIPS FOR DOING STATISTICS IN EXCEL

Excel. Microsoft Office s spreadsheet application can be used to track. and analyze numerical data for display on screen or in printed

Essential Skills for Spreadsheets Microsoft Excel TR Leger Adult Literacy and Employment Preparation Program

Create a Poster Using Publisher

MODELLING. IF...THEN Function EXCEL Wherever you see this symbol, make sure you remember to save your work!

Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering

Notes on Excel Forecasting Tools. Data Table, Scenario Manager, Goal Seek, & Solver

A User Manual for Benefit Cost Analysis Using Microsoft Excel

Business Objects Version 5 : Introduction

Scientific Graphing in Excel 2010

Transcription:

MS EXCEL 2000 Spreadsheet Use, Formulas, Functions, References More than any other type of personal computer software, the spreadsheet has changed the way people do business. Spreadsheet software allows the user to take control of numbers,manipulating them in ways that would be difficult or impossible otherwise. A spreadsheet program can make short work of tasks that involve repetitivecalculations: budgeting, investment management, business projections, grade books, scientific simulations, checkbooks, and so on. A spreadsheet can also reveal hidden relationships between numbers, taking much of the guesswork out of financial planning and speculation. Almost all spreadsheet programs are based on a simple concept: the malleable matrix. Formulas and More Input : Data that is to be entered into a worksheet. Output: The information the worksheet is designed to generate Labels: Text used to identify (row or column) what the data/formula represents Data: The values (numbers, formulas, functions) that establish the working part of the spreadsheet Order of precedence: The rules for determining how to perform calculations containing multiple arithmetical operators Fill Handle: Small black square found at the lower right corner of the active cell. Identified when the pointer changes to a standard plus symbol when moved over the square. Relative cell reference: Cell reference which changes according to the location of the cell in which the reference occurs Error value: This is a special constant Excel enters when it cannot resolve a formula entry. There are seven different entry possibilities depending on the type of error. Absolute cell reference: Cell reference which remains fixed even if the cell in which the reference occurs is moved to a new location. Press the F4 key when selecting the cell. (i.e. $E$2) Copying: Duplicating the formula from one cell to another, with automatic adjustment of cell references to reflect the new cell address. Syntax: The correct ordering of the parts of a given function. Argument: The specific vales on which the function is to operate. Pointing Method: Entering cell references into formulas or functions by clicking on the cells rather than typing them. Test Values: Numbers to use in testing that will generate a known result. Extreme Values: Very small or large numbers used to observe their effect on formulas or functions. AutoFormat: A feature that allows you to change a worksheet s overall appearance by choosing from predefined formats. Order of Precedence for Mathematical Operations:

Order Operator Name first ^ Exponentiation second *,/ Multiplication, Division third +,- Addition, Subtraction The order of evaluation is from left to right, when two operators have equal precedence. Calculate the answers to the following problems: =2+3*4 14 =(2+3)*4 20 =2*2^2 8 =(2*2)^2 16 CELL VALUES: A1=10, B1=20, C1=3 =A1+B1*C1 70 =(A1+B1)*C1 90 =A1/B1+C1 3.5 =A1/(B1+C1).435 =A1/B1*C1 1.5 =A1/(B1*C1).16667 The ROUND function =ROUND(A1/(B1*C1),2) 0.17 Copying a Formula Using the Fill Handle The fill handle may be used to copy a cell or cells, a formula or formulas, and to complete a series (months, days, and numbers). Copying a Formula Using the Relative References Demonstrate how the use of relative references allows you to copy formulas without the need to change cell references. Show how references change as you copy across columns and/or rows. Copying a Formula Using an Absolute Reference This concept is fundamental to understanding how to structure formulas and functions which will be copied.

A B C D E 1 Student Test1 Test2 Final Average 2 Costa, Frank 70 80 90 =(B2*$B$11)+(C2*$C$11)+(D2 *$D$11) 3 Ford, Judd 70 85 80 COPY HERE 4 Grauer, Jessica 90 80 98 COPY HERE 5 Howard, Lauren 80 78 98 COPY HERE 6 Krein, Darren 85 70 95 COPY HERE 7 Moldof, Adam 75 75 80 COPY HERE 8 9 Class Averages =AVERAGE(B2:B7) COPY HERE COPY HERE 10 11 Exam Weights 25% 25% 50% Copying Cell Contents Using the Copy and Paste Method This is also a method to use when you need to copy, exactly, the contents of a cell or cells. Renaming the Worksheet Recall how to change the name of the sheets themselves. Saving the New Workbook Review the steps to save a workbook. Place emphasis on the need to be certain that they save their work to the correct area (Floppy A and not the C drive or what ever works for your laboratories). Excel Functions Excel functions are organized into nine categories. Demonstrate how to enter the same function using the Function. _An Excel function is a calculation tool that performs a predefined operation. It is a mathematical or special program, a set of instructions, built to simplify any need tocreate complex formulas or structures in the worksheet. _Each function has a syntax, which tells you the order in which you must type the parts of the function and where to put commas, parentheses, and other punctuation. _The arguments for a function can be constant numbers such as 1, 21, 567.24; cell references such as B56, G9; or ranges such as B10:D24. _Functions may be used in formulas. You may type a function into a formula or use the Function Wizard button, and then follow the instructions in the dialog boxes. The Function Wizard is often easier, especially if you don't know the function s syntax. _SUM, AVERAGE, MAX, and MIN. Financial functions, such as the PMT function, are especially important in business. Note the different cell formats:

A B 1 Price of car $ 12,192 2 Manufacturer's rebate $ 1,000 3 Down payment $ 3,000 4 Amount to finance $ 8,192 5 Interest rate 8% 6 Term (years) 4 7 Monthly payment $ 200.00 Contents of cells: B4 =B1-B2-B3 B7 =PMT(B5/12,B6*12,-B4) Arguments to PMT: Interest rate per period (annual rate divided by 12) Number of periods (4 years * 12 months/year) Amount of loan (entered as a negative amount) Testing the Worksheet The following are some common causes of inaccurate results: _Using the wrong operator Forgetting the order of operations _Typographical error _Highlighting the wrong range _Modifying the worksheet without re-checking formulas Improving the Worksheet Layout: Column or row widths can be changed in several ways. You can set directly or you can use the mouse. Setting directly can be done from the menu or by right clicking and selecting the width or height statement. The only problem with this option is that you must have a good estimate of the width or height or you will have to guess several times. For students, it is easier if they use the mouse, as they do not have the experience to estimate this accurately. They can either drag to fit their specific wishes or double click to use the fit-to option. Inserting rows and columns, while the wording is correct, students repeatedly get confused as to where the insertion will occur. Stress that the blank row(s) or column(s) will be inserted immediately above or to the left of the selected row(s) or column(s). Previewing the Worksheet using Print Preview This allows the students the opportunity to see the spreadsheet and decide if it is how they want it to look prior to printing. If not, they can close and make changes. After completing their changes advise to preview again before printing. An important feature is the Page Break Preview, which can be adjusted from the Print Preview Screen. Centering the Printout Centering improves the appearance of the output. If the worksheet is large then center horizontally and vertically. If short, center horizontally only. This will eliminate too much white space at the top of the page. Use the File, Page Setup, Page menus. Adding Headers and Footers

There is only one point to make when you discuss the functions of the header/footer formatting buttons. Be sure to inform your students of the need to space between the formatting options and to type in words such as page (to get Page 1 rather than just 1; or 10:23 1/1/99 rather than 10:231/1/99). Documenting the Workbook This is an important step for them and for anyone working on the worksheet after them. Documentation provides an audit trail so that decisions are retained (the why behind how equations are structured, who created it and for whom). Adding Cell Comments Cell comments do not interfere with the worksheet. They appear on the screen only when the pointer is over the mark and they do not print unless you specifically set the command to print them.