Advanced Microsoft Excel

Size: px
Start display at page:

Download "Advanced Microsoft Excel"

Transcription

1 Advanced Microsoft Excel Beau's Computer Store January February March 0 Computers Digital Cameras MP3 Players Cell Phones Presented by

2 Table of Contents PMT FUNCTION 1 SUBTOTALS 2 VLOOKUP 4 CONDITIONAL FORMATTING 5 HYPERLINKS 6 DATA VALIDATION 6 LINKING WORKSHEETS WITH FORMULAS 7 ABSOLUTE CELL VALUES 9 Sharper Training Solutions, Inc. offers free, unlimited support by to all participants in our computer workshops. If you have any questions or problems with your computer, or any suggestions or comments on the workshop or this manual, please info@stsico.com Award-Winning Newsletter You re invited to subscribe to Computer Kindergarten, a free newsletter published by Sharper Training Solutions, Inc. As a subscriber, you will receive s about computer topics, articles, websites and current events of interest. Addressed will be topics on Windows, Microsoft Word, Excel, PowerPoint, new hardware and software, the Internet and a wide variety of other computer subjects. Each newsletter has questions from subscribers, a featured topic, computer term of the day, websites of interest and more. To subscribe to the newsletter, send an to info@computerkindergarten.com or talk to your instructor. Important: You can unsubscribe from this newsletter at any time; each edition of the newsletter has instructions on how to unsubscribe. Your address is completely confidential and will never be sold or released under any circumstances. To download the practice file referenced in this book, please visit: 3 Practice.xls We would love to hear your opinion of this class. We strive for excellence in all of our classes and your feedback will help. Please your comments and suggestions to info@stsico.com and include the name, date and location of the class. For a list of upcoming classes at local libraries and community centers, please info@stsico.com or send a stamped, self-addressed envelope to: STSI - Class Schedule, 50 Lee Avenue, Babylon NY Sharper Training Solutions, Inc. All Rights Reserved. Under no circumstances can this manual be reproduced or used in part or whole without express written permission of Sharper Training Solutions, Inc.

3 PMT FUNCTION The PMT function can be used to calculate the amount of your monthly payment of a loan when the Interest Rate, Number of Payments, and Loan Amount are known. If you create a small table with all these values, as shown in the example in the LOAN PAYMENT sheet tab, then you can easily change the interest rate or loan amount to see how it changes the payment. The formula is as follows: =PMT(RATE,NPER,PV) RATE NPER PV The interest rate on your loan. When you build the formula you should enter the rate divided by 12 to get the monthly interest rate. The number of monthly payments in the loan. For example, if the loan is a 30 year mortgage, you would enter either 360 or 30*12 for the number of periods. The present value which is the total amount of the loan. Enter the loan amount as a negative in order to obtain a positive payment. In our example we entered the Interest Rate (RATE) in cell C3, the number of payments (NPER) in cell C4 and the amount of our loan (PV) in cell C5. Based on this, our formula to calculate a monthly payment was: =PMT(C3/12,C4,-C5) Notice we divided the Annual percentage rate by 12 in the formula in order to obtain a true monthly interest rate. We also used the negative of cell C5 for the loan amount. This allows our payment amount to display as a positive amount. We now can change any of the values for the Interest Rate, Number of Payments or Amount of Loan to see what the monthly payments for our loan would amount to. Use the LOAN PAYMENT worksheet to practice Sharper Training Solutions, Inc. All Rights Reserved. 1

