What if Analysis, Charting, and Working with Large Worksheets. Chapter 3

Size: px
Start display at page:

Download "What if Analysis, Charting, and Working with Large Worksheets. Chapter 3"

Transcription

1 What if Analysis, Charting, and Working with Large Worksheets Chapter 3

2 What we will cover Rotating Text Using the fill handle to create a series of month names Copying and pasting

3 What we will cover Inserting, and deleting cells Formatting numbers using format symbols Entering and formatting the system date Use absolute and mixed cell references

4 What we will cover Use the IF function Create a spark line chart Change spark line chart type Use format painter to copy a format Create a cluster chart on another sheet

5 What we will cover Use chart filters to show a subset of data in a chart Change the chart type and style Reorder sheet tabs Freeze and unfreeze rows and columns

6 What we will cover Do sensitivity analysis (what if analysis) Use goal seek to answer what if questions Use Smart Lookup Insight Find and fix accessibility issues

7 What we will Cover Splitting the screen Using absolute cell references Using the IF function Using the format painter to copy formats

8 What we will Cover Creating a clustered column chart on a separate chart sheet Reusing worksheet tables Answering what-if questions Using goal seek

9 Autofilling with the Fill Handle Dragging to the right can be used to create a series of Names of the days of the week Numbers Names of the months of the year

10 Names of the days of the week as follows: Monday, Tuesday, Wednesday, Thursday, and so on Numbers as follows: 2, 2, 2, 2, 2, etc., OR 6, 7, 8, 9 and so on Names of the months of the year as follows: September, October, November, and so on

11 Other Series 1:00:2:00, 3:00, 4:00, 5:00 1 st :2 nd, 3 rd, 4 th, 5 th 2005:2006, 2007, 2008, 2009 Mon, Tue, Wed, Thu, Fri, Sat Step 1, Step 2, Step 3, Step 4

12 Starting Autofill with Two Cells Selected 1-Jan 1-Feb Will result in 1-Jan,1-Feb,1-Mar,1-Apr 2 4 Will result in 2, 4, 6, 8, Will result in -10, -12, -14, -16

13 Autofill Options Button Fill Series with formatting (default) Fill the destination area with a series using the format of the source area Fill Formatting Only Fill destination area using the format of source area. No content is copied unless the fill is a series. Fill Without Formatting Fill the destination area with contents, without the formatting of the source area. Fill Months Fill the destination area with a series of months using the format of the source area. This shows as an option only if source area contains a month.

14 Cut, Copy, Paste Cutting removes the cell contents and places them on the clipboard Pasting involves moving the cell contents from the clipboard to a cell Copying does just what it sounds like it would do. It copies the cell contents to the clipboard and leaves the original in the source cell(s). You can then paste them to another cell or cells.

15 Paste Options Keep Source Formatting (default) - Copy the contents and the format of the source area. Match Destination Formatting--Copy the contents of the source area, but not the format. Values and Number Formatting Copy contents and format of the source area for numbers or formulas, but use the format of the destination area for text.

16 Paste Options Keep Source Column Widths Copy the contents and the format of the source area. Change the destination column widths so that they are the same as the source column widths. Formatting Only - Copy format of source area, but not the contents.

17 Inserting Cells, Rows and Columns Avoid adding or deleting individual cells because it will affect the rows and columns around them. Use the clear command instead to remove cell content, not the entire cell. Adding rows is generally not a problem because cell references in the moved rows adjust Adding columns is generally not a problem because cell references in the moved columns adjust Be aware of any cells elsewhere in the worksheet that reference cells in a deleted column, row, or cell. They will now show error messages (because they are referring to something that is no longer there).

18 Review of Relative Cell Addressing Relationships Excel only knows that you want to add the three cells directly above the cell containing the sum function. The relative position of these cells is that they are the three cells directly above. A B C D E F G =SUM(B1:B3)

19 Relative Cell Addresses Cell addresses without dollar signs ($) will adjust when copied or moved. You have used these before. Example: C33

