EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE

Size: px
Start display at page:

Download "EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE"

Transcription

1 EXCEL INTERMEDIATE

2 Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS AND FUNCTIONS... 6 BASIC EXCEL REVIEW... 6 FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references... 7 Using a Simple Cell Reference Formula... 7 FUNCTIONS... 8 Typing Manually vs. Using AutoSum... 8 Selecting Ranges in AutoSum... 9 Using the Function Library... 9 The Average Function...10 IF Statement Formulas...10 Type an IF Statement...11 Nested IF Statements...12 REVIEW...13 MOVING, COPYING AND CUSTOM LISTS...15 CUT, COPY & PASTE DATA...15 Cutting & pasting data...15 Copying & pasting a formula...15 Pasting a formula into a range...15 FILLING...16 Copy a formula using the fill handle...16 Filling a Series with AutoFill...16 Creating a Custom List...17 Editing a Custom List...18 REVIEW...19 WORKING WITH MORE FUNCTIONS...21 DATE FUNCTIONS...21 Date & Time Functions...21 Formatting the Date...21 Turning Date Formulas into Years...22 Relative and Absolute References...22 IF Functions...23 OTHER USEFUL FUNCTIONS...24 Proper...24 Roundup Function...24 REVIEW...25 WORKING WITH MULTIPLE WORKSHEETS...26 ORGANIZING WORKSHEETS...26 Renaming worksheets...26 Color Coding Tabs...26 Moving worksheets...26 Copying worksheets D REFERENCES...27 Create a 3-D reference to Integrate Another Worksheet...27 Use a 3-D Reference in a Formula Excel 2016 Intermediate Version MCS

3 Copy a 3-D reference formula...27 HYPERLINKS...28 Creating Hyperlinks to other spreadsheets...28 Adding ScreenTips...28 Selecting and Formatting a Hyperlink cell...29 Editing and Removing Hyperlinks...29 REVIEW...30 FORMATTING CELLS AND APPEARANCE...31 FORMATTING TEXT IN CELLS...31 Text alignment...31 Using format painter...31 Merge Cells and Center Text...32 Wrap text within a cell...32 Applying color...32 Text Orientation...32 FORMATTING NUMBERS...33 Percentage & custom number formats...33 Conditional Formatting...34 Copying the Conditional Formatting...35 REVIEW...36 VIEWING WORKSHEETS...37 VIEWS...37 Showing Formulas and References...37 Tracing Precedents and Dependents...37 Grouping Rows and Columns...38 Creating Subtotals...38 CELL COMMENTS...39 Adding cell comments...39 Viewing a cell comment...39 Deleting and editing a cell comment...39 INSERTING AND VIEWING FOOTERS...40 Creating a page number Footer...40 REVIEW...41 INTRO TO BASIC CHARTS...42 COMMANDS USED IN THIS SECTION:...42 CREATING CHARTS...42 Define the chart...42 Position & Resize Chart...43 Change the Location of the Chart...43 Add Chart Title...43 Adding WordArt to a Chart...44 EDITING CHARTS...44 Change the chart type...44 Rotate chart...45 Extract a Slice of the Pie Chart...45 Formatting a Data Series...46 CREATING MULTIPLE SERIES CHARTS...47 Define the chart...47 Define the Series...47 Sparkline Charts...48 REVIEW MCS Excel 2016 Intermediate Version 1.0 4

4 View the Project Kay s Flower Shop sells various types of flowers, arrangements, and vases. We will help Kay maintain supply inventory, orders, supply costs, personnel, and income and expenses by using Excel. File Tab Quick Access Toolbar Command Tabs Formula Bar Column Heading Ribbon Active Cell Name Row Heading Spreadsheet Tab Status Bar 5 Excel 2016 Intermediate Version MCS

5

6 Basic Excel Review Section I Using Formulas and Functions Excel can perform calculations for you so that when you update your spreadsheet with new numbers, it will automatically re-calculate without having to write new formulas. This can save a lot of time on your manual calculator battery! Formulas in Excel always begin with an equal sign. This is what tells excel that you are entering a formula in a cell rather than text or just a number. The following symbols you can type from your keyboard, tell the formula to perform different functions: + Add - Subtract * Multiply / Divide ^ Exponents So, to type an excel formula to multiply 1 times 2 you would type the following: =1*2 Excel will calculate a formula from left to right but it will perform calculations in a formula in the following order: 1. Items in Parentheses (2*3) 2. Exponents Multiplication and Division 3*4 or 12/3 4. Addition and Subtraction 10+2 or 7-2 So to add 1 plus 2 and then multiply that times 3, you would type the following formula: = (1+2)*3 Tip: If there are certain items that you want calculated first, in your formula, you will always want to use parentheses around those items MCS Excel 2016 Intermediate Version 1.0 6