4 SUBTOTALS We also looked at the Subtotal feature in Excel. We saw that the Subtotal feature was an easy way to obtain subtotals for certain categories in your data list. Use the SUBTOTAL TAB in this workbook to practice this. Remember, when using the subtotal feature, we first need to sort the list by the category we wish to obtain a subtotal for. In our example, we wanted to get a subtotal for each company in our list. Therefore, we need to sort by company before using the subtotal feature. We sort by highlighting or selecting all of our data (select the whole sheet by clicking the small square in the upper left of the spreadsheet, located above row 1 and to the left of column A - this selects our spreadsheet). CLICK HERE TO SELECT THE WHOLE DATASHEET Once we have selected the data, we click on DATA tab in the menu bar and select SORT from the menu to launch the sort dialogue box. Once our data list is sorted by COMPANY, we can now easily use the Subtotal feature to obtain subtotals for each individual company. In the sort dialogue box, make sure to place a check next to My data has headers in the upper right of the sort dialogue box. This puts the header row cell values into the sort by list boxes as well as keeps the header row from being sorted with the other values. Now in the "Sort by" box, select COMPANY from the drop down list, leave the default of Values in the Sort on drop down list and A to Z in the Order drop down list, then click OK. This will sort our spreadsheet by Company. To apply the Subtotal feature once our list is sorted, click DATA in the menu bar and select SUBTOTAL. The Subtotal dialogue window will appear. We need to select the options we wish to use for our Subtotal feature. Select COMPANY in the At each change in: drop down list. This is why we needed to sort the list first. Excel will now subtotal after each change in Company, i.e. Company 1001, Company 1002, etc in our example Sharper Training Solutions, Inc. All Rights Reserved. 2

5 Select SUM in the Use function: drop down list. The SUM function will add the totals of the columns we select. Place a check in TOTAL PURCHASE for our example. This will apply the SUM function to our TOTAL PURCHASE amounts for each Company. Click OK. We see that our data has now been subtotaled by each change in Company. individual records which comprise the subtotal. usually very useful. In addition, to the left of the row numbers, we see the numbers 1, These represent the detail levels of our subtotal feature. At level 3 (shown above), we see the Company subtotal and all of the If we click level 2, our spreadsheet will display only the Company name and subtotal lines, useful if you need a summary of just company totals. At level 1, we would only see the Grand Total of the list, not Sharper Training Solutions, Inc. All Rights Reserved. 3

6 VLOOKUP The VLOOKUP function is used to return a value based on another cell's value. The function will look up the value you specify in a table (array) of cells and return a value you specify in the same row of the table. Remember, in an earlier class we used the nested IF function, to test a value and return another value, however, we stated that the nested IF can only go seven levels deep, so we would use the VLOOKUP if we had several values levels to set. In our example, we looked up tax rates based on gross income from our salespeople. Use the VLOOKUP tab in our example file to practice. Our tax rate table was listed separately in cells I8 through K27. We calculated our salesperson bonus, using the IF statement, then added the bonus to the sales for their gross income. We then used the VLOOKUP to calculate the tax amount based on their gross income. The formula we used was =VLOOKUP(E8,I8:K27,3) where E8 was the gross income to look up in the first column of the table, I8:K27 was the table array (our tax rate table), and 3 was the column number in the table of the value we wished to return (in this case column 3 of the table contained our tax rate). So our VLOOKUP function will look at the gross income amount in E8, then go down the values of the first column of our tax table until it finds the corresponding value range, then it will return whatever percentage rate is on that same row in the third column (tax rate). Remember, the information in your table needs to be sorted in order in order for the function to return the proper value because it just goes down the first column looking for a value that is not greater than the value you selected. TAX VALUES USED FOR THE TABLE ARRAY TO RETURN THE TAX RATE BASED ON THE GROSS INCOME Note: Remember that the table array (I8:K27) must be the same in each formula, so when copying the formula down make sure that the table array is an absolute value in your first formula and then copy. See last section on using absolute values Sharper Training Solutions, Inc. All Rights Reserved. 4

7 CONDITIONAL FORMATTING Conditional Formatting is used to format cells based on their value. For example, in our Qtr 1 Tab, I applied a conditional format which will display any values less than $100 as Red. To apply a conditional format, highlight the cells you want the conditional format to apply to. Click the HOME tab in the menu bar and select CONDITIONAL FORMATTING Icon. This will open the Conditional Formatting dropdown menu. Select HIGHLIGHT CELLS Rules then select and click Less Than from the cascading menu, this will open the Less Than Conditional Formatting dialogue window. Enter the value you want to test for. In this example, we entered 100 in the respective field. Next, select the Formatting you wish to apply to these cells. I chose RED TEXT from the drop down list. This set my condition to where Excel will apply the selected format to all cells whose value is less than $100. Click OK. Any cell whose value is less than $100 is now displayed in red. TRY IT! Sharper Training Solutions, Inc. All Rights Reserved. 5