20 Column Letter To prevent a column letter from changing, type a dollar sign ($) before the letter. Example: $C33

21 Row Number To prevent a row number from changing, type a dollar sign ($) before the number. Example: C$33

22 Column and Row To prevent a column letter and a row number from changing, type a dollar sign ($) before the column letter and the row number. Example: $C$33

23 Absolute Cell Addressing Formula in B4 is =B3*$F$1 A B C D E F G 1 Tax rate Price Tax Total

24 Copied Formula in B6 is =B5*$F$1 A B C D E F G 1 Tax rate Price price subtotal Tax total 10.70

25 Excel Functions Functions that merely use a list as the arguments Functions that have several individual arguments separated by commas

26 Functions that use Lists as arguments They merely require a list of cells after the name of the function. Tell Excel the first and last cell address of the cells in the list Example: =sum(a1:a5)

27 Functions that use individual arguments Arguments are pieces of information that Excel needs to perform an operation for you =IF(ARGUMENT1, ARGUMENT2, ARGUMENT3) Arguments go inside parentheses Arguments are separated by commas Arguments follow the name of the function

28 IF FUNCTION Starts with an equal sign (=) The name of the function is IF Argument 1 is the condition to be met Argument 2 is what to do if true (condition is met) Argument 3 is what to do if false (condition not met)

29 Arguments 2 and 3 These can be: Cell references Text strings inside double quotes Formulas using cell addresses Formulas using numbers Formulas using cell addresses and numbers

30 Location of If Function Place the if function in the cell where you want the result to appear

31 IF function using text strings =IF(A1>=3.00, Buy a Big Mac, Eat at home ) IF function using cell references =IF(A1>=3.00,A2,A3) A B C If statement here 2 Buy a Big Mac 3 Eat at home

32 Logical Operators used in an IF function Operator Meaning of Operator Example Means = Equal to A3=0 A3 is equal to 0 < Less than A3<10 A3 is less than 10 > Greater than A3>10 A3 is more than 10 >= Greater than or equal to A3>=10 A3 is 10 or more <= Less than or equal to A3<=10 A3 is 10 or less <> Not equal to A3<>10 A3 is not equal to 10

33 More on Spell checking Excel checks selected worksheets All cell values Cell comments Embedded charts Text boxes Headers and footers To limit checking, you can select a range of cells first Excel will only spell check those cells

34 Goal Seeking Personnel January Bonus Gustav Blau $7,000 $700 Bonus % 10% If you wish to increase the amount of the bonus to a specific amount, but the bonus is dependent on the bonus percent, you will have to change the bonus percent. To calculate the correct percent to use in order to make the bonus itself come out to the exact amount you want, you can use goal seek. Example: You want Blau s bonus to be $1,000. You can use goal seek to tell Excel to figure out what the bonus percent should be to result in a $1,000 bonus for Blau. It will calculate that the percent should be

35 Split Screen split

36 Reordering Sheet Tabs You can change the order of the worksheets in your workbook by changing the order of their sheet tabs Drag the tabs to where you want them

37 Rotating Text in a Cell Saves Space

38 Sparkline Chart (chart in a cell)

39 Do-It-Yourself Number Style Formatting Number styles that you can either format yourself or format using the number group: Percent 5.5%* Accounting or Currency $1, Comma 1, * Excel treats this as the decimal equivalent,.055

40 Freezing Rows and Columns Causes row(s) to remain in sight at the tops of columns when working farther down the worksheet Also used to cause column(s) to remain in sight at the left when the user is working far to the right of the worksheet

41 Before using Freezing

42 Freezing Rows 1 and 2 at the top and Freezing Column A at the Left

43 Chart before Filtering

44 Chart After Filtering

Microsoft Excel Chapter 3. Working with Large Worksheets, Charting, and What-If Analysis

