Excel Intermediate

Size: px
Start display at page:

Download "Excel Intermediate"

Transcription

1 Excel Intermediate ( ) 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 AND and OR Pages EX470 EX480 ISBLANK Pages IFERROR Pages EX500 EX502 SUMIF, COUNTIF, Pages EX511 EX517 AVERAGEIF PMT Pages EX192 EX197 NPER Pages EX192, EX197 FV Page EX192, EX197 Round Pages EX141 Protecting Cells Pages EX420 EX425 This icon designates that a recorded lecture for the designated topic is available on my website 1

2 Range Names Excel allows you to assign a name to a cell or a range of cells Make formulas easier to build and read Range names are always absolute references Note this prevents you from copying formulas that need to be updated With Go To command, easier navigation Easy printing Range names cannot contain spaces and cannot look like a cell address (FY2013 is not legal) Hard way: InsertNameDefine Easy way Select range to name Type name in the Name Box (to left of formula bar) Press ENTER. If you skip this step, the name will not be saved. To see what range defines Select name from Name Box Cells are highlighted Good for navigation. Move to different sheets or areas of large sheets To use name in formula Type name where appropriate, or As you type, Excel displays a list of functions, named ranges and tables that start with the characters you have typed. Point to the appropriate name and double click You can also choose in the Defined Names group of the Formulas Ribbon Press F3 to display a popup window that contains all the defined names. Select the name and paste it in your formula To remove a defined range name, select the Name Manager button in the Defined Names group of the Formulas Ribbon This dialog box also allows you to redefine the range associated with a name. 2

3 Int Excel 5.1: Table Formulas Data tables define names for cells automatically based on the column headers (field name). To use a table field name in a formula, surround the field name with [square brackets] Example: =[Order Total] * [Tax Rate] Note if you use point and shoot to create a formula using table fields, Excel inserts before the field name along with a second set of brackets. These seem to be optional. =[@[Order Total]] * [@[Tax Rate]] If your workbook has more than one table in it, you must precede the field name with the table name Even if the field name is unique only defined in one table. =Invoice[Order Total] * Invoice[Tax Rate] 3

4 Data Validation Int Excel 5.2: Data Validation Can check to ensure correct type of data is entered (text, value, date) Can check for appropriate range of values Specifying validation rules: Select the cell(s) to be validated Choose the Data Validation button Data Ribbon, Data Tools group Select allowable type under Allow: Under Data:, choose a comparison operator Enter the appropriate comparison values For multiple conditions, use the AND or OR functions Optionally, include input instructions Appear as a Screen Tip next to cell when cell is active Select the Input Message tab Type a title for the box Type the instructions you d like to display Specify error style and message Warning Yes: leave value and continue No: leave value but stay in this cell Cancel: restore original value, stay in this cell Information: OK: leave value and continue Cancel: restore original value, stay in cell Stop Retry: Leave value (to edit) and stay in cell Cancel: restore original value, stay in cell 4

5 Copying Validation If you forget to select a range of cells before setting validation rules, you can still copy the validation rules to the other cells. Use the Fill Handle to copy the data validation to other cells If the other cells already contain data, this technique won t work (the data will be replaced along with the data validation) You cannot use the Fill Formatting Only option to solve this problem. Alternative 2: Let s say you added validation to cell C2 (forgetting to select the rest of the cells in that column). To copy the validation: Select the cell with data validation defined (C2) and all the other cells that should include that validation. Click the Data Validation button The following dialog box will appear because the first cell has validation and the others don t. Click Yes to extend (copy) the data validation to the other cells. 5

6 List Validation In some circumstances, the values you want the user to enter come from a predefined list. You can force the user to select from this list. Define a Data Validation (see above) Choose List under allow Designate where the acceptable values are Select the cells that contain the acceptable values You can enter a range of cells from another sheet You can also enter a named range from another sheet (Formulas, ) You can also type a custom list of acceptable values that do not appear in the workbook at all. In the Source: box, simply type the acceptable values separated by commas No quotation marks required around values When the user clicks in a cell with List validation a drop down arrow will appear. When the user clicks the drop down arrow, the list of acceptable values appears. The user can still enter the values manually If the validation uses the Warning error alert, the user can override the list values. 6