8 HYPERLINKS Hyperlinks create shortcuts or links to another cell, tab, file, etc. In our example, we linked the cells containing our QTR 1, 2, 3, and 4 Sales headings on the Regional Totals Tab to each of the respective individual QTR worksheets. To insert a hyperlink to another work sheet, select the cell, click INSERT tab in the menu bar, select HYPERLINK icon. The Insert Hyperlink dialogue box will appear. Choose Place in This Document on the Link to: navigation pane. The Or select a place in this document: field will display all the worksheet tabs in the current workbook. Click the corresponding tab name. In our example we clicked QTR 1. In the Text to display: field at the top of the dialogue box, enter what you want to display or appear in the selected cell with the hyperlink. You may also add a Screen Tip by clicking the ScreenTip button in the dialogue box. Type the message you want to display as a screen tip. The screen tip will display when the user hovers the mouse over the cell with the hyperlink. RESULT: When someone clicks on cell C3, our QTR 1 SALES heading, they will be taken to the QTR 1 worksheet to view all of Quarter 1 details. NOTE: The hyperlinked text to display will appear in the cell as a hyperlink (blue underlined text). You must format it if you want it to appear as normal text. DATA VALIDATION Data Validation is used when you want to be sure a user will only enter specific values in a cell. This is helpful when you have formulas that test for or count specific values. By using the Data Validation feature you can make certain that each user enters the value exactly the same so the resulting formula calculations will be accurate Sharper Training Solutions, Inc. All Rights Reserved. 6

9 For example, one user may enter QTR 1, another may type Quarter 1, and another may type Quarter One. If a formula was used to look for the values based on QTR 1, then the other entries would not be counted. By using a Data Validation list you can have the user select from a list of values in a drop down list. This insures that any formulas using that field value will be accurate. Another use is to limit or confine the entry to a specific list. Let s say I want the Location column of a worksheet to be limited to Nassau, Suffolk, Queens, Brooklyn, Bronx, Manhattan, or Staten Island only. I would create a data validation list for the cells in that column. Use the DATA VAL worksheet in our file. To create a data validation list, select the cell or cells you want the validation to apply to, click DATA tab in the menu bar and select Data Validation arrow, and Data Validation option from the list. The Data Validation dialogue box appears. 1 from the list which you defined. 2 On the Setting tab, enter the validation criteria. For our example, we want to choose LIST from the Allow: drop down box list (1). Then in the source field, type the required list of values: Nassau, Suffolk, Queens, Brooklyn, Bronx, Manhattan, Staten Island, using commas to separate the values. (2) (NOTE: You can also type your list in a column and then select those cells for the source field) Click OK. Your cell will now display a small black arrow when clicked on, indicating that a drop down list exists for that cell. The user clicks on the arrow and selects a value If the user attempts to type something other than a choice in the list, they will receive an error message which can be defined in the Error Alert tab. LINKING WORKSHEETS WITH FORMULAS For linking cells from other worksheets, we used our REGION TOTALS, QTR 1, QTR 2, QTR 3, and QTR 4 worksheets in the practice file. We created a Total rollup worksheet which linked to our Quarterly Totals for each of our regional areas on the corresponding quarterly worksheets. By linking worksheets, we can easily create total or summary sheets which depict an overall view of our combined worksheets. To create the link to the Quarter 1 Sales for the Northwest region, we click the cell we want the linked cell total to appear in. In our example, for the Northwest Region s Qtr 1 Sales, we click on cell C4. Once we select the cell, press the equal key (=) (1) to start our formula in the selected cell Sharper Training Solutions, Inc. All Rights Reserved. 7