Microsoft Excel Chapter 3. Working with Large Worksheets, Charting, and What-If Analysis Microsoft Excel 2013 Chapter 3 Working with Large Worksheets, Charting, and What-If Analysis Objectives Rotate text in a cell Create a series of month names Copy, paste, insert, and delete cells Format

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Table of Contents The Excel Window... 2 The Formula Bar... 3 Workbook View Buttons... 3 Moving in a Spreadsheet... 3 Entering Data... 3 Creating and Renaming Worksheets... 4 Opening

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

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

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

Chapter 2. Formulas, Functions, and Formatting

Chapter 2. Formulas, Functions, and Formatting Chapter 2 Formulas, Functions, and Formatting Syntax of List Functions Functions and formulas always start with an equal sign, = Colon means through : List inside of parentheses =AVERAGE(A1:A5) Name of

More information

Conditional Formatting

Conditional Formatting Microsoft Excel 2013: Part 5 Conditional Formatting, Viewing, Sorting, Filtering Data, Tables and Creating Custom Lists Conditional Formatting This command can give you a visual analysis of your raw data

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

GO! with Microsoft Excel 2016 Comprehensive

GO! with Microsoft Excel 2016 Comprehensive GO! with Microsoft Excel 2016 Comprehensive First Edition Chapter 2 Using Functions, Creating Tables, and Managing Large Workbooks Use SUM and Statistical Functions The SUM function is a predefined formula

More information

Microsoft Excel Chapter 3. What-If Analysis, Charting, and Working with Large Worksheets

Microsoft Excel Chapter 3. What-If Analysis, Charting, and Working with Large Worksheets Microsoft Excel 2010 Chapter 3 What-If Analysis, Charting, and Working with Large Worksheets Objectives Rotate text in a cell Create a series of month names Copy, paste, insert, and delete cells Format

More information

Microsoft Excel Chapter 3. Working with Large Worksheets, Charting, and What-If Analysis

Microsoft Excel Chapter 3. Working with Large Worksheets, Charting, and What-If Analysis Microsoft Excel 2013 Chapter 3 Working with Large Worksheets, Charting, and What-If Analysis Objectives Rotate text in a cell Create a series of month names Copy, paste, insert, and delete cells Format

More information

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon Custom Sorting and Subtotaling Excel Intermediate Excel allows us to sort data whether it is alphabetic or numeric. Simply clicking within a column or row of data will begin the process. Click in the name

More information

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32 TABLE OF CONTENTS Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14 Creating an Excel Workbook 14 Examining the Excel Environment 15 Opening an Existing Workbook 19 Navigating a Worksheet

More information

EXCEL 2010 COMPETENCIES

EXCEL 2010 COMPETENCIES EXCEL 2010 COMPETENCIES Working with Cells Use undo and redo Clear cell content Enter text, dates, and numbers Edit cell content Go to a specific cell Insert and delete selected cells Cut, copy, paste,

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 Office 2011 for Mac: Introductory Q&As Excel Chapter 3

Microsoft Office 2011 for Mac: Introductory Q&As Excel Chapter 3 Microsoft Office 2011 for Mac: Introductory Q&As Excel Chapter 3 What if Excel automatically opens a workbook when I start Excel? (EX 139) If you had a workbook open when you last quit Excel, Excel will,

More information

THE AMERICAN LAW INSTITUTE Continuing Legal Education

THE AMERICAN LAW INSTITUTE Continuing Legal Education 67 THE AMERICAN LAW INSTITUTE Continuing Legal Education Using Everyday Tech Tools To Maximize Your Law Practice Plus Ethics April 26, 2018 Philadelphia, Pennsylvania Utilizing Microsoft Excel for a More

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

Les s on Objectives. Student Files Us ed

Les s on Objectives. Student Files Us ed Lesson 3 - Potpourri 31 Lesson 3 P otpourri Les s on Topics The Fill Command Wrapping Text View Options Edit Options Other Fill Handle Uses Les s on Objectives At the end of the lesson, you will be able