7 Advanced Functions VLOOKUP Int Excel 5.3: Lookup Functions Allows you to lookup a value in a table based on another value Can do range matching or exact matching When doing range lookup, construct the table defining the LOWEST value for each range Define the ranges from the smallest to the largest values. Wizard helps build the formula VLOOKUP(valuetolookup, lookuptable, columntotransfer[, rangelookup]) valuetolookup: the value (usually a cell reference) whose corresponding value is to be found (looked up) in the lookup table lookuptable: the range of cells that define the lookup table Tip: Define the lookup table as a data table and give it a name If you do not use a data table, the lookup table cell range must not include any headers columntotransfer: column number in lookup table Left-most column is number 1 Lookup values must be in this column Results usually in the next column (2) rangelookup Enter TRUE if the lookup table contains ranges of data Note: rangelookup is optional. If you leave it off, TRUE is used. Enter FALSE if the lookup table contains exact values Note there is also a lesser used HLOOKUP function that looks below the lookup value instead of to the right. 7

8 Creating Vertical Lookup Tables There are two kinds of lookup tables: Exact Value Lookup tables and Range Lookup tables Each kind of table includes at least two columns of data The first column contains the compare values to be looked up An example might be a column of student IDs The subsequent column(s) contain corresponding values (that correspond to the value in the same row of the first column) Examples might include: student name (that corresponds to the ID in the first column) and/or student phone number (that corresponds to the ID in the first column) Remember, there can be as many corresponding columns as you need (see video) Creating an Exact Value Lookup Table The table above is an example of an Exact Value Lookup Table Often, Exact Value Lookup tables have text as compare values in the first column Note the lookup table does not need to be defined starting in A1 lookup tables can be located anywhere They are often stored in separate worksheets Note if you are designating the lookup table as a range of cells (instead of a table name), do not include the column headers in the range Exact lookup table compare values (column 1) do not need to be in any particular order. 8

9 Example: =VLOOKUP(F12, ScoreLU, 2, FALSE) =VLOOKUP(F12, D2:E5, 2, FALSE) This lookup function looks in cell F12 and compares that value to the values in the first column of the lookup table. ScoreLU is the name of the table I like to include LU in the table name: LU is short for lookup. This is optional. The second example uses D2:E5 is the range of cells that define the table We re assuming the header cells are in row 1 Note the headers are NOT included in the range designation Remember, you can also define a name for the range and use that in place of D2:E5 2 is the column whose corresponding value we want the VLOOKUP function to return Remember the compare values are always designated as column 1. You cannot use the column letter (E) instead FALSE designates this in NOT a range lookup You MUST designate FALSE for exact value lookups If F12 contains the value Quiz, the VLOOKUP function would display the value 20 9

10 Creating a Range Lookup Table The table above is an example of an Range Lookup Table Range Lookup tables usually have numbers as compare values in the first column, though dates and text can also be used Note the lookup table does not need to be defined starting in A1 lookup tables can be located anywhere They are often stored in separate worksheets Note if you are designating the lookup table as a range of cells (instead of a table name), do not include the column headers in the range Range lookup table compare values (column 1) must be in numeric order from smallest to largest Text compare values must be alphabetical, A-Z Each value represents the minimum value required to return the value in the corresponding column. Excel works its way down the compare column until it discovers a value larger than the lookup value. It then uses the previous row. A lookup value of 50 would return E A lookup value of 75 would return C A lookup value of 97 would return A (any value 90 or more would return A) 10