7 Formulas There are two ways to enter formulas, either by typing in the formula or by clicking on cells to insert cell references. Typing formulas We can write a formula that adds all of our sales by using the keyboard. 1. Open the file titled Kay s Flower Shop 2. Make sure Sheet1 is the active sheet by clicking on the sheet tab 3. Click cell B10 4. Type =B8+B9 5. press Enter 6. If you see ##### marks in your cell, double-click on the column header border between B & C to expand the column wide enough to view the data Clicking to insert cell references Excel also allows you to use your mouse to select the cell references you want to use in your formula, by clicking on the desired cells, rather than having to type them. Let s write a similar formula that will add our cost of goods, by using the mouse. 1. Click cell B14 2. Type = 3. Click cell B12, then type +. Click cell B13 4. Click on the Enter button, in front of the formula on the formula bar, or press Enter on your keyboard Using a Simple Cell Reference Formula We can tie cells together so that one cell will always show the same data as another. That way, if we update our original cell s number, it will also update the others. 1. Click cell B23 2. Type =B14 and press Enter Note: You can simply change formulas by deleting the data you don t want from the formula bar and then making your changes. To change the contents of the cell, simply double-click in the cell or press F2 on your keyboard to enter Edit mode. 7 Excel 2016 Intermediate Version MCS

8 Functions A function is a preset formula in Excel. Some examples: Sum: Average: Count: Max: Min: Adds the values of the cells chosen Gives the average of the values of the cells chosen Gives the count of the number of items/cells chosen Gives the largest value in the cells chosen Gives the smallest value in the cells chosen Example of a formula to give you the Average of select cells: =Average (B6,B9,B10) When using most functions you will define a range of adjacent cells. A range of adjacent cells is defined by using a colon ( : ). An easy way to remember this is to think of a : as saying through. Cells B6 through D10 or B6:D10. Typing Manually vs. Using AutoSum Let s add all of the operating expenses for April. We can do this by typing the formula manually or by using the Function Library buttons. 1. On Sheet 1, click cell B22 2. Type =Sum(B17:B21) 3. Undo this action 4. Click cell B22 5. On the Formulas tab, in the Function Library group, click AutoSum 6. Note the range listed in the formula: =SUM (B17:B21) 7. Press Enter Tip: You can also choose the function type from the popup menu as you type the function, by double-clicking on the desired function from the menu MCS Excel 2016 Intermediate Version 1.0 8

9 Selecting Ranges in AutoSum If Excel doesn t pick the exact cells you want calculated when using the AutoSum function, you can tell it which cells you would like it to add. Let s add the operating expenses and total costs of goods to get our total expenses for April. 1. Click on cell B24 2. On the Formulas tab, in the Function Library group click the AutoSum drop-down list and choose on Sum 3. Drag-select cells B22 through B23 4. Press Enter Using the Function Library Excel offers specialized functions that allow you to perform advanced mathematic calculations and operations on data. To easily access and use the various functions, there is a Function Library that gives you step-by-step help when creating a selected function.. There are 10 categories of functions in Excel: Financial: Common accounting and financial calculations Date & Time: Use the date and time in the spreadsheet or in a calculation Math & Trig: Common trigonometry functions such as tangent or sine Statistical: Statistical analysis on a range of data such as average Lookup & Reference: Finds values in a corresponding table or list and incorporate that data into the calculation Database: Performs calculation only on data that meets certain criteria Text: Formula used to manipulate text in a worksheet Logical: Performs what-if analysis to see if a condition is true or false Information: Performs analysis on range of data to determine the type of data in a cell Engineering: Various types of engineering conversions and tests Cube: Used to gather data from Online Analytical Processing (OLAP) cubes, which is a database technology used to make business intelligence queries 9 Excel 2016 Intermediate Version MCS