More information

Microsoft Excel Basics Ben Johnson

Microsoft Excel Basics Ben Johnson Microsoft Excel Basics Ben Johnson Topic...page # Basics...1 Workbook and worksheets...1 Sizing columns and rows...2 Auto Fill...2 Sort...2 Formatting Cells...3 Formulas...3 Percentage Button...4 Sum function...4

More information

Business Data Analysis MA0123. Dr Gavin Shaddick Department of Mathematical Sciences 4W 5.7

Business Data Analysis MA0123. Dr Gavin Shaddick Department of Mathematical Sciences 4W 5.7 Business Data Analysis MA0123 Dr Gavin Shaddick Department of Mathematical Sciences g.shaddick@bath.ac.uk 4W 5.7 Lectures and computer labs Two lectures a week (Monday and Friday). One computing lab (time

More information

Open and arrange windows This section covers items like: Opening another window on to a workbook Arranging workbook windows Hiding and show windows

Open and arrange windows This section covers items like: Opening another window on to a workbook Arranging workbook windows Hiding and show windows Level 2 Excel Viewing workbooks Open and arrange windows Opening another window on to a workbook Arranging workbook windows Hiding and show windows Split panes Split panes Freeze panes Freeze panes Change

More information

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1 INFORMATION TECHNOLOGY SPREADSHEETS Part 1 Page: 1 Created by John Martin Exercise Built-In Lists 1. Start Excel Spreadsheet 2. In cell B1 enter Mon 3. In cell C1 enter Tue 4. Select cell C1 5. At the

More information

Introduction to Microsoft Excel 2016

Introduction to Microsoft Excel 2016 Screen Elements: Introduction to Microsoft Excel 2016 The Ribbon The Ribbon is designed to help you quickly find the commands that you need to complete a task. Commands are organized in logical groups,

More information

Contents. Introduction 15. How to use this course 18. Session One: Basic Skills 21. Session Two: Doing Useful Work with Excel 65

Contents. Introduction 15. How to use this course 18. Session One: Basic Skills 21. Session Two: Doing Useful Work with Excel 65 Contents Introduction 15 Downloading the sample files... 15 Problem resolution... 15 The Excel version and locale that were used to write this book... 15 Typographical Conventions Used in This Book...

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

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

for secondary school teachers & administrators

for secondary school teachers & administrators for secondary school teachers & administrators 2b: presenting worksheets effectively Contents Page Workshop 2B: Presenting Worksheets Effectively 1 2.1 The Formatting Toolbar 2.1.1 The Format Cells Dialogue

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

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

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Chapter 10 Managing Numbers and Text Using Excel 1 Objectives Examine the Excel window and tools Enter and format

More information

Unit 9: Excel Page( )

Unit 9: Excel Page( ) Unit 9: Excel Page( 496-499) Lab: A. Font B. Fill color C. Font color D. View buttons E. Numeric entry F. Row G. Cell H. Column I. Workbook window J. Active sheet K. Status bar L. Range M. Column labels

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

Objectives. Objectives. Plan Ahead. Starting Excel 3/9/2010. Excel Chapter 3. Microsoft Office 2007

Objectives. Objectives. Plan Ahead. Starting Excel 3/9/2010. Excel Chapter 3. Microsoft Office 2007 Objectives Microsoft Office 2007 Excel Chapter 3 What-If Analysis, Charting, and Working with Large Worksheets Rotate text in a cell Create a series of month names Copy, paste, insert, and delete cells

More information

Functions in Excel. Structure of a function: Basic Mathematical Functions. Arithmetic operators: Comparison Operators:

Functions in Excel. Structure of a function: Basic Mathematical Functions. Arithmetic operators: Comparison Operators: Page1 Functions in Excel Formulas (functions) are equations that perform calculations on values in your spreadsheet. A formula always starts with an equal sign (=). Example: =5+2*7 This formula multiples

More information

1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and to the right.

1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and to the right. Excel: Chapter 3 True/False Indicate whether the statement is true or false. Figure 3-3 1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and

More information

Ms excel. The Microsoft Office Button. The Quick Access Toolbar

Ms excel. The Microsoft Office Button. The Quick Access Toolbar Ms excel MS Excel is electronic spreadsheet software. In This software we can do any type of Calculation & inserting any table, data and making chart and graphs etc. the File of excel is called workbook.

More information

Excel 2013/2016 Step One TABLE OF CONTENTS

Excel 2013/2016 Step One TABLE OF CONTENTS TABLE OF CONTENTS SECTION 1 WORKING WITH YOUR FIRST SPREADSHEET... 3 WORKING WITH YOUR FIRST SPREADSHEET... 4 About Microsoft Excel 2013/2016... 4 Working with Microsoft Excel 2013/2016... 4 About Screen

More information

Computer Training Centre University College Cork. Excel 2016 Level 1

Computer Training Centre University College Cork. Excel 2016 Level 1 Computer Training Centre University College Cork Excel 2016 Level 1 Table of Contents Introduction... 1 Opening Excel... 1 Using Windows 8... 1 Using Windows 10... 1 Getting Started with Excel 2016...

More information

Excel Formulas and Functions

Excel Formulas and Functions Excel Formulas and Functions Formulas Relative cell references Absolute cell references Mixed cell references Naming a cell or range Naming constants Dates and times Natural-language formulas Functions

More information

COURSE CONTENT EXCEL BASIC ONE DAY

COURSE CONTENT EXCEL BASIC ONE DAY COURSE CONTENT EXCEL BASIC ONE DAY SOME OF THE BENEFITS OF USING A SPREADSHEET STARTING EXCEL GETTING YOURSELF ORIENTATED WITH THE EXCEL SCREEN THE OFFICE BUTTON/FILE TAB THE TITLE BAR THE RIBBONS GROUPS

More information

Syllabus KCXXXXXX: Excel Level I, Version 2010

Syllabus KCXXXXXX: Excel Level I, Version 2010 Syllabus KCXXXXXX: Excel Level I, Version 2010 ITSW 1022 Introduction to Electronic Spreadsheets 8 classroom hours Course Description: This course is designed to introduce the student to basic spreadsheet

More information

Dale s Freight Fuel Report Assignment. Objectives By the end of this lesson, you will be able to:

Dale s Freight Fuel Report Assignment. Objectives By the end of this lesson, you will be able to: Dale s Freight Fuel Report Assignment Objectives By the end of this lesson, you will be able to: Set up a worksheet Navigate an Excel Window Enter labels and values Create formulas using math operators

More information

3/31/2016. Spreadsheets. Spreadsheets. Spreadsheets and Data Management. Unit 3. Can be used to automatically

3/31/2016. Spreadsheets. Spreadsheets. Spreadsheets and Data Management. Unit 3. Can be used to automatically MICROSOFT EXCEL and Data Management Unit 3 Thursday March 31, 2016 Allow users to perform simple and complex sorting Allow users to perform calculations quickly Organizes and presents figures that can

More information

Create a workbook using the guidelines, concepts, and skills presented in this chapter. Labs are listed in order of increasing difficulty.

Create a workbook using the guidelines, concepts, and skills presented in this chapter. Labs are listed in order of increasing difficulty. What-If Analysis, Charting, and Working with Large Worksheets EX 209 was entered and copied to cells D9, D10, and D11. The current IF functions in cells D8, D9, D10, and D11 are incorrect. Edit and correct

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

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

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

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

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

Free Microsoft Office 2010 training from MedCerts. Course Outline

Free Microsoft Office 2010 training from MedCerts. Course Outline Free Microsoft Office 2010 training from MedCerts Course Outline Microsoft Office Word 2010: Basic Course Introduction Unit 01 - Getting Started Topic A: The Word Window The Word 2010 Window Demo - A-1:

More information

Excel Boot Camp PIONEER TRAINING, INC.

Excel Boot Camp PIONEER TRAINING, INC. Excel Boot Camp Dates and Times: Cost: $250 1/22, 2-4 PM 1/29, 2-4 PM 2/5, 2-4 PM 2/12, 2-4 PM Please register online or call our office. (413) 387-1040 This consists of four-part class is aimed at students

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

Microsoft Office Specialist Excel 2016

Microsoft Office Specialist Excel 2016 77-727 Microsoft Office Specialist Excel 2016 For coverage of all objectives, please utilize Shelly Cashman Series Office 365 and Excel 2016: Comprehensive. Domain Obj Number Objective text Module Page

More information

Contents. Introduction 13. Putting The Smart Method to Work 16. Session One: Basic Skills 23

Contents. Introduction 13. Putting The Smart Method to Work 16. Session One: Basic Skills 23 Contents Introduction 13 Feedback... 13 Downloading the sample files... 13 Problem resolution... 13 Typographical Conventions Used In This Book... 14 Putting The Smart Method to Work 16 Excel version and

More information

Excel Contents. MS Excel /3/2011 JSD#2-Neptune Page 1

Excel Contents. MS Excel /3/2011 JSD#2-Neptune Page 1 Excel 2013 Contents Contents... 1 Opening Start Screen... 2 Formatting cells... 2 Modifying information in a cell... 2 Autofil... 3 Merge and Center Headings and Merge Cells... 3 Auto Calculation... 3

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

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts New Perspectives on Microsoft Excel 2016 Module 5: Working with Excel Tables, PivotTables, and PivotCharts Objectives, Part 1 Explore a structured range of data Freeze rows and columns Plan and create

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

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

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

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

MCQ.

MCQ. 1. Which of the following methods cannot be used to enter data in a cell A) Pressing an arrow key B) Pressing the Tab key C) Pressing the Esc key D) Clicking on the formula bar 2. Which of the following

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

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR Toolbar Tour AutoSum + more functions Chart Wizard Currency, Percent, Comma Style Increase-Decrease Decimal Name Box Chart Wizard QUICK TOUR Name Box AutoSum Numeric Style Chart Wizard Formula Bar Active

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

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts Microsoft Excel 2013 Enhanced Objectives Explore a structured range of data Freeze rows and columns Plan and create an Excel table Rename