10 1 After typing the equal sign, navigate to the QTR 1 worksheet (2) (click QTR 1 tab), then select the cell with the Northwest Region s Quarter 1 totals (3). In our example, we clicked on cell O9, now hit the ENTER key. 3 After pressing ENTER, we are directed back to the REGION TOTALS worksheet and our total from cell O9 on the QTR 1 worksheet has now been entered into the Region Totals worksheet. The formula which was created by our action is = QTR 1!O9 Where QTR 1 (notice the single quotes around the sheet name) is the worksheet tab the formula will navigate to, then the exclamation point (!) and the cell address on that worksheet (O9). So our formula tells Excel to display the value from cell O9 on the worksheet QTR 1. (NOTE: To view the formula, just click on the cell and look at the formula bar or double click on the cell.) Sharper Training Solutions, Inc. All Rights Reserved. 8

11 ABSOLUTE CELL VALUES We discussed RELATIVE cell reference in class 2. We found that when we copied our formula to other cells, Excel used relative cell reference to adjust the formula relative to where we copied it. In class 2, we entered a formula using the SUM function in our first row and copied it down to all other rows. We saw the Excel entered the SUM formula into all the selected cells, however, changed the row number in each formula relative to the row it was being copied to. For example, our first formula was =SUM(B2:E2). When we copied this to the remaining rows, the formula was adjusted to =SUM(B3:E3), then on the next row, =SUM(B4:E4), etc. This relative cell reference allowed us to easily copy formulas to other cells. There will be times when we want to copy an existing formula to other cells and NOT have certain cells in the formula change as we copy it. This is where we use ABSOLUTE CELL REFERENCE. By making a portion of the formula Absolute, this portion of the formula will not change as we copy the formula to other cells it will remain absolute. Please use the ABSOLUTE worksheet in our practice file. In our example, we are going to calculate our annual employee salary budget for the upcoming year based on the projected salary increase percentage. We will place our Projected Salary Increase percentage in a separate cell and use this percentage to project our salary budget for next year. By using this method, we can easily adjust the projected increase and all new salary totals will be updated. We enter our first formula in cell C4 to calculate the new 2007 Salary Increase for employee Mary Jones. Normally our formula for her 2007 increase amount would be =B4*B1. Her current salary in B4 times our projected increase in cell B1. The result shows us $ in cell C4. If we copy this formula down to all the other employees, we will receive some errors and some incorrect amounts as you can see in the example below. Try it! The reason we received all these incorrect results was because when we copied the original formula of =B4*B1 down, Excel used Relative Cell reference. Therefore, the resulting formula in cell C5 became =B5*B2, then in cell C6 the resulting formula would be =B6*B3, then in C7, the resulting formula would be =B7*B4, etc. The original formula changed relative to where it was copied to. This is obviously incorrect. What we need to do is make the Projected Salary Increase an absolute in our formula. This way when we copy it down to the other employees, the projected salary increase percentage in cell B1 is always used. Our original formula in cell C4 was =B4*B Sharper Training Solutions, Inc. All Rights Reserved. 9

12 To make the Projected Salary Increase cell an absolute, we click on cell C4 to select the cell with the original formula. Now click directly on B1 in the formula bar. You will see your insertion point appear in B1 of the formula. INSERTION POINT IN FORMULA BAR Now that the insertion point is located in the cell we want to make an absolute value, press the F4 key on your keyboard. You will see that Excel will add $ in front of the B and in front of the 1. This will make cell B1 an absolute in this formula. The formula will now be =B4*$B$1. Press the ENTER key to accept this. Now copy the formula down to our other employees. As you can see below, the result will be accurate this time because as we copied the formula to other cells, Excel kept the Projected Salary Increase (cell B1 in the formula) constant (absolute) and only changed the first part of our formula, the employees current salary (cell B4) relative to each row the formula was copied to. So the original formula of =B4*$B$1 in cell C4 was copied down and the resulting formula in cell C5 was =B5*$B$1, and in cell C6 the resulting formula was =B6*$B$1, In cell C7 the resulting formula was =B7*$B$1, etc. Cell B1 was an absolute (by adding the $ signs) and remained the same in each formula as it was copied to other cells Sharper Training Solutions, Inc. All Rights Reserved. 10