10 The Average Function If you are not sure how to write a formula or use a function, you can use the Function Library to give you step by step help. Let s find out the average of all 3 month s cost of goods by using the Function Library buttons. 1. Click cell E14 2. Click on the More Function button (on the Formulas tab) in the Function Library group, and choose Statistical, then choose Average 3. Click the Collapse button next to the Number 1 field 4. Drag-select cells B14 through D14 to populate the field 5. Click on the Expand button 6. Click OK to close the dialog box 7. Note the formula that now appears in the formula bar for that selected cell IF Statement Formulas There are formulas that you can write that will calculate specific formulas only if certain statements are true. For example, as flower inventory runs low, one of the florists marks the order status of an item to order. Kay wants the spreadsheet to automatically calculate the needed quantity of flowers to order, in column E, (based on what has been used and what the quantity to keep on hand is) when an item is flagged for order. 1. Go to Sheet5 2. Click on cell E5 so it is selected 3. Click on the Logical button in the Function Library group, then choose IF from the menu 4. In the first field for Logical test, type: D5= order. This tells Excel to look and see if that statement is true for that cell (does D5 contain the word Order ). 5. Next we want to tell Excel what to do if that statement is in fact true which is to calculate the formula for C5-B5. In the Value_if_true field, type: C5-B5 6. In the final field, Value_if_false, we need to tell Excel what to do if the statement isn t true enter the value of zero. So in this third field, type: MCS Excel 2016 Intermediate Version

11 7. Click on cell E5 and view the formula that appears in the formula bar: Type an IF Statement We can also type out the IF Statement without using the formula/function bar. When you type an IF Statement, you must place the comas between each condition as well as place the parenthesis around the entire statement unlike when you use the step-by-step help from the Function Library. 1. Click on cell E6 2. Type: =IF(D6="order",C6-B6,0) This translates into: if cell D5 contains the word order, then subtract cell B5 from cell C5 and place the results in this cell. If that cell does not contain the word, then place a 0 in the cell. 3. Press Enter and view the contents of cell E6 11 Excel 2016 Intermediate Version MCS

12 Nested IF Statements The IF statements we created above work great when there is only one criteria to look for within a cell/formula. However, what if Kay needs to look for 2 different criteria. Let s say she sometimes needs to order extra supplies if she has a big event coming up. So when she puts Extra in the Order Status column, she wants it to do the same calculation of subtracting the Qty remaining from the Qty needed, but she also wants it to add 100 to that amount. To do this, we need put multiple IF statements in the same formula to conduct multiple logic tests. This is called Nesting IF Statements. 1. Go back to cell E5 2. In the Formula bar, click at the end of the formula and delete the 0) from the end 3. Type =IF(D5= Extra,(C5-B5)+100,0)) 4. The formula results in cell E5 should still be the same (180), but now type Extra in cell D5 and press Enter 5. The final amount in cell D5 should now display 280 Tip: When Nesting IF Statements, you need a true value for every logic test. But you will only need one false value for the entire formula. So the criteria will look something like this (in this example there are 3 Nested IF Statements, but you can have has many as you want): =IF(logic_test,value if true,if(logic_test, value if true,if(logic_test, value if true,0))) Don t forget to close all of your parentheses at the end of your formula! 2013 MCS Excel 2016 Intermediate Version

13 Review 1. On Sheet1, in cell C10, create a formula that adds the Cash and Credit Sales from column C (C8 & C9) (page 7) 2. Put a formula in cell C14 that adds the Supplies and Delivery Costs from column C, rows 12 & 13 (page 7) 3. In cell C22 use the AutoSum function to add all of the Operating Expenses from column C (page 8) 4. Use a simple cell reference in C23 so that it shows the same number that is in cell C14 (page 7) 5. In cell C24, use AutoSum to write a formula adding the Total Operating Expenses and Total Cost of Goods (cells C22 & C23) (page 8) 6. In cell B26 write a formula that gives you the Net Income by subtracting the Total Expenses (B24) from the Gross Income (B10) in column B 7. On the Sales by Employee worksheet, write a formula in cell B10 using AutoSum, that calculates the total of all Week 1 sales (B3:B8) (page 8) 8. In cell F3, use AutoSum to create a formula calculating all of John Petra s sales (B3:E3) (page 8) 9. On Sheet5 in cell E7, create an If statement formula so that if cell D7 contains the word order, then it will calculate the formula C7 minus B7 and place the results in cell E7; but if cell D7 does not contain the word order, it will place a 0 in cell E7. (page 10) 10. Adjust the formula in cell E7 so that it includes a Nested IF Statement that also looks to see if the text in cell D7 is = to Extra and if so, have it add 100 to the calculation. Type the word Extra in cell D7 to see if the Reorder amount changes it should change to 160. (page 12) 11. Click the Save button. Completed review project for Sheet1 and Sheet5 should look like the diagrams 1.1, 1.2, and 1.3 on the following page. 13 Excel 2016 Intermediate Version MCS