More information

Overview. At Course Completion After completing this course, students will be learn about and be able to:

Overview. At Course Completion After completing this course, students will be learn about and be able to: Overview Organizations the world over rely on information to make sound decisions regarding all manner of affairs. But with the amount of available data growing on a daily basis, the ability to make sense

More information

Microsoft Excel 2016 / 2013 Basic & Intermediate

Microsoft Excel 2016 / 2013 Basic & Intermediate Microsoft Excel 2016 / 2013 Basic & Intermediate Duration: 2 Days Introduction Basic Level This course covers the very basics of the Excel spreadsheet. It is suitable for complete beginners without prior

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

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

Quick Guide for Excel 2015 Data Management November 2015 Training:

Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu/training Excel 2016 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains

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

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

COMPUTERIZED OFFICE SUPPORT PROGRAM

COMPUTERIZED OFFICE SUPPORT PROGRAM NH108 Excel Level 1 16 Total Hours COURSE TITLE: Excel Level 1 COURSE OVERVIEW: This course provides students with the knowledge and skills to create spreadsheets and workbooks that can be used to store,

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

Customer details are included on a separate worksheet (Customer Look Up) Item details are included on a separate worksheet (Item Look Up)

Customer details are included on a separate worksheet (Customer Look Up) Item details are included on a separate worksheet (Item Look Up) Creating an Invoice System using Excel Purpose To create a basic invoicing system which can be used to create invoices which can then be printed to pdf to provide a permanent copy and to print out and