13

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

Excel Shortcuts Increasing YOUR Productivity

Excel Shortcuts Increasing YOUR Productivity Excel Shortcuts Increasing YOUR Productivity CompuHELP Division of Tommy Harrington Enterprises, Inc. tommy@tommyharrington.com https://www.facebook.com/tommyharringtonextremeexcel Excel Shortcuts Increasing

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 Excel 2016 LEVEL 2

Microsoft Excel 2016 LEVEL 2 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Excel 2016 LEVEL 2 kcls.org/techtutor Microsoft Excel 2016 Level 2 Manual Rev 11/2017 instruction@kcls.org Microsoft Excel 2016 Level 2 Welcome

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

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

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

Payment Function Exercise

Payment Function Exercise Payment Function Exercise Follow the directions below to create a payment function exercise. Read through each individual direction before performing it, like you are following recipe instructions. Remember

More information

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

Excel 2016: Part 2 Functions/Formulas/Charts

Excel 2016: Part 2 Functions/Formulas/Charts Excel 2016: Part 2 Functions/Formulas/Charts Updated: March 2018 Copy cost: $1.30 Getting Started This class requires a basic understanding of Microsoft Excel skills. Please take our introductory class,

More information

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes

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

More information

EXCEL ADVANCED Linda Muchow

EXCEL ADVANCED Linda Muchow EXCEL ADVANCED 2016 Alexandria Technical and Community College Customized Training Technology Specialist 1601 Jefferson Street, Alexandria, MN 56308 320-762-4539 Linda Muchow lindac@alextech.edu 1 Table

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

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

Microsoft Excel Level 2

Microsoft Excel Level 2 Microsoft Excel Level 2 Table of Contents Chapter 1 Working with Excel Templates... 5 What is a Template?... 5 I. Opening a Template... 5 II. Using a Template... 5 III. Creating a Template... 6 Chapter

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

CS10001: Computer Literacy Lab Assignment #3, Part #2

CS10001: Computer Literacy Lab Assignment #3, Part #2 CS10001: Computer Literacy Lab Assignment #3, Part #2 Notes: This lab is an independent study, and the steps are written for Word 2003. If you are using Word 2007 on your personal computer, then you will

More information

Insert Subtotals in Excel and Link Data to a Word Document

Insert Subtotals in Excel and Link Data to a Word Document CHAPTER 1 Integrated Projects More Skills 11 Insert Subtotals in Excel and Link Data to a Word Document In Excel, summary statistics such as totals and averages can be calculated for groups of data by

More information

mirosoft.

mirosoft. 77-882 mirosoft Number: 77-882 Passing Score: 800 Time Limit: 120 min File Version: 0.0 http://www.gratisexam.com Exam A QUESTION 1 You work as a Sales Manager for Rainbow Inc. Your responsibility includes

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

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX394 EX407 Data Validation Pages EX410 EX419 VLOOKUP Pages EX176 EX179 EX489 EX500 IF Pages EX172 EX176 EX466 EX489

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to people in certain situations while others have

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

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

SAMPLE. Excel 2010 Advanced. Excel 2010 Advanced. Excel 2010 Advanced Page 1

SAMPLE. Excel 2010 Advanced. Excel 2010 Advanced. Excel 2010 Advanced Page 1 Excel 2010 Advanced Excel 2010 Advanced Page 1 Excel 2010 Advanced 2010 Cheltenham Courseware Pty. Ltd. www.cheltenhamcourseware.com.au Excel 2010 Advanced Page 2 2010 Cheltenham Courseware Pty. Ltd. All

More information

Excel 2007 Intermediate Table of Contents

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

More information

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection Excel Tips for Compensation Practitioners Weeks 29-38 Data Validation and Protection Week 29 Data Validation and Protection One of the essential roles we need to perform as compensation practitioners is

More information

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word "Qtr3"?

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word Qtr3? Choose The Correct Answer: 1) Study the highlighted cells in the image below and identify which of the following represents the correct cell address for these cells: a) The cell reference for the selected