14 Diagram 1.1 Diagram 1.2 Diagram MCS Excel 2016 Intermediate Version

15 Section VII Intro to Basic Charts Commands used in this section: Creating Charts Excel makes it simple to create charts and graphs to represent the data in your worksheets. Define the chart First we need to tell Excel what we want the chart to represent. Let s create a chart that shows our expense activity for January. 1. Make Q1 the active sheet 2. Drag-select cells A17 to B21 3. On the Insert tab, in the Charts group, choose the chart type by clicking Column 4. In the Chart Subtype, select the 3-D Cluster Column type Tip: A ScreenTip displays the chart type name when you rest the mouse pointer over any chart type or chart subtype. Note: When you create a chart, the Chart Tools contextual tabs become available and the Design, Layout, and Format tabs are displayed. You can use commands on these tabs to modify the chart so that it presents data the way you want MCS Excel 2016 Intermediate Version

16 Position & Resize Chart We can change the size of the chart or reposition it in the spreadsheet once we have created it. 1. Click and drag the chart until its upper-left corner appears at cell H5 2. Click to grab the lower left sizing handle of the chart and drag it to cell P23 to resize it. Change the Location of the Chart Excel will automatically place the chart on the current worksheet as an Embedded Chart. If you want to place the chart in a separate spreadsheet, you can change its location by using the Move Chart button. 1. On the Design tab, in the Location group, click Move Chart 2. Under Choose where you want the chart to be placed, click New Sheet and rename it: Expenses 3. Click OK. The chart will now display on its own worksheet: Expenses Add Chart Title Let s add a title to our chart to make it easier to understand. 1. On the Chart Tools Design tab on the Ribbon, click the Add Chart Elements button (it is in the Chart Layouts group) scroll down to Chart Title, then select Above Chart 2. Double-Click the Chart Title and type: January s Expenses 3. Highlight the text and change the font color to Red, change the font size to 24pt and make the font Bold Tip: While editing a text box such as the Chart Title, a Mini Toolbar is available by right-clicking anywhere in the box. You can also use the formatting buttons on the Home tab, Font Group 43 Excel 2016 Intermediate Version MCS

17 Adding WordArt to a Chart You can use WordArt formatting as another way to create an eye-catching title to your chart. 1. Ensure that the text is selected in the title 2. On the Chart Tools contextual tabs, click the Format tab 3. In the WordArt Styles group, click on the More button to display the entire Styles gallery 4. Select the Gradient Fill, Aqua 1 Reflection style (seventh style in the group) 5. Change the Text Fill color to Purple Editing Charts After you create the chart, you can instantly change the formatting. You can apply a predefined layout and style to the chart or change the chart elements manually. Change the chart type We can change the column chart to a pie chart. 1. Click the chart so it is active 2. On the Design tab, in the Type group, select the Change Chart Type button 3. Select the 3-D Pie type from the Pie chart types, then click OK 4. Click on the Add Chart Element button (in the Chart Layouts group) and select Legend and then Right 2013 MCS Excel 2016 Intermediate Version

18 Rotate chart Kay wants to rotate the pie chart so the large slice for Rent is in the back of the pie. 1. Click on chart to make it active 2. Under the Format Tab (in Chart Tools Tabs on the Ribbon), click the button (the dialog box launcher) in the lower right of the Shape Styles group to expand the Format Shape Panel 3. Click on the Hexagon button, in the panel, to display those options 4. Under Chart Options, make sure Chart Area is selected 5. Click to open the 3-D Rotation option in the panel 6. Change the Rotation for the X axis to Click X close the Format Panel Note: In Excel 2010, rotating a chart is simpler: Go to the Layout contextual tab and select the 3-D Rotation button from the Background group Change the Rotation for the X axis to 90 Click Close Extract a Slice of the Pie Chart If you want a certain category of your chart to stand out, you can extract it from the chart so it is a free standing section. 1. Click the Auto Expense slice of the pie once and notice that there are not handle bars around the entire pie, then click it again so the black handle bars frame only the Auto Expense slice 2. Click-and-drag the Auto Expense slice down slightly, then release the mouse button. 45 Excel 2016 Intermediate Version MCS

