Excel Formulas 2018 Cindy Kredo Page 1 of 23

Size: px
Start display at page:

Download "Excel Formulas 2018 Cindy Kredo Page 1 of 23"

Transcription

1 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 mouse pointer to copy the formulas down into cells C33 through E34. How? The following steps will use a slightly different method for each formula. 1. Select the Demographics tab. 2. Position Cursor in cell C Go to the Formula Ribbon, Math and Trig Category Select SUMIF as shown (NOT SUMIFS!) 4. The wizard dialog will open. With the mouse cursor in the Range box, hold down the left mouse button and drag over Cells C2 through C30 (it is easier if you start from the bottom!). This will enter C2:C30 in the Range box. 5. Let go of the left mouse button. Press the F4 function key to add absolute references ($) (see image below). 6. Position mouse cursor in the Criteria box. Click on Cell B Position mouse cursor in the Sum_Range box. Hold down the left mouse button and drag over Cells D2 through D30. Once again, use the F4 function key to add absolute references. Excel Formulas 2018 Cindy Kredo Page 1 of 23

2 Observe: when using the ribbon function library as we just did, there is no need to type the equal sign at the beginning of the formula OR the name of the function. Excel will do it for you. We will tackle the next formula differently, typing the equal sign, the function name, and the beginning parenthesis before using the wizard. 8. Position Cursor in cell D Type =Averageif( in the cell. As long as you include the beginning parenthesis, the next step will open the wizard. 10. Click on the fx button to open the wizard. 11. Complete the wizard as follows, using similar methods as was done for the SUMIF formula. Don t forget the Function F4 key (we are adding the dollar signs, called absolute references, to our formulas so that when we finish the formulas in row 32 we can simply copy them down through row 34 we will do that last!) 12. Next we want to count the number of kids who meet the race criteria. We will use the function COUNTIF. This one is easier than a SUMIF and AVERAGEIF in that we only need to look Excel Formulas 2018 Cindy Kredo Page 2 of 23

3 inside one column! If you were asked to manually count how many children are Native American, which column would you use? 13. Position cursor in Cell E32. Click the fx button and type in the top box How to do conditional if. Click Go. Highlight COUNTIF and read the short help screen that appears. This is the function we want. Click OK (bottom of form). Complete the wizard as shown. Don t forget the absolute references! TIP: If you forget to press the F4 key right after selecting the data, doing it later will only put the dollar signs around the last cell reference. You can select the entire formula text before pressing the F4 key to add dollar signs to all cell references. Excel Formulas 2018 Cindy Kredo Page 3 of 23

4 14. Fix the decimals in cell D32. How? Position cursor in cell D32. Right mouse click the cell and select the comma in the pop up format bar (with left mouse click) as shown. TIP: The right mouse click typically opens menu options; the left mouse click is used to select menu items. 15. Select Cells C32 through E32. Position mouse in lower right corner of Cell E32 as shown. After the mouse pointer changes to a thin cross-hair, double click to copy the formulas down through Cells C34:E34. In the alternative, you can use the thin cross-hair to drag down into Cell E34. You could also do a simple copy and paste if you would prefer! Optional if you finish early Optional 1: How many services were provided to kids who are 12 years old? Optional 2: This one is a challenge! How many services were provided to kids who are older than 14? The thought process some facts that help with both of these: You need columns B and D. The mathematical operation to be performed would be a sum of Column D You only want to sum column D if criteria in Column B is met Which function would you use? (sum, sumif, count, countif) When doing the second one, remember that partial expressions need to go in quotes Answer 1 Answer 2 Excel Formulas 2018 Cindy Kredo Page 4 of 23

5 Lab Two: Multiple Criteria Sumifs (catch that plural!) Goal: On the Multiple Criteria tab we will add formulas that utilize the SUMIFS function. 1. Select the worksheet tab labeled Multiple Criteria. You will complete Cells D36 and J35. By now you know how to bring up the wizard so the lab instructions will just show you the wizard screenshots! 2. The wizard in Cell D36 will look like this (dollar signs are optional the only reason dollar signs appear in this solution is because this formula was copied down from Cell D35!) 3. The wizard in Cell J35 will look like this (again, dollar signs are optional). Note the quotations around the last argument! ( >9 ) Excel Formulas 2018 Cindy Kredo Page 5 of 23

6 Lab Three: IF Statements Goal: On the State Data tab we will create several formulas using the IF Function, including nested functions. 1. Observe the worksheet tab labeled State Data Completed. That will be our finished product. 2. Return to the worksheet tab labeled State Data. Observe Cell K1. A state will be considered DRY if the percent of water if less than this value. 3. Position cursor in cell K6. We will create an IF Statement here that will either return the word Wet or the word Dry depending upon the value in Column G. 4. Begin typing the IF Statement by entering =IF( (don t forget the parenthesis!) 5. Click the fx function key to open the wizard and complete as follows: Tip: When entering raw text in the wizard, if you leave off the quotation marks, Excel will typically correct this for you. It is recommended that you type the quotation marks yourself just so you don t get spoiled by the wizard! 6. Click OK. Copy the formula down the page by double clicking the lower right corner of the cell after changing the mouse pointer to a thin cross-hair! 7. Question: Why do you want the dollar signs around K1 and not G6? What would happen if you forgot the dollar signs? 8. Position cursor in Cell L6. We will create an IF Statement that will return the word Growing if the value in Column H is greater than the value in Column I. If the population is shrinking (or the same), we will return the word Shrinking. 9. Begin typing the IF Statement by entering =IF( 10. Click the fx function key to open the wizard (or you can simply type the formula if you want!). The wizard entry will look like this: Excel Formulas 2018 Cindy Kredo Page 6 of 23

7 The completed formula looks like this: 11. Copy the formula down the page. 12. Let s fine-tune this to add the option of Similar. Position cursor in Cell M6. We will create an IF statement that first compares the value in Column J to 1%. If it is less than 1%, we want to return the word Similar. We ll worry about the rest of the formula later. We don t care if the value is positive or negative, so we will start our IF statement with a function called ABS. ABS returns the absolute value of a number. Absolute value simply means remove the sign (positive/negative). The first step of the wizard will look like this: For now, let s just test that part of the formula by doing something like this: Excel Formulas 2018 Cindy Kredo Page 7 of 23

8 Copy that formula down the page. Good so far? What are we going to do if the absolute value is 1% or higher? We then want to use the formula that we already came up with in Column L! We could use that logic as follows: This is nice and clean. Edit your formula and re-copy it down the page. Optional: 1. Try nesting the IF formula inside that last argument as follows! Excel Formulas 2018 Cindy Kredo Page 8 of 23

9 On the spreadsheet, the formula will look like this: Don t let the length of that formula scare you. It is created using the same building blocks function name, parenthesis, and arguments. Notice the color coding on the parenthesis to help keep things straight! 2. Using the formula skills learned in the first lab, enter formulas in Cells K2 and K3 that count the number of dry states/wet states as shown. Check your formula against the worksheet tab labeled State Data Completed. Excel Formulas 2018 Cindy Kredo Page 9 of 23

10 Lab Four: Text Functions Goal: On the Text Functions tab we will explore text functions that return portions of a cell and that string together (concatenate) multiple cells. 1. On the Text Functions worksheet tab, position cursor in Cell F4. We want a formula that will give us the first three digits of the value in Column C. 2. On the Formula ribbon, select the Text function library browse options for something that is likely to return the left-most digits of a cell. 3. Select LEFT and complete the function wizard as shown: TIP: Notice the answer appears in the lower left corner! 4. Click Ok. Copy the formula down into cells F5:F7. 5. Position cursor in Cell G4. We want to return the left-most five digits from Column D. Complete the wizard very similar to what you did in step 3, but this time select 5 characters instead of 3! 6. Copy the formula down into cells G5:G7. 7. Position cursor in Cell H4. You now want the right-most four characters. Use the Formula Ribbon, Text function library to find the RIGHT() function. HEADS UP ALERT: THERE IS A HIDDEN GOTCHA IN THIS EXERCISE. 8. Using the method of your choice, create this formula in Cell H4 and copy the formula down through H5:H7. Your spreadsheet should look like this: Excel Formulas 2018 Cindy Kredo Page 10 of 23

11 The formula works in Cells H5 through H7, but nothing shows up in cell H5. Can you think of what could possibly cause this? Do the following: Position Cursor in Cell E5. Click in the formula bar to the RIGHT of the entry go out about an inch to the right. Notice the cursor moves to the very end of the cell value. Now do the same with Cell E4. Notice the position of the cursor! I exaggerated the width of the cursor for demo-sake but notice it is positioned to the right of the entry! When the user typed this social security number in the cell, they apparently leaned on the space bar when they were done. Trailing spaces are a fairly common issue in Excel. How do we solve it? Check this out! The TRIM() function will remove any leading or trailing spaces from a cell. =Right(TRIM(E4),4) will return the four right-most characters of cell E4. 9. Next we will create a formula that will combine the first and last names in Columns A and B. Position cursor in Cell I Type an equal sign 11. Click on Cell A4 12. Type an ampersand symbol Excel Formulas 2018 Cindy Kredo Page 11 of 23

12 13. Type a quotation mark, a space, and then another quotation mark as shown in the screenshot below. 14. Type another ampersand symbol 15. Click on Cell B4 16. Click Enter. The & symbol acts as a concatenator it strings together cells and text. In this case, it is stringing the contents of Cell A4 to a space to the contents of Cell B4. Excel won t print the quotes the quotes simply tell Excel to literally give us one space here! Optional: How would you create a formula that returns the last name, a comma, and then the first name? (Answer is on the Text Functions Completed tab, Column J) Lab Five: Text Functions continued Goal: On the Text Functions tab we will explore text functions that return portions of a cell and that string together (concatenate) multiple cells when the data is inconsistent. 1. On the Text Functions worksheet tab, position cursor in Cell E13. As in the previous lab, we want a formula that will return just the area code. In this case, it will usually be the left most 3 characters from the value in Cell D13 but notice what happens when we get to row 15! Not all phone numbers have area codes. 2. TIP: Verbalize, in English, what you need to do. It might go something like this: If the phone number has an area code, then I ll get the area code. Now remember that talking to Excel is like talking to a toddler you have to be very specific. Maybe the next verbalization will go something like this: If the phone number is long enough to include an area code at least 12 characters THEN we can return the first three characters. 3. Ask Excel for help in determining the length of a cell. Click the FX button and type the following in the Search for a function box, then click Go. Excel Formulas 2018 Cindy Kredo Page 12 of 23

13 4. Scroll through the mini help screens. The LEN function is what we want. Let s test it first. Select Len and click OK. Fill out the wizard: Copy this formula down the page. It s a start! Excel Formulas 2018 Cindy Kredo Page 13 of 23

14 Now we can reverbalize our formula using Excel-lingo : If Len(D13) is 12, return the left(d13,3), otherwise don t do anything. Remember the IF syntax is =IF(condition, true, false) We have the condition done: you will edit your formula to wrap an IF Statement around your condition. 5. Position your cursor in the formula bar where it currently reads =LEN(D13) and type IF( between the equal sign and the first L as shown. Also add the rest of the condition statement by putting =12 at the end (as shown). 6. You can now either manually complete the formula or you can click the fx button to bring up the wizard. Sometimes getting to the right wizard when you nest functions can be tricky: if you don t type the full conditional statement, you ll end up back in the wizard for the LEN function! I think at this point it is probably easiest to just type the rest of the formula as follows: If you prefer the wizard: Note the last argument is just an empty set of double quotes! Excel Formulas 2018 Cindy Kredo Page 14 of 23

15 Optional: Text Functions Worksheet Tab If you finish early, string together the names in rows 13 through 16 Columns A, B and C. We can t just use the ampersand to string them together (=A13&" "&B13&" "&C13) because if there is no middle name, two spaces would appear between the first and last name. Create a formula that will add a space to the middle name when there is one, and return what is called an empty string no spaces if there is none. We will then use that cell to string together all three names. a) Position cursor in Cell G13 b) Type the following: =IF(LEN(B13)>0,B13&" ","") c) Copy that cell to G14:G16 d) Position cursor in Cell F13 e) Type the following: =A13&" "&G13&C13 f) Notice entries are a mix of upper and lower case g) Wrap the Proper function around the formula to force upper/lower case as shown: Observe the formula on the Text Functions Completed worksheet tab in Cell H13. All logic is combined into one formula! Which way is best? Whatever way is easier for you! Resource: Splitting Text into Multiple Columns Goal: Using the Text Functions worksheet tab, split the contents in Cells A35:A40 into three separate columns representing the First, Middle and Last Names. How? Excel Formulas 2018 Cindy Kredo Page 15 of 23