11 Example: =VLOOKUP(W123, GradeLU, 2) This lookup function looks in cell W123 and compares that value to the values in the first column of the lookup table. GradeLU is the table name (or range name) that defines the lookup table Assuming the header cells are in row 1, GradeLU would be defined as G2:H6 when not defined as a table Note the headers are NOT included in the range designation G2:H6 could also have been used in the function 2 is the column whose corresponding value we want the VLOOKUP function to return Remember the compare values are always designated as column 1. You cannot use the column letter (E) instead The rangelookup value has been omitted. Remember this is the same as entering TRUE You could designate TRUE for a range lookup if you wish If W123 contains the value 79.3, the VLOOKUP function would display C 11

12 IF Excel 5.4 Logical Functions Allows you to enter one of two values into a cell based on a condition Again, formula wizard helps IF(condition, value-if-true, value-if-false) Can be nested to create complex conditions value-if-true part (or value-if-false part) is replaced by another IF function (with a condition and true and false parts of its own) Example (convert program code into program name unless data is missing) IF(P1="","",IF(P1=" ","Programming", "Networking")) I often use IF statements to hide formulas that don t yet have a value because the cells used in the formula don t have any values. Create the correct formula Wrap an IF statement around the formula to hide the formula results when the data is missing. Other logical functions such as AND and OR allow you to create even more complex conditions. 12