More information

Excel 2010 Tutorials - Video File Attributes

Excel 2010 Tutorials - Video File Attributes Get Familiar with Excel 2010 42.30 2.70 The Excel 2010 Environment 4.10 0.18 Quick Access Toolbar 3.10 0.27 Excel 2010 Ribbon 3.10 0.26 File Tab 3.10 0.28 Home Tab 5.10 0.17 Insert Tab 3.10 0.18 Page Layout

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

Pivot Table Project. Objectives. By the end of this lesson, you will be able to:

Pivot Table Project. Objectives. By the end of this lesson, you will be able to: Pivot Table Project Objectives By the end of this lesson, you will be able to: Set up a Worksheet Enter Labels and Values Use Sum and IF functions Format and align cells Change column width Use AutoFill

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

Office Applications II Lesson Objectives

Office Applications II Lesson Objectives Office Applications II Lesson Unit 1: MICROSOFT EXCEL SPREADSHEETS BASICS What is a Spreadsheet and What Are Its Uses? Define spreadsheets Define the Microsoft Excel application List business, consumer,

More information

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart Microsoft Excel 2010 Chapter 1 Creating a Worksheet and an Embedded Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Copy the contents of

More information

How do you crate a research paper? Essential Question(s): Content. Skills: Standards/Benchmarks