More information

Create your first workbook

Create your first workbook Create your first workbook You've been asked to enter data in Excel, but you've never worked with Excel. Where do you begin? Or perhaps you have worked in Excel a time or two, but you still wonder how

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

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

Working with Data and Charts

Working with Data and Charts PART 9 Working with Data and Charts In Excel, a formula calculates a value based on the values in other cells of the workbook. Excel displays the result of a formula in a cell as a numeric value. A function

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Excel 2010 Advanced. Excel 2010 Advanced SAMPLE

Excel 2010 Advanced. Excel 2010 Advanced SAMPLE Excel 2010 Advanced Excel 2010 Advanced Excel 2010 Advanced Page 2 2010 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission

More information

2. create the workbook file

2. create the workbook file 2. create the workbook file Excel documents are called workbook files. A workbook can include multiple sheets of information. Excel supports two kinds of sheets for working with data: Worksheets, which

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

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

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

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

Excel Tables and Pivot Tables

Excel Tables and Pivot Tables A) Why use a table in the first place a. Easy to filter and sort if you only sort or filter by one item b. Automatically fills formulas down c. Can easily add a totals row d. Easy formatting with preformatted

More information

EXCEL INTERMEDIATE 2016

EXCEL INTERMEDIATE 2016 EXCEL INTERMEDIATE 2016 Alexandria Technical and Community College Customized Training Technology Specialist 1601 Jefferson Street, Alexandria, MN 56308 320-762-4539 Linda Muchow lindac@alextech.edu 1

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

Microsoft Excel 2016 LEVEL 3

Microsoft Excel 2016 LEVEL 3 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Excel 2016 LEVEL 3 kcls.org/techtutor Microsoft Excel 2016 Level 3 Manual Rev 11/2017 instruction@kcls.org Microsoft Excel 2016 Level 3 Welcome

More information

Making an entry into the CIS Payments workbook