16 1. On the Text Functions worksheet tab, select Cells A35:A On the Data Ribbon, select Text to Columns (Data Tools Group section) 3. Click Next, selecting the default Delimited option 4. Change the delimiter to a space, as shown 5. Click Next. Click Finish. Excel Formulas 2018 Cindy Kredo Page 16 of 23

17 6. Data is now separated as shown (I added column headers for clarity) 7. We need to move the Last Names into the correct column. This can easily be done if we first sort all data by the Last Name field (Column C) to put all blanks together! How? a. Select all name data (Cells A35:C40) b. From the Home Ribbon, select Custom sort c. Change the dialog options: uncheck My data has headers, and sort by Column C as shown: d. Click OK. Data now looks like this: Excel Formulas 2018 Cindy Kredo Page 17 of 23

18 e. Select cells B38:B40. Right click Insert Shift cells Right. Click OK. (Tip: You could also move the data over one cell using the mouse move pointer, but if you have hundreds of rows, doing the insert will be easier!) Lab Six Part A: Vlookup Formulas Food Example Goal: Using the Food Vlookup worksheet tab, add a vlookup formula to Cells B6 and C6 to look up the Calories and Total Fat from the data on the Foods worksheet tab. 1. Observe the data on the Foods worksheet tab. Note that calories (energy) are in Column D, which is the 4 th column in the data. Note that Total Fat is in Column I, the 9 th column in the data. 2. Explore the formulas already created on the Food Vlookup worksheet tab. To complete this lab, you could just copy the formulas in row 5 into row 6, but we will recreate the formula. 3. Select Cell B6 on the Food Vlookup worksheet tab 4. Launch the formula wizard by typing =Vlookup( in Cell B6, then click the fx key to the left of the formula bar. 5. With the cursor in the first wizard box ( Lookup_value ), click on cell A6. Why? The value we are looking up is the trout broiled with butter and lemon! 6. Click in the next wizard box ( Table_array ). We want to point to the data on the Foods worksheet tab here so you literally do just that! Click that tab with your mouse and select all of the data, excluding column headers. When you are done selecting the data, the wizard will reappear on your screen as shown Excel Formulas 2018 Cindy Kredo Page 18 of 23

19 7. Click on the third wizard entry, Col_index_num, and you will be returned to your starting position. You will type a 4 here to return the fourth column from the starting column. 8. In the Range_lookup entry type False (the setting to find an exact match). Click OK. 9. Can you copy and paste this formula across the page to cell C6? No references would change A6 to B6, and the table array would also be incorrect. The formula is Cell C6 will be almost exactly the same: Just select the 9 th Col_index-num instead of the fourth! Excel Formulas 2018 Cindy Kredo Page 19 of 23

20 Formula for cell C6. Lab Six Part B -Vlookup Formulas Time Card Example Goal: Using the HR Time Card worksheet tab, add vlookup formulas to Cells G9 and G Observe the empty cell G9 on the worksheet tab HR Time Card. We want the phone extension that belongs to the Employee ID entered in Cell G5. 2. Observe the data on the HR Records worksheet tab. Note that the Employee ID, which we will use as our lookup value, is in Column 1. The phone extension is in Column F. The number of columns from the Employee ID up to the phone extension is six. We will be returning the 6 th column index. 3. Return to the HR Time Card worksheet tab and position cursor in Cell G9. Launch the formula wizard by typing =Vlookup( in the cell, then click the fx key to the left of the formula bar. 4. Enter G5 in the Lookup_Value box by clicking Cell G5. Move the mouse cursor to the Table_array box. Excel Formulas 2018 Cindy Kredo Page 20 of 23

21 5. Click on the HR Records worksheet tab and select cells A9 through F90. Complete the wizard dialog as shown: 6. Click Ok. 7. Observe Cell G11. You will create a vlookup formula that will enter a service level of Gold, Silver or Bronze based upon the Hire Date found in cell C Observe the Service Level table found on the worksheet tab labeled HR Records in cells E1 through F4. 9. Click the dropdown to the right of the Named Range Box (circled in the image below) to view the named range called ServiceLevel. Observe that this refers to the ServiceLevel ranges. We will use that named range in our formula. 10. Return to the HR Time Card worksheet tab and position mouse in cell G Type =Vlookup( and then click on cell C11 (or just type it). Add the comma so that you are moved to the next argument position. 12. Use the Formulas Ribbon, Use in Formula option to select the ServiceLevel named range see image. Excel Formulas 2018 Cindy Kredo Page 21 of 23

22 13. After selecting the named range (ServiceLevel), type another comma to move into the next argument position and complete your formula as shown: 14. Notice this formula requires an approximate lookup (last argument = TRUE) since each hire date is not included in the ServiceLevel table. 15. Test your work by selecting a new Employee ID of SM22. Notice all fields in rows 7, 9 and 11 change accordingly. Lab Resource Hlookup Formula 1. Explore the worksheet tab labeled Hlookup. 2. Position cursor in Cell E8. Jeffrey Andrews salary will increase by 4.5% because he earned a C Rating. We will write a lookup formula that will enter the increase percent for all employees. 3. Note that you scanned the spreadsheet in a horizontal direction to determine the percentage that applies to a C Rating. This formula will require a horizontal lookup called Hlookup. 4. Begin typing =Hlookup( and click the fx wizard key to launch the wizard, completing it as follows: Excel Formulas 2018 Cindy Kredo Page 22 of 23

23 Tips: Don t forget to use the F4 function key as soon as you select the Table_array cells in order to put dollar signs/absolute references around the table. The formula can be copied down the page as long as the absolute references are used. Notice the third argument changes from a column index num to a row index num. The concept is the same: beginning with the first lookup row, which row should be returned? In this case, we want the second row in the lookup range. 5. Click OK. Position your cursor back in Cell E8 on the lower right corner to get the fill arrow and double click to copy the formula down the page. 6. Position the cursor in Cell F8. We will create a formula that adds the percentage in Column E to the salary in Column C. 7. Copy this formula down the page. Tip: We do not need the parenthesis to set the Order of Operations in this formula, but it is kinder on the brain to do so. Addendum: All key points (link to slides) - Power Point presentation Excel Formulas 2018 Cindy Kredo Page 23 of 23

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

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

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

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

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

Microsoft Excel Lookup Functions - Reference Guide

Microsoft Excel Lookup Functions - Reference Guide LOOKUP Functions - Description Excel Lookup functions are used to look up and extract data from a list or table and insert the data into another list or table. Use the appropriate lookup function depending

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

10 Ways To Efficiently Analyze Your Accounting Data in Excel

10 Ways To Efficiently Analyze Your Accounting Data in Excel 10 Ways To Efficiently Analyze Your Accounting Data in Excel Live Demonstration Investment advisory services are offered through CliftonLarsonAllen Wealth Advisors, LLC, an SEC-registered investment advisor.

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

Using Advanced Formulas

Using Advanced Formulas 10 Using Advanced Formulas LESSON SKILL MATRIX Skills Exam Objective Objective Number Using Formulas to Conditionally Summarize Data Adding Conditional Logic Functions to Formulas Using Formulas to Modify

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

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

CMPF124 Microsoft Excel Tutorial

CMPF124 Microsoft Excel Tutorial Lab 5: Microsoft Excel Tutorial Excel Worksheet Microsoft Excel works as account ledger. An Excel Workbook (1) could have multiple Worksheets (2). A cell in Excel is referred by its Column and Row naming

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

Downloading other workbooks All our workbooks can be downloaded from:

Downloading other workbooks All our workbooks can be downloaded from: Introduction This workbook accompanies the computer skills training workshop. The trainer will demonstrate each skill and refer you to the relevant page at the appropriate time. This workbook can also

More information

Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting

Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting Overview Basic Excel techniques can be used to analyze EMIS data from Student Information Systems (SISs), from the Data Collector and on ODE

More information

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems Advanced Excel Presented By: Chad Jarvi, CPA President, Civic Systems IMFOA Conference April 11, 2019 3:15 pm 4:15 pm COPY AND PASTE... 4 USING THE RIBBON... 4 USING RIGHT CLICK... 4 USING CTRL-C AND CTRL-V...

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

Excel 2016 Functions

Excel 2016 Functions Excel 2016 Functions A function is a preset formula in Excel that is intended to carry out a specific calculations, logical tests, formats, etc. in the cell in which it is located. All functions begin

More information

EDIT202 Spreadsheet Lab Prep Sheet

EDIT202 Spreadsheet Lab Prep Sheet EDIT202 Spreadsheet Lab Prep Sheet While it is clear to see how a spreadsheet may be used in a classroom to aid a teacher in marking (as your lab will clearly indicate), it should be noted that spreadsheets

More information

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley Excel 2010 Functions 4/18/2011 Archdiocese of Chicago Mike Riley i VIDEO TUTORIALS AVAILABLE Almost 100,000 video tutorials are available from VTC. The available tutorials include Windows 7, GroupWise

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

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

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

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

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

More information

Excel 2016: Formulas & Functions

Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions Rylander Consulting www.rylanderconsulting.com sandy@rylanderconsulting.com 425.445.0064 ii Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions i Table of

More information

Excel Tips. Contents. By Dick Evans

Excel Tips. Contents. By Dick Evans Excel Tips By Dick Evans Contents Pasting Data into an Excel Worksheet... 2 Divide by Zero Errors... 2 Creating a Dropdown List... 2 Using the Built In Dropdown List... 3 Entering Data with Forms... 4

More information

ADVANCED EXCEL: LOOKUP FUNCTIONS

ADVANCED EXCEL: LOOKUP FUNCTIONS ADVANCED EXCEL: LOOKUP FUNCTIONS Excel has several Lookup and Reference functions available that are used to search through rows of data to locate specific values to display in a cell or to use in a formula.

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

CSSCR Excel Intermediate 4/13/06 GH Page 1 of 23 INTERMEDIATE EXCEL

CSSCR Excel Intermediate 4/13/06 GH Page 1 of 23 INTERMEDIATE EXCEL CSSCR Excel Intermediate 4/13/06 GH Page 1 of 23 INTERMEDIATE EXCEL This document is for those who already know the basics of spreadsheets and have worked with either Excel for Windows or Excel for Macintosh.

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

2015 Vanderbilt University

2015 Vanderbilt University Excel Supplement 2015 Vanderbilt University Introduction This guide describes how to perform some basic data manipulation tasks in Microsoft Excel. Excel is spreadsheet software that is used to store information

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

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

Skill Set 5. Outlines and Complex Functions

Skill Set 5. Outlines and Complex Functions Spreadsheet Software OCR Level 3 ITQ Skill Set 5 Outlines and Complex Functions By the end of this Skill Set you should be able to: Create an Outline Work with an Outline Create Automatic Subtotals Use

More information

EVALUATION ONLY. In this chapter, you will learn new. Text and Analysis EXCEL 2016 CHAPTER TIMING PROJECT: ANALYZING SALES INFORMATION

EVALUATION ONLY. In this chapter, you will learn new. Text and Analysis EXCEL 2016 CHAPTER TIMING PROJECT: ANALYZING SALES INFORMATION EXCEL 2016 3Advanced Functions for Text and Analysis In this chapter, you will learn new functions that give you greater ability for analysis and decision making. They include functions that either sum

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 VLOOKUP. An EMIS Coordinator s Friend

Excel VLOOKUP. An EMIS Coordinator s Friend Excel VLOOKUP An EMIS Coordinator s Friend Vlookup, a function in excel, stands for Vertical Lookup. This function allows you to search a specific table of data, look for a match within the table of data

More information

File Name: Pivot Table Labs.xlsx

File Name: Pivot Table Labs.xlsx File Name: Pivot Table Labs.xlsx Lab Session 1: Create Simple Pivot Table with a Date Grouping Note: Instructions for the first lab are very detailed because it might be the first time you have created

More information

My Top 5 Formulas OutofhoursAdmin

My Top 5 Formulas OutofhoursAdmin CONTENTS INTRODUCTION... 2 MS OFFICE... 3 Which Version of Microsoft Office Do I Have?... 4 How To Customise Your Recent Files List... 5 How to recover an unsaved file in MS Office 2010... 7 TOP 5 FORMULAS...

More information

3 Excel Tips for Marketing Efficiency

3 Excel Tips for Marketing Efficiency 3 Excel Tips for Marketing Efficiency 3 Excel Database Tips for Marketing Efficiency In these challenging times, companies continue to reduce staff to save money. Those who remain must do more. How to

More information

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES Chapter 1 : Examples of commonly used formulas - Office Support A collection of useful Excel formulas for sums and counts, dates and times, text manipularion, conditional formatting, percentages, Excel

More information

Open you WordPad/NotePad File in Excel. How to Move Text to Columns (You can see all data in Column A)

Open you WordPad/NotePad File in Excel. How to Move Text to Columns (You can see all data in Column A) NMASO 9/14/17 EXCEL PRESENTAITON NOTES Open you WordPad/NotePad File in Excel. How to Move Text to Columns (You can see all data in Column A) Highlight Column A (left click at the top of column A) and

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

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

Intermediate Excel 2013

Intermediate Excel 2013 Intermediate Excel 2013 Class Objective: Elmhurst Public Library is committed to offering enriching programs to help our patrons Explore, Learn, and Grow. Today, technology skills are more than a valuable

More information

Chapter 3: The IF Function and Table Lookup

Chapter 3: The IF Function and Table Lookup Chapter 3: The IF Function and Table Lookup Objectives This chapter focuses on the use of IF and LOOKUP functions, while continuing to introduce other functions as well. Here is a partial list of what

More information

Excel Part 2 Textbook Addendum

Excel Part 2 Textbook Addendum Excel Part 2 Textbook Addendum 1. Page 9 Range Names Sort Alert After completing Activity 1-1, observe what happens if you sort the data in ascending order by Quarter 3. After sorting the data, chances

More information

Spreadsheet Functions

Spreadsheet Functions Class Description This is an introduction to the use of functions in spreadsheets, with a focus on Microsoft Excel and Google Drive Spreadsheets. The main topics are arithmetic calculations and order of

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Chapter A spreadsheet is a computer program that turns the computer into a very powerful calculator. Headings and comments can be entered along with detailed formulas. The spreadsheet screen is divided

More information

1.a) Go to it should be accessible in all browsers

1.a) Go to  it should be accessible in all browsers ECO 445: International Trade Professor Jack Rossbach Instructions on doing the Least Traded Product Exercise with Excel Step 1 Download Data from Comtrade [This step is done for you] 1.a) Go to http://comtrade.un.org/db/dqquickquery.aspx

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

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function.

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function. Today Function The today function: =TODAY() It has no arguments, and returns the date that the computer is set to. It is volatile, so if you save it and reopen the file one month later the new, updated

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

ADDITIONAL EXCEL FUNCTIONS

ADDITIONAL EXCEL FUNCTIONS ADDITIONAL EXCEL FUNCTIONS The following notes and exercises on additional Excel functions are based on the Grade 12 Examination Guidelines for 2016 recently issued by the DBE. As such, they represent

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

Formulas Learn how to use Excel to do the math for you by typing formulas into cells.

Formulas Learn how to use Excel to do the math for you by typing formulas into cells. Microsoft Excel 2007: Part III Creating Formulas Windows XP Microsoft Excel 2007 Microsoft Excel is an electronic spreadsheet program. Electronic spreadsheet applications allow you to type, edit, and print

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

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

Instructions on Adding Zeros to the Comtrade Data

Instructions on Adding Zeros to the Comtrade Data Instructions on Adding Zeros to the Comtrade Data Required: An excel spreadshheet with the commodity codes for all products you want included. In this exercise we will want all 4-digit SITC Revision 2

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

Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks

Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks In Office 2007, the OFFICE BUTTON is the symbol at the top left of the screen. 1 Enter Fractions That Will Display And Calculate Properly a. Type

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

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

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

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1.

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1. Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 1.1 Introduction 1.2 A spreadsheet 1.3 Starting up Excel 1.4 The start screen 1.5 The interface 1.5.1 A worksheet or workbook 1.5.2 The title bar 1.5.3

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

Excel 2007: Functions and Forumlas Learning Guide

Excel 2007: Functions and Forumlas Learning Guide Excel 2007: Functions and Forumlas Learning Guide Functions and Formulas: An Overview Excel uses functions (mathematical expressions already available in Excel) and formulas (mathematical expressions that

More information

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

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

More information

Programs for American Fidelity WorxTime

Programs for American Fidelity WorxTime Programs for American Fidelity WorxTime There are 2 programs that can be run to create the Employee Upload File: W2WAGE and WRXTM_EMP. These programs are located on the USPS_LCL menu or the command name

More information

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

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

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

Excel Tips for Compensation Practitioners Month 1

Excel Tips for Compensation Practitioners Month 1 Excel Tips for Compensation Practitioners Month 1 Introduction This is the first of what will be a weekly column with Excel tips for Compensation Practitioners. These tips will cover functions in Excel

More information

Using Excel for a Gradebook: Advanced Gradebook Formulas

Using Excel for a Gradebook: Advanced Gradebook Formulas Using Excel for a Gradebook: Advanced Gradebook Formulas Objective 1: Review basic formula concepts. Review Basic Formula Concepts Entering a formula by hand: Always start with an equal sign, and click

More information

In this chapter, I introduce you to Excel s statistical functions and data. Understanding Excel s Statistical Capabilities. Chapter 2.

In this chapter, I introduce you to Excel s statistical functions and data. Understanding Excel s Statistical Capabilities. Chapter 2. Chapter 2 Understanding Excel s Statistical Capabilities In This Chapter Working with worksheet functions Creating a shortcut to statistical functions Getting an array of results Naming arrays Tooling

More information

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

More information

To be able to modify a worksheet and use functions, you will: Select ranges of cells on a worksheet by using the mouse.

To be able to modify a worksheet and use functions, you will: Select ranges of cells on a worksheet by using the mouse. L E S S O N 3 Modifying a workbook Suggested teaching time 60-70 minutes Lesson objectives To be able to modify a worksheet and use functions, you will: a b c Select ranges of cells on a worksheet by using

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

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

Excel Level 1

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

More information

Excel Foundation (Step 2)

Excel Foundation (Step 2) Excel 2007 Foundation (Step 2) Table of Contents Working with Names... 3 Default Names... 3 Naming Rules... 3 Creating a Name... 4 Defining Names... 4 Creating Multiple Names... 5 Selecting Names... 5

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

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

Identifying Updated Metadata and Images from a Content Provider

Identifying Updated Metadata and Images from a Content Provider University of Iowa Libraries Staff Publications 4-8-2010 Identifying Updated Metadata and Images from a Content Provider Wendy Robertson University of Iowa 2010 Wendy C Robertson Comments Includes presenter's

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

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

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

More information

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

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

Formulas and Functions

Formulas and Functions Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Manually adjust column width Place the pointer on the line between letters in the Column Headers. The pointer will change to double headed arrow. Hold

More information

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

More information

Tutorial 8: Working with Advanced Functions. Microsoft Excel 2013 Enhanced

Tutorial 8: Working with Advanced Functions. Microsoft Excel 2013 Enhanced Tutorial 8: Working with Advanced Functions Microsoft Excel 2013 Enhanced Objectives Use the IF function Use the AND function Use the OR function Use structured references in formulas Nest the IF 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

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

Intermediate Microsoft Excel 2008

Intermediate Microsoft Excel 2008 Intermediate Microsoft Excel 2008 Table of Contents ADVANCED FORMATTING... 2 FORMATTING NUMBERS... 2 WRAPPING TEXT... 3 THE MERGE AND CENTER FUNCTIONS... 4 INSERTING COMMENTS... 5 FREEZE PANES... 6 INSERTING

More information