13 Using IF to hide formulas where data is missing In many of my worksheets, I want to enter formulas in advance, even before the user has entered data. Unfortunately, when you do this, Excel tries to evaluate the formula and either displays 0 or, if functions are used, an error message. In the example above, the data for April and May is not yet available. The worksheet would look more professional if the zeroes were hidden until the data is available. We can use an IF function to hide the formulas where the data is missing. I like to enter all the formulas first to ensure the formulas calculate correctly. Then, I wrap an IF function around the original formula. Cell D2 contains the formula =B2+C2. This is how I d wrap an IF formula around that formula: =IF(B2="", "", B2+C2) Note the original formula (B2+C2) appears as the False part of the IF function The condition for the IF function contains B2="" I m checking to see if B2 (one of the formula values) is empty by comparing it to the empty string (two quotes right next to each other). If the condition is true (no data), I store the empty string in the cell. Instead of B2="",you could use the ISBLANK function: IF(ISBLANK(B2).Both conditions give the same results I chose to check to see if B2 was blank. We could have checked C2 instead, or, if you really want to get complicated, check them both (OR function). 13

14 Let s do another wrap an IF function around it example: Cell F2 contains the formula: =C2/$D2 (formatted for %) After wrapping an IF function around it (to display nothing when the data is missing), the formula looks like this: =IF(C2="", "",C2/$D2 ) Again, note the original formula appears as the False component of the IF function (at the end) Note how this example and the first example both start with: =IF(x9="", "", (where x9 is replaced with a cell reference) Summary: So, to wrap an IF function around a formula, Add =IF(x9="", "", to the beginning of the original formula (replacing x9 with the appropriate cell reference) (note there are two commas) Add a closing parenthesis to the end of the formula (to end the IF function) Copy the formula as appropriate When the missing data becomes available, the Total and percentages automatically, magically appear. 14

15 And and Or Functions Int Excel 5.4: Logical Functions The IF function only allows you to check the status of one condition. In some circumstances, you ll need to check two or more conditions. The AND function allows you to designate two or more conditions and returns TRUE only if all the conditions evaluate to true (false if any one condition is false) The OR function allows you to designate two or more conditions and return TRUE if any one of the conditions is true (false if all are false) The AND and OR functions are normally embedded in the IF function (condition part) After the function name (AND or OR), the list of conditions is placed inside parenthesis; each condition separated from the next with a comma Examples =IF(AND(B2="Hourly", C2>=5),2, 1) (if the employee is hourly and has at least 5 years experience, the employee receives 2 weeks vacation, otherwise, they get 1 week.) ISBLANK =IF(OR(H1="Stevens Point", H1="Plover", H1="Rosholt"), "Portage", "Wood") (if the city (H1) is Stevens Point, Plover, or Rosholt, the county is set to Portage; otherwise it is set to Wood. Assumes only those counties are possible) Determines if cell is blank (true) or not (false) ISBLANK(celladdress) Normally used with IF statement Equivalent to celladdress = "" UNLESS celladdress contains a formula. A cell with a formula in it is never blank (ISBLANK returns false). IF function may display the empty string in a cell, but because the cell contains a formula, it is not blank, even though it looks like it. I prefer celladdress="" because it behaves properly whether the cell contains a value or a formula 15

16 IFERROR Displays a designated value when the original equation causes an error IFERROR(VLOOKUP(F12, ScoreLU, 2, FALSE), "Unrecognized test name.") Normally, used in place of an IF statement See a list of the errors ISERROR recognizes in the text Great for sensing the compare value of an exact match VLOOKUP is not in the table (causes #N/A error) If the expression (VLOOKUP in example) causes an error the Unrecognized text name. message is displayed in the cell. Otherwise the result of the VLOOKUP is displayed. Tip: Use my wrap an IF statement around it technique described above to wrap an IFERROR around an existing equation. I m not a big fan of IFERROR. Data validation should catch illegal values which cause IFERROR to display the error message My wrap and IF around it technique handle circumstances where data is missing. 16

17 SUMIF, COUNTIF, AVERAGEIF Excel 5.5: COUNTIF, SUMIF, AVERAGEIF Counts, totals, or averages cells that meet a given condition COUNTIF(rangetocount, condition) SUMIF(rangeforcondition, condition, rangetosum) AVERAGEIF(rangeforcondition, condition, rangetoaverage) Note you can use a range, a named range or a table field name for the ranges designated above. Remember, if your workbook has more than one table, you ll have to precede the field name with the table name: Employee[Location] When typing manually, condition must be in quotes For SUMIF and AVERAGEIF rangeforcondition contains the range of cells that the condition should be applied to Might be a range of campus values rangetosum/average contains the range of cells that should be added/averaged if the condition is met Might be a range of GPA values if rangeforcondition is the same as rangetosum/average, rangetosum/average can be omitted 17

18 PMT Int Excel 5.6: PMT, FV, NPER Calculates the payment for a loan PMT(rateperperiod, #periods, principal) NPER (PV) Watch rate per period. Most interest rates quoted annually, need to divide by twelve (periods per year) PMT returns a negative value. All financial functions can be used for investments or loans. If you d rather a positive value (most likely), you can change the formula in one of two ways: Add a minus sign before PMT Add a minus sign before principal Calculates the number of payments ( How long will it take to pay off the loan if I can afford to pay this much? ) NPER(rateperperiod, paymentperperiod, -PVprincipal) Note location of minus sign Again, remember rate per period! Put a minus sign in front of the present value, NOT in front of the whole formula NPER (FV) Determines how long it will take to accumulate X amount of money if invest a fixed amount every period at a fixed rate. NPER(rateperperiod, paymentperperiod,,-fvprincipal) Put a minus sign in front of the present value, NOT in front of the whole formula 18

19 FV (Future Value) Determines the value of periodic investments after a certain amount of time (fixed interest) Here, you can add the minus sign before the formula or after the payment. FV(rateperperiod, #periods, -payment) ROUND When Excel does calculations, it stores as many decimal places as it can in the result. Often, though, you will format the results of the calculation to hide extra decimal places. For future calculations, Excel still uses all the decimal places even though you only see 2 decimal places. This can cause problems when you do calculations and then calculate a sum of those calculations (among other situations). Because of rounding, when the formulas are displayed, the grand total may not be correct (consistent). This can be quite embarrassing. Only occurs when dividing or multiplying by a fraction. Use the ROUND function to tell Excel to throw away extra decimal places and use the rounded value for future calculations. Normally, you ll tell Excel to round to the same number of decimal places you re displaying. ROUND(celladdress, # of places) ROUND(formula, # of places) 19

20 Protecting Cells Int Excel 5.7: Protecting Workbooks Experienced users know how to correct errors when they accidentally delete formulas or change labels. Inexperienced users may not. To keep inexperienced users from accidentally changing labels or formulas (which should remain fixed after the workbook is tested), you can protect cells of a worksheet by locking them. Users can view protected cells, but cannot delete or modify them Excel has a goofy way of protecting its cells. This goofy way keeps inexperienced users from accidentally unprotecting protected cells. In Excel, you don t protect individual cells, you protect entire worksheets To start with (by default), the worksheet is unprotected, but all cells have locks in them (have the potential to be locked) First have to remove the locks in the cells you want the user to have access to. Then, protect the worksheet, which closes the locks in the cells where you didn t remove them Steps Highlight cells that are to be left Unlocked Try select all, then Ctrl-Click the cells you want locked to deselect them Access Format Cells dialog box (right-click) Choose the Protection tab Uncheck Lock check box (this removes the lock) Click the Protect Sheet button in the Changes group of the Review Ribbon. Select what capabilities you want the user to have in regard to the locked cells. To provide even greater protection (from people who find the Unprotect Worksheet button and abuse it), you can also add a password that is required to unprotect the worksheet. You can also keep the user from changing a chart sheet Simply protect the worksheet (chart sheet) 20

21 Starting in Excel 2010, there is a new, somewhat more logical way to unprotect the cells you want to give the user access to. Open the worksheet to unlock cells in Click the in the Changes group of the Review Ribbon. Click the button in the Allow Users to Edit Ranges dialog box Designate a title for the range (optional) Highlight the range of cells the user can edit (unlocked). Note you can define a collection of cells and unlock them all Define a password for the range (optional) Repeat the above for all ranges that should be unlocked Click the Protect Sheet button in the Changes group of the Review Ribbon. Select what capabilities you want the user to have in regard to the locked cells. 21

22 Protecting the Workbook The workbook itself can also be protected. This prevents the user from moving, renaming, deleting worksheets Click the Protect Workbook button in the Changes group of the Review Ribbon. Choose Protect Structure and Windows from the popup menu If you are displaying multiple Excel workbooks in the same window, click the Windows checkbox in the dialog box to keep the user from rearranging the windows. Add a password (optional) if you want one to unlock the workbooks. To unlock the workbook, select the Protect Workbook button again and click Protect Structure and Windows again to deselect it. Note protecting cells and workbooks are separate processes. Protecting a worksheet s cells does not protect the worksheet itself. Protecting a worksheet (using Protect Workbook) does not protect (lock) any cells in the worksheet. 22

Excel Intermediate

Excel Intermediate Excel 2010 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX376 EX379 EX423 EX435 Data Validation Pages EX438 EX444 VLOOKUP Pages EX387 EX394 IF Pages EX151 EX155 EX367 EX376

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

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

Making Excel Work for Your Tribal Community

Making Excel Work for Your Tribal Community Making Excel Work for Your Tribal Community Excel Basics: Intermediate Skills PHONE: 1-800-871-8702 EMAIL: INFO@CBC4TRIBES.ORG WEB: TRIBALINFORMATIONEXCHANGE.ORG MAKING EXCEL WORK FOR YOUR TRIBAL COMMUNITY

More information

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

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

More information

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

Tips & Tricks: MS Excel

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

More information

Excel Level 3 - Advanced

Excel Level 3 - Advanced Excel Level 3 - Advanced Introduction This document covers some of the more advanced features of Excel. Spreadsheets can be used in such a multiplicity of ways that it cannot hope to even touch on all

More information

Lesson 3: Logic and Reference Functions

Lesson 3: Logic and Reference Functions Lesson 3: Logic and Reference Functions This Video Excel Educator - Looking Back Lesson 1 Excel Basics Lesson 2 Formulas and Functions Excel Educator - Looking Ahead Lesson 3 - Logic & Reference Functions

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Multiple Worksheets Quick Links Manipulating Sheets Pages EX16 EX17 Copying Worksheets Page EX337 Grouping Worksheets Pages EX330 EX332 Multi-Sheet Cell References Page

More information

Microsoft Office Excel Use Excel s functions. Tutorial 2 Working With Formulas and Functions

Microsoft Office Excel Use Excel s functions. Tutorial 2 Working With Formulas and Functions Microsoft Office Excel 2003 Tutorial 2 Working With Formulas and Functions 1 Use Excel s functions You can easily calculate the sum of a large number of cells by using a function. A function is a predefined,

More information

Formulas and Functions

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

More information

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

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

Microsoft Office Excel 2010: Advanced. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Advanced Course Length: 1 Day Course Overview This course builds on the skills and concepts taught in Excel 2010: Intermediate. Students will work with advanced formulas, as

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

1. Two types of sheets used in a workbook- chart sheets and worksheets

1. Two types of sheets used in a workbook- chart sheets and worksheets Quick Check Answers Session 1.1 1. Two types of sheets used in a workbook- chart sheets and worksheets 2. Identify the active cell- The active cell is surrounded by a thick border and its cell reference

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

All Excel Topics Page 1 of 11

All Excel Topics Page 1 of 11 All Excel Topics Page 1 of 11 All Excel Topics All of the Excel topics covered during training are listed below. Pick relevant topics and tailor a course to meet your needs. Select a topic to find out

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED EXCEL ADVANCED Overview OVERVIEW... 2 ADVANCED FORMULAS... 4 VIEW THE PROJECT... 4 Viewing Available Excel Functions... 5 Help with Functions... 6 TEXT FUNCTIONS... 7 Text Functions Used in this Section:...

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel in Excel Although calculations are one of the main uses for spreadsheets, Excel can do most of the hard work for you by using a formula. When you enter a formula in to a spreadsheet

More information

Microsoft Office Excel 2007

Microsoft Office Excel 2007 Microsoft Office Excel 2007 Data Processing in Spreadsheets 1/28/2009 Microsoft Excel 1 Use Excel s functions! A function is a predefined (built-in) formula for commonly used calculations. Each Excel function

More information

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page Lesson 4: Auditing and Additional Formulas Return to the FastCourse Excel 2007 Level 3 book page Lesson Objectives After studying this lesson, you will be able to: Use 3-D cell references in formulas to

More information

Excel Boot Camp PIONEER TRAINING, INC.

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

More information

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

Working with Formulas and Functions

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

More information

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

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

Excel Formulas 2018 Cindy Kredo Page 1 of 23

Excel Formulas 2018 Cindy Kredo Page 1 of 23 Excel file: Excel_Formulas_BeyondIntro_Data.xlsx Lab One: Sumif, AverageIf and Countif Goal: On the Demographics tab add formulas in Cells C32, D32 and E32 using the above functions. Use the cross-hair

More information

MICROSOFT EXCEL 2003 LEVEL 3

MICROSOFT EXCEL 2003 LEVEL 3 MICROSOFT EXCEL 2003 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 the

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

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

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

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 Table of contents The use of range names 1 DESCRIPTION 1 TO DEFINE A NAME 2 USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 THE ROUND FUNCTION 7 THE SUMIF

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

Excel Formulas Cheat Sheet

Excel Formulas Cheat Sheet Basic Formulas AVERAGE =AVERAGE(A2:A10) Returns a mathematical average of a given cell range COUNT =COUNT(A2:A10) Returns the count of the numbers in given cell range MAX =MAX(A2:A10) Finds the largest

More information

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Week 9 Using lookup functions Microsoft Excel is essentially a spreadsheet tool, while Microsoft Access is a database tool.

More information

LECTURE 10. SPREADSHEET

LECTURE 10. SPREADSHEET LECTURE 10. SPREADSHEET Those who excel in virtue have the best right of all to rebel, but then they are of all men the least inclined to do so. Aristotle S.M. Sitompul (2016 version) MODULE OVERVIEW Part

More information

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

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

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

Key concepts through Excel Basic videos 01 to 25

Key concepts through Excel Basic videos 01 to 25 Key concepts through Excel Basic videos 01 to 25 1) Row and Colum make up Cell 2) All Cells = Worksheet = Sheet 3) Name of Sheet is in Sheet Tab 4) All Worksheets = Workbook File 5) Default Alignment In

More information

Mathematical Operators for Excel

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

More information

Excel FDLRS Sunrise

Excel FDLRS Sunrise Excel 2010 FDLRS Sunrise Within 2 weeks participants will submit a project: Create an Excel spreadsheet with a chart include the completed and signed ARROW form Send to: Lourdes Day FDLRS (Bartow Airport)

More information

Excel 2. Module 2 Formulas & Functions

Excel 2. Module 2 Formulas & Functions Excel 2 Module 2 Formulas & Functions Revised 1/1/17 People s Resource Center Module Overview This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this lesson

More information

Validate and Protect Data

Validate and Protect Data Validate and Protect Data Chapter 8 Objectives In this section you will Restrict Data Entry to a Cell Test the Data Entered in a Cell for Validity Display Instructions for Data Entry Display Error Messages

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

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

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu TABLE OF CONTENTS Introduction... 1

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

Pivot Tables, Lookup Tables and Scenarios

Pivot Tables, Lookup Tables and Scenarios Introduction Format and manipulate data using pivot tables. Using a grading sheet as and example you will be shown how to set up and use lookup tables and scenarios. Contents Introduction Contents Pivot

More information

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2 i TABLE OF CONTENTS 1 INTRODUCTION 1 1.1 Method 1 1.2 Software and other settings 2 1.3 Exercise files 2 2 MULTIPLE WORKSHEETS 3 2.1 Working with multiple worksheets 3 Adding a worksheet 4 Deleting a worksheet

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

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Files in Microsoft Excel are referred to as Workbooks. This is because they can contain more than one sheet. The number of sheets a workbook can contain is only limited by your computer

More information

CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions

CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions Objectives Create and manipulate a table Deleting duplicate records Delete sheets in a workbook Add calculated columns

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

ADD AND NAME WORKSHEETS

ADD AND NAME WORKSHEETS 1 INTERMEDIATE EXCEL While its primary function is to be a number cruncher, Excel is a versatile program that is used in a variety of ways. Because it easily organizes, manages, and displays information,

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

EVALUATION ONLY. In this lesson, you will use advanced. Functions EXCEL 2013 CASE STUDY: ANALYZING A FUNDRAISING CAMPAIGN LEARNING OBJECTIVES

EVALUATION ONLY. In this lesson, you will use advanced. Functions EXCEL 2013 CASE STUDY: ANALYZING A FUNDRAISING CAMPAIGN LEARNING OBJECTIVES EXCEL 2013 3Applying Advanced Functions In this lesson, you will use advanced functions and what-if analyses to facilitate decision making. Complex worksheets for decision making often require advanced

More information

Introduction to Excel 2007

Introduction to Excel 2007 Introduction to Excel 2007 These documents are based on and developed from information published in the LTS Online Help Collection (www.uwec.edu/help) developed by the University of Wisconsin Eau Claire

More information

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

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

More information

Excel 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

Excel 2010 Tutorials - Video File Attributes

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

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

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

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

Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure.

Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure. MATHS AND STATISTICAL FUNCTIONS Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure. For example, the SUM function

More information

Section 1 Microsoft Excel Overview

Section 1 Microsoft Excel Overview Course Topics: I. MS Excel Overview II. Review of Pasting and Editing Formulas III. Formatting Worksheets and Cells IV. Creating Templates V. Moving and Navigating Worksheets VI. Protecting Sheets VII.

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

Excel Tutorials - File Size & Duration

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

More information

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

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

Themes & Templates Applying a theme Customizing a theme Creatingfilefromtemplate Creating yourowncustomize Template Using templates Editing templates

Themes & Templates Applying a theme Customizing a theme Creatingfilefromtemplate Creating yourowncustomize Template Using templates Editing templates Introducing Excel Understanding Workbooks and Worksheets Moving around a Worksheet Introducing the Ribbon Accessing the Ribbon by using your keyboard Using Shortcut Menus Customizing Your Quick Access

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

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

Lecture-14 Lookup Functions

Lecture-14 Lookup Functions Lecture-14 Lookup Functions How do I write a formula to compute tax rates based on income? Given a product ID, how can I look up the product s price? Suppose that a product s price changes over time. I

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

Index. calculated columns in tables, switching on, 58 calculation options (manual and automatic), 132 case sensitive filter, implementing, 37

Index. calculated columns in tables, switching on, 58 calculation options (manual and automatic), 132 case sensitive filter, implementing, 37 Index # #All special item, 57 #Data special item, 56 #Header special item, 57 #ThisRow special item, 57 #Totals special item, 57 A absolute and relative cell references, 110 accept/reject changes to a

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

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE EXCEL INTERMEDIATE Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS AND FUNCTIONS... 6 BASIC EXCEL REVIEW... 6 FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references...

More information

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

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam s Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-602) and provides references to corresponding coverage