19 Formatting a Data Series We can add data labels to our Pie chart to further format the data. 1. Click on the Chart and then in the upper right of the Chart, click on the Chart Elements button (+) and select Data Labels 2. Click on the arrow to the right of the Data Labels and then select More options to open the Format Data Labels Panel 3. In Label Options, check the box next to Percentage 4. Uncheck the Value box 5. Change the Label Position to Outside End, then close the dialog box. 6. Click on the new % labels to select them in the pie chart, then right-click to display the mini toolbar and click Bold Note: In Excel 2010, Data Labels can be found under the Layout tab, in the Labels group 2013 MCS Excel 2016 Intermediate Version

20 Creating Multiple Series Charts You can also create charts based on multiple series of data. For example, Kay wants to compare her operating expenses for each month in Q1 in a chart. Define the chart To create a chart with multiple series, we want to do the same as before and select all of the data for all 3 months as well as the appropriate labels. 1. Make Q1 the active sheet 2. Drag-select cells A17 to D21 3. On the Insert tab, in the Charts group, choose the chart type by clicking Column 4. In the Chart Subtype, click Clustered Column (the first chart type) Define the Series Now we want to label each series and ensure that the correct data is selected. 1. On the Design tab, in the Data group, click Select Data. 2. In the Select Data Source box, under Legend Entries (Series) click Series 1 and click Edit 3. For the Series Name, type: January. Click OK 4. Select Series 2, and change it to: February 5. Select Series 3, and change it to: March 6. Click OK when finished to close the dialog box 47 Excel 2016 Intermediate Version MCS

21 Sparkline Charts Sparkline charts allow you to display a mini chart in the same row as your data. By putting a visual chart close to your data, you can better convey your information to others. We will create a chart that shows how the supply costs trend has been across the past 3 months of Q2. 1. Go to the Supply Costs sheet 2. Click in cell J5 3. On the Insert tab on the Ribbon, in the Sparklines group, click the Line button 4. In the dialog box, click in the Data Range field 5. With your mouse, select cells F5:H5 in your table, then click OK 6. Grab the fill handle for cell J5 and drag down to cell J14 to create a Sparkline for those rows as well 7. With the Sparklines selected in column J, on the Sparkline Tools Design contextual tab, click on the Sparkline color button (in the Style group) 8. From the menu select Weight, then 1 ½pt 9. Drag to make column J wider to better display the Sparkline charts 2013 MCS Excel 2016 Intermediate Version

22 Review 1. Make Q2 the active sheet 2. Create a chart for April s Operating Expenses (page 42) Choose the 3-D pie chart (page 32) 3. Create a title (above the pie chart in the chart area) titled: April s Operating Expenses. Make the font Bold and 14pts (page 43) 4. Zoom out of the worksheet by clicking the Zoom Out button on the status bar until it is at 70% 5. Re-locate and resize the chart so the upper left hand corner is in cell H5 and the lower right hand corner is in cell P23 (page 43) 6. Rotate the pie to 170 degrees on the X rotation (page 45) 7. Extract the slice that represents Electric (page 45) 8. Add Percentage data labels displayed on the Outside ends of the slices. (page 46) 9. Make the percentage labels a Bold font. (page 46) 10. Completed chart should look like diagram 1.12 below. Diagram Excel 2016 Intermediate Version MCS

23 7400 E. Orchard Road, Suite 1450 N Greenwood Village, Colorado Ph:

USING FORMULAS AND FUNCTIONS...

USING FORMULAS AND FUNCTIONS... Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS AND FUNCTIONS... 6 BASIC EXCEL REVIEW... 6 FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references... 7 Using a Simple

More information

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

MOVING AND COPYING DATA...

MOVING AND COPYING DATA... Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS... 6 BASIC EXCEL REVIEW... 6 ENTERING FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references... 7 Using a simple cell

More information

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

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

More information

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

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

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 Excel

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

More information

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

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

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

Excel 2013 Intermediate Excel 2013 Intermediate Quick Access Toolbar... 1 Customizing Excel... 2 Keyboard Shortcuts... 2 Navigating the Spreadsheet... 2 Status Bar... 3 Worksheets... 3 Group Column/Row Adjusments... 4 Hiding

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

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

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