How do you crate a research paper? Essential Question(s): Content. Skills: Standards/Benchmarks Department: Business Course Title 21 st Century Computer Skills 1 Unit 1, September Unit 1 Word Creating & Editing a Word Document Unit 2, October Unit 2 Creating a Research Paper What is Microsoft Word?

More information

FAQ: Advanced Functions

FAQ: Advanced Functions Question 1: What are formulas and functions? Answer 1: Formulas are a type of data that can be entered into a cell in Excel. Formulas begin with an equal sign and use mathematical operators to 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

Introduction to Excel 2007

Introduction to Excel 2007 Introduction to Excel 2007 Excel 2007 is a software program that creates a spreadsheet. It permits the user to enter data and formulas to perform mathematical and Boolean (comparison) calculations on the

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTRODUCTION TO MICROSOFT EXCEL 2016 Introduction to Microsoft Excel 2016 (EXC2016.1 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn

More information

LECTURE 10. SPREADSHEET

LECTURE 10. SPREADSHEET 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

More information

Laboratory 1. Part 1: Introduction to Spreadsheets

Laboratory 1. Part 1: Introduction to Spreadsheets Laboratory 1 Part 1: Introduction to Spreadsheets By the end of this laboratory session you should be familiar with: Navigating around a worksheet. Naming sheets and cells. Formatting. The use of formulae.

More information

Excel Tutorials - File Size & Duration

Excel Tutorials - File Size & Duration Get Familiar with Excel 46.30 2.96 The Excel Environment 4.10 0.17 Quick Access Toolbar 3.10 0.26 Excel Ribbon 3.10 0.26 File Tab 3.10 0.32 Home Tab 5.10 0.16 Insert Tab 3.10 0.16 Page Layout Tab 3.10

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

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

EVALUATION ONLY. Table of Contents. iv Labyrinth Learning

EVALUATION ONLY. Table of Contents. iv Labyrinth Learning Quick Reference Tables Preface EXCEL 2013 LESSON 1: EXPLORING EXCEL 2013 Presenting Excel 2013 Starting Excel Windows 7 Windows 8 Exploring the Excel Program Window Using Worksheets and Workbooks Mousing

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

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

Table of Contents. Chapter 1

Table of Contents. Chapter 1 Table of Contents iii Table of Contents Chapter 1 Starting Excel Using an electronic spreadsheet 2 Starting Excel 2 Exploring the Start screen 4 Creating a blank workbook 4 Exploring the Excel window 5

More information

1 of 9 8/27/2014 10:53 AM Units: Teacher: MOExcel/Access, CORE Course: MOExcel/Access Year: 2012-13 Excel Unit A What is spreadsheet software? What are the parts of the Excel window? What are labels and

More information