More information

Getting Started with Excel

Getting Started with Excel Getting Started with Excel Excel Files The files that Excel stores spreadsheets in are called workbooks. A workbook is made up of individual worksheets. Each sheet is identified by a sheet name which appears

More information

ICT IGCSE Practical Revision Presentation Spreadsheets. Columns. Rows. This is a range of cells. More than one cell has been selected.

ICT IGCSE Practical Revision Presentation Spreadsheets. Columns. Rows. This is a range of cells. More than one cell has been selected. Cell References Columns Rows Column Reference G Yellow Cell Reference B2 Green Cell Reference D3 This is a range of cells. More than one cell has been selected. G6:G11 From Row 6 To 11 A range will be

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

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

THE GLOBAL CHILDREN'S FUND INC Buford Hwy, Ste 222 Atlanta, GA ADVANCED EXCEL TIPS

THE GLOBAL CHILDREN'S FUND INC Buford Hwy, Ste 222 Atlanta, GA ADVANCED EXCEL TIPS ADVANCED EXCEL TIPS 1. HOW TO INSERT A COMMENT: you can right-click on the cell with the comment and select Edit Comment to edit. Similarly, right-click and select Delete Comment to delete 2. HOW TO FORMAT

More information

Ahmad Al-Rjoub Excel Tutorial 7. Using Advanced Functions, Conditional Formatting, and Filtering