Budget Exercise for Intermediate Excel

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

More information

Gloucester County Library System. Excel 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

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

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

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

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

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

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

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

More information

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

Basics of Spreadsheet

Basics of Spreadsheet 106 :: Data Entry Operations 6 Basics of Spreadsheet 6.1 INTRODUCTION A spreadsheet is a large sheet having data and information arranged in rows and columns. As you know, Excel is one of the most widely

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

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

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

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

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen.

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen. Excel is a spreadsheet application that allows for the storing, organizing and manipulation of data that is entered into it. Excel has variety of built in tools that allow users to perform both simple

More information

Excel. Excel Options click the Microsoft Office Button. Go to Excel Options

Excel. Excel Options click the Microsoft Office Button. Go to Excel Options Excel Excel Options click the Microsoft Office Button. Go to Excel Options Templates click the Microsoft Office Button. Go to New Installed Templates Exercise 1: Enter text 1. Open a blank spreadsheet.

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

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

INFORMATION SHEET 24002/1: AN EXCEL PRIMER

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

More information

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

Microsoft Excel 2010 Basics

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

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

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

More information

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

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

MICROSOFT EXCEL BEYOND THE BASICS. MARY ANN WALLNER Contact Information:

MICROSOFT EXCEL BEYOND THE BASICS. MARY ANN WALLNER Contact Information: MICROSOFT EXCEL BEYOND THE BASICS MARY ANN WALLNER Contact Information: walln003@csusm.edu PRESENTING EXCEL Excel can be used for a wide variety of tasks: Creating and maintaining detailed budgets Tracking

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

TABLE OF CONTENTS. i Excel 2016 Basic

TABLE OF CONTENTS. i Excel 2016 Basic i TABLE OF CONTENTS TABLE OF CONTENTS I PREFACE VII 1 INTRODUCING EXCEL 1 1.1 Starting Excel 1 Starting Excel using the Start button in Windows 1 1.2 Screen components 2 Tooltips 3 Title bar 4 Window buttons

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

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

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

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

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

More information

Excel 2010 Charts - Intermediate Excel 2010 Series The University of Akron. Table of Contents COURSE OVERVIEW... 2

Excel 2010 Charts - Intermediate Excel 2010 Series The University of Akron. Table of Contents COURSE OVERVIEW... 2 Table of Contents COURSE OVERVIEW... 2 DISCUSSION... 2 COURSE OBJECTIVES... 2 COURSE TOPICS... 2 LESSON 1: MODIFY CHART ELEMENTS... 3 DISCUSSION... 3 FORMAT A CHART ELEMENT... 4 WORK WITH DATA SERIES...

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Instructor s Excel 2013 Tutorial 2 - Charts Excel 2013 Intermediate 103-124 Unit 2 - Charts Quick Links Chart Concepts Page EX197 EX199 EX200 Selecting Source Data Pages EX198 EX234 EX237 Creating a Chart

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

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

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

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

Intermediate Microsoft Excel

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

More information

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

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

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

More information

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

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

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

More information

Excel Tutorial 1: Getting Started with Excel

Excel Tutorial 1: Getting Started with Excel Excel Tutorial 1: Getting Started with Excel TRUE/FALSE 1. The name of the active workbook appears in the status bar of the Excel window. ANS: F PTS: 1 REF: EX 2 2. The formula bar displays the value or

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 Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

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

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

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

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

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

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

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

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

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

More information

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 2010 Level 1: The Excel Environment

Excel 2010 Level 1: The Excel Environment Excel 2010 Level 1: The Excel Environment Table of Contents The Excel 2010 Environment... 1 The Excel Window... 1 File Tab... 1 The Quick Access Toolbar... 4 Access the Customize the Quick Access Toolbar

More information

Spreadsheet Concepts: Creating Charts in Microsoft Excel

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

More information

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

PA Payroll Exercise for Intermediate Excel

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

More information

Performing Basic Calculations

Performing Basic Calculations 7.1 LESSON 7 Performing Basic Calculations After completing this lesson, you will be able to: Build formulas. Copy formulas. Edit formulas. Use the SUM function and AutoSum. Use the Insert Function feature.

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 Excel Essentials Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 FREQUENTLY USED KEYBOARD SHORTCUTS... 1 FORMATTING CELLS WITH PRESET

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

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

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

More information

EXCEL 2013 FDLRS SUNRISE