Making an entry into the CIS Payments workbook Making an entry into the CIS Payments workbook By now you should have carried out the CIS Payments workbook Setup. If you have not done so you will need to do this before you can proceed. When you have

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTERMEDIATE MICROSOFT EXCEL 2016 Intermediate Microsoft Excel 2016 (EXC2016.2 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn joined

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Create formulas in Excel

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

More information

Introduction to Excel 2013 Part 2

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

More information

Advanced Formulas and Functions in Microsoft Excel

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

More information

Excel. Spreadsheet functions

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

More information

Excel Part 3 Textbook Addendum

Excel Part 3 Textbook Addendum Excel Part 3 Textbook Addendum 1. Lesson 1 Activity 1-1 Creating Links Data Alert and Alternatives After completing Activity 1-1, you will have created links in individual cells that point to data on other

More information

MICROSOFT OFFICE 2010 EXCEL LEVEL 1 EXERCISE HANDOUT

MICROSOFT OFFICE 2010 EXCEL LEVEL 1 EXERCISE HANDOUT MICROSOFT OFFICE 2010 EXCEL LEVEL 1 EXERCISE HANDOUT Course Highlights Training Centre 5044 52 Street Camrose, AB WWW.BUSINESSIQTRAINING.COM info@businessiqtraining.com 780-672-2672 Course Description

More information

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

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

More information

Excel Advanced

Excel Advanced Excel 2016 - Advanced LINDA MUCHOW Alexandria Technical & Community College 320-762-4539 lindac@alextech.edu Table of Contents Macros... 2 Adding the Developer Tab in Excel 2016... 2 Excel Macro Recorder...

More information

Spreadsheet Basics by Dick Evans, (updated )

Spreadsheet Basics by Dick Evans, (updated ) Spreadsheet Basics by Dick Evans, (updated 2-27-2017) www.rwevans.com What is a spreadsheet? It is a group of values and other data organized into rows and columns much like the columnar pads or ledgers

More information

Using Basic Formulas 4

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

More information

Row 1 is called the header row which contains all the field names. Records start in row 2.

Row 1 is called the header row which contains all the field names. Records start in row 2. Excel: Lists Familiarity with basic Excel is required for this class. Learn to create field names, sort lists, and link worksheets. You'll learn lists that can also be used in our Word: Mail Merge class.

More information

Working with Excel CHAPTER 1

Working with Excel CHAPTER 1 CHAPTER 1 Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to quickly create powerful mathematical, financial, and

More information

Intermediate Excel 2003

Intermediate Excel 2003 Intermediate Excel 2003 Introduction The aim of this document is to introduce some techniques for manipulating data within Excel, including sorting, filtering and how to customise the charts you create.

More information

Advanced Excel Charts : Tables : Pivots

Advanced Excel Charts : Tables : Pivots Advanced Excel Charts : Tables : Pivots Protecting Your Tables/Cells Protecting your cells/tables is a good idea if multiple people have access to your computer or if you want others to be able to look

More information

Microsoft Excel XP. Intermediate

Microsoft Excel XP. Intermediate Microsoft Excel XP Intermediate Jonathan Thomas March 2006 Contents Lesson 1: Headers and Footers...1 Lesson 2: Inserting, Viewing and Deleting Cell Comments...2 Options...2 Lesson 3: Printing Comments...3

More information

Excel Forecasting Tools Review

Excel Forecasting Tools Review Excel Forecasting Tools Review Duke MBA Computer Preparation Excel Forecasting Tools Review Focus The focus of this assignment is on four Excel 2003 forecasting tools: The Data Table, the Scenario Manager,

More information

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to create powerful mathematical, financial, and statistical models

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

Using Excel 2011 at Kennesaw State University

Using Excel 2011 at Kennesaw State University Using Excel 2011 at Kennesaw State University Getting Started Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 - Information Technology Services Kennesaw State

More information

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts Tips and Shortcuts Drag Fill 1. Go to the 2016 Sales Report worksheet. 2. In cell E4 key in the calculation =D4-C4 and hit enter. 3. Go back to cell E4 and put your cursor in the bottom right corner of

More information

Moving and copying data

Moving and copying data L E S S O N 4 Moving and copying data Suggested teaching time 50-60 minutes Lesson objectives To be able to move and copy data, you will: a b c d e Insert rows and ranges by using shortcut menu choices.

More information

MICROSOFT EXCEL 2000 LEVEL 3

MICROSOFT EXCEL 2000 LEVEL 3 MICROSOFT EXCEL 2000 LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL, LOOKUP AND ROUND FUNCTIONS... 7 Using the IF Function... 8 Using Nested IF Functions... 10 Using an AND

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

Intermediate Microsoft Excel 2010 Tables and Printing

Intermediate Microsoft Excel 2010 Tables and Printing John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA 19341 610.280.2666 ccljtc@ccls.org www.ccls.org Intermediate Microsoft Excel 2010 Workshop Topics: Tables o Create tables, use automatic

More information

MICROSOFT EXCEL 2002 (XP): LEVEL 3

MICROSOFT EXCEL 2002 (XP): LEVEL 3 MICROSOFT EXCEL 2002 (XP): LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL LOOKUP AND ROUND FUNCTIONS... 7 Using Lookup Functions... 8 Using the VLOOKUP Function... 8 Using

More information

Mathematical Operators for Excel

Mathematical Operators for Excel EXCEL ADVANCED 1 Mathematical Operators for Excel < > = >=

More information

Excel: Tables, Pivot Tables & More

Excel: Tables, Pivot Tables & More Excel: Tables, Pivot Tables & More February 7, 2019 Sheldon Dueck, MCT dueck21@gmail.com http://bit.ly/pivottables_fmi (Booklet) 1 Contents Tables... 3 Different ways of creating pivot tables... 4 Compact,

More information

MICROSOFT Excel 2010 Advanced Self-Study

MICROSOFT Excel 2010 Advanced Self-Study MICROSOFT Excel 2010 Advanced Self-Study COPYRIGHT This manual is copyrighted: S&G Training Limited. This manual may not be copied, photocopied or reproduced in whole or in part without the written permission

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to only certain types of people while others have

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 Advanced. Excel 2013 Advanced SAMPLE

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE Excel 2013 Advanced Excel 2013 Advanced Excel 2013 Advanced Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission from

More information

Excel 2016 Advanced. North American Edition SAMPLE

Excel 2016 Advanced. North American Edition SAMPLE Excel 2016 Advanced Excel 2016 Advanced North American Edition Excel 2016 Advanced Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without

More information

Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program.

Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program. Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program. Starting Excel Option 1: Click the Start button on the taskbar, then Programs>Microsoft

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

EXCEL 2002 (XP) FOCUS ON: DESIGNING SPREADSHEETS AND WORKBOOKS

EXCEL 2002 (XP) FOCUS ON: DESIGNING SPREADSHEETS AND WORKBOOKS EXCEL 2002 (XP) FOCUS ON: DESIGNING SPREADSHEETS AND WORKBOOKS ABOUT GLOBAL KNOWLEDGE, INC. Global Knowledge, Inc., the world s largest independent provider of integrated IT education solutions, is dedicated

More information

Advanced Excel Selecting and Navigating Cells

Advanced Excel Selecting and Navigating Cells Advanced Excel 2007 One major organizational change in Excel 2007, when compared to 2003, is the introduction of ribbons. Each ribbon reveals many more options depending on what tab is selected. The Help

More information

Excel 2013 Workshop. Prepared by

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

More information

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

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

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

More information

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

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

IF & VLOOKUP Function

IF & VLOOKUP Function IF & VLOOKUP Function If Function An If function is used to make logical comparisons between values, returning a value of either True or False. The if function will carry out a specific operation, based

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

Microsoft Excel is a spreadsheet tool capable of performing calculations, analyzing data and integrating information from different programs.

Microsoft Excel is a spreadsheet tool capable of performing calculations, analyzing data and integrating information from different programs. About the Tutorial Microsoft Excel is a commercial spreadsheet application, written and distributed by Microsoft for Microsoft Windows and Mac OS X. At the time of writing this tutorial the Microsoft excel

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

A B C D E F G H I J K L M 1 Student Test 1 Test 2 Test 3 Test 4 Total AVG. Joe Smith

A B C D E F G H I J K L M 1 Student Test 1 Test 2 Test 3 Test 4 Total AVG. Joe Smith 5.05 Instructions Part 1: Modifying the Worksheet 1. Click on the F in the shaded area at the top of the spreadsheet. This should cause the entire column to become highlighted. 2. Click on the Home tab

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

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

Excel 2016 Advanced SAMPLE

Excel 2016 Advanced SAMPLE Excel 2016 Advanced Excel 2016 Advanced Excel 2016 Advanced Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission from

More information

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE

Excel 2013 Advanced. Excel 2013 Advanced SAMPLE Excel 2013 Advanced Excel 2013 Advanced Excel 2013 Advanced Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written permission from

More information

EXCEL 2010 TIPS & TRICKS

EXCEL 2010 TIPS & TRICKS EXCEL 2010 TIPS & TRICKS Training and Reference Guide Starlight Education Table of Contents Move to the End of a Row or Column of Data... 1 Select Cells Without Scrolling... 1 Select Non-Adjacent Ranges...

More information

The Excel worksheet contains 16,384 rows that extend down the worksheet, numbered 1 through

The Excel worksheet contains 16,384 rows that extend down the worksheet, numbered 1 through Microsoft Excel Microsoft Excel allows you to create professional spreadsheets and charts. It performs numerous functions and formulas to assist you in your projects. The Excel screen is devoted to the

More information

Microsoft Excel 2007

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

More information

Les s on Objectives. Student Files Us ed. Student Files Crea ted

Les s on Objectives. Student Files Us ed. Student Files Crea ted Lesson 10 - Pivot Tables 103 Lesson 10 P ivot T ables Les s on Topics Creating a Pivot Table Exercise: Creating a Balance Summary Formatting a Pivot Table Creating a Calculated Field Les s on Objectives

More information