Ahmad Al-Rjoub Excel Tutorial 7. Using Advanced Functions, Conditional Formatting, and Filtering Ahmad Al-Rjoub Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering Objectives Evaluate a single condition using the IF function Evaluate multiple conditions using the AND function

More information

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet!

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Hi folks! Before beginning the article, I just wanted to thank Brian Allan for starting an interesting discussion on what Strong at Excel means

More information

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

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

More information

Using Advanced Formulas and 9 Securing Workbooks

Using Advanced Formulas and 9 Securing Workbooks Using Advanced Formulas and 9 Securing Workbooks LESSON SKILL MATRIX Skill Exam Objective Objective Number Using Formulas to Conditionally Use a series of conditional 5.4.3 Summarize Data logic values

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

Open Learning Guide. Microsoft Excel Introductory. Release OL356v1

Open Learning Guide. Microsoft Excel Introductory. Release OL356v1 Guide Microsoft Excel 2013 Introductory Note: Microsoft, Excel and Windows are registered trademarks of the Microsoft Corporation. Release OL356v1 Contents SECTION 1 FUNDAMENTALS... 9 1 - SPREADSHEET PRINCIPLES...

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

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

EXCEL INTERMEDIATE 1

EXCEL INTERMEDIATE 1 EXCEL INTERMEDIATE 1 WORKSHEETS Worksheet Tabs Rename by double clicking Can be moved by click and drag Change colour by right click and choose Tab Color Grouping worksheets by clicking ctrl and tab Allows

More information