EXCEL 2013 FDLRS SUNRISE EXCEL 2013 FDLRS SUNRISE Goal: Participants will create a spreadsheet and graph to document student progress. Objectives: Participants will create a spreadsheet which includes basic formulas. Participants

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

Excel 2013 for Beginners

Excel 2013 for Beginners Excel 2013 for Beginners Class Objective: This class will familiarize you with the basics of using Microsoft Excel. Class Outline: Introduction to Microsoft Excel 2013... 1 Microsoft Excel...2-3 Getting

More information

Microsoft Excel Microsoft Excel

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

More information

Excel 2016: Core Data Analysis, Manipulation, and Presentation; Exam

Excel 2016: Core Data Analysis, Manipulation, and Presentation; Exam Microsoft Office Specialist Excel 2016: Core Data Analysis, Manipulation, and Presentation; Exam 77-727 Successful candidates for the Microsoft Office Specialist Excel 2016 certification exam will have

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

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

INTRO TO EXCEL 2007 TOPICS COVERED. Department of Technology Enhanced Learning Information Technology Systems Division. What s New in Excel

INTRO TO EXCEL 2007 TOPICS COVERED. Department of Technology Enhanced Learning Information Technology Systems Division. What s New in Excel Information Technology Systems Division What s New in Excel 2007... 2 Creating Workbooks... 6 Modifying Workbooks... 7 Entering and Revising Data... 10 Formatting Cells... 11 TOPICS COVERED Formulas...

More information

Contents. Spreadsheet Software ITQ Level 1

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

More information

SUM, AVERAGE, MEDIAN, MIN,

SUM, AVERAGE, MEDIAN, MIN, Lab 3 Activity Name Demonstration Notes Objective 12: Use the SUM, AVERAGE, MEDIAN, MIN, and MAX Functions 5.25 Using the SUM and AVERAGE Functions 5.26 Using the MEDIAN Function Start Excel. Open goaio_1e_08c_script_data.xlsx.

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

Microsoft Excel Level 1 Microsoft Excel 2010 Level 1 Copyright 2010 KSU Department of Information Technology Services This document may be downloaded, printed, or copied for educational use without further permission of the Information

More information

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

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

More information

Project 4 Financials (Excel)

Project 4 Financials (Excel) Project 4 Financials (Excel) Project Objective To offer an introduction to building spreadsheets, creating charts, and entering functions. Part 1 - Financial Projections One of the most important aspects

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Athens-Clarke County Library Page 1 What is a spreadsheet program? Microsoft Excel is an example of a spreadsheet program that will maintain records for you relating to finances, products, activities,

More information

1. Click in cell A2, and then drag to cell D5 to select the data in those four rows and columns.

1. Click in cell A2, and then drag to cell D5 to select the data in those four rows and columns. Training Chart work EXERCISE 1: CREATE A CHART 1. Click in cell A2, and then drag to cell D5 to select the data in those four rows and columns. 2. On the ribbon, click the Insert tab. In the Charts group,

More information

Microsoft Excel 2013: Excel Basics June 2014

Microsoft Excel 2013: Excel Basics June 2014 Microsoft Excel 2013: Excel Basics June 2014 Description Excel is a powerful spreadsheet program. Please note that in this class we will use Excel 2010 or 2013. Learn how to create spreadsheets, enter

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

Contents Microsoft Excel Lesson 1: Entering Text and Numbers...4 The Microsoft Excel Window...4 The Microsoft Office Button...

Contents Microsoft Excel Lesson 1: Entering Text and Numbers...4 The Microsoft Excel Window...4 The Microsoft Office Button... Contents Microsoft Excel 2007...4 Lesson 1: Entering Text and Numbers...4 The Microsoft Excel Window...4 The Microsoft Office Button...5 The Quick Access Toolbar...5 The Title Bar...5 The Ribbon...5 Worksheets...6

More information

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide MICROSOFT OFFICE Courseware: 3263 2 Exam: 77 727 EXCEL 2016 CORE Certification Guide Microsoft Office Specialist 2016 Series Microsoft Excel 2016 Core Certification Guide Lesson 1: Introducing Excel Lesson

More information

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning Review Ch. 15 Spreadsheet and Worksheet Basics 2010, 2006 South-Western, Cengage Learning Excel Worksheet Slide 2 Move Around a Worksheet Use the mouse and scroll bars Use and (or TAB) Use PAGE UP and

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