The SUM function: P. 251 Use a sum for a formula when you are trying to ADD different data (in a row or column) together.

Size: px
Start display at page:

Download "The SUM function: P. 251 Use a sum for a formula when you are trying to ADD different data (in a row or column) together."

Transcription

1 REVIEW PACKET FOR FUNCTIONS AND FORMULAS The SUM function: P. 251 Use a sum for a formula when you are trying to ADD different data (in a row or column) together. A B C D =SUM (A1:C1) =SUM (A2:C2) =SUM (A3:C3) =SUM (D1:D3) =SUM(A1:A3) =SUM (B1:B3) =SUM(C1:C3) In Cell D4, you are taking your totals from rows 1, 2, and 3 and adding them together to find the OVERALL total. Real World Your goal is to find the total sales for ALL THREE salesmen (Joe, Tina, and Bob) for all 3 months. A B C D E 1 January February March Totals 2 Joe =SUM(B2:D2) 3 Tina =SUM(B3:D3) 4 Bob =SUM(B4:D4) =SUM 5 Totals (E2:E4) =SUM(B2:B4) =SUM(C2:C4) =SUM(D2:D4) In cell E4 you have added up all the saleman's totals for all 3 months and come up with the grand sales total for the entire group for 3 months. **Quick note, SUM functions are always relative references because you want the formulas to adjust to the different data and cells. The MINIMUM function: P. 251 The minimum function returns the smallest value in the range you select. For example, I want to find out what the smallest payment was that I made during the month of January. First I would select and empty cell (where I want to place my answer). Second, I would type in =MIN( Third I would select the range of all data collected from January. Fourth, I would then close my parentheses and press enter. Then you will have your answer!

2 A B 1 January 2 Credit Card Bill # Credit Card Bill # Water 15 5 Gas 75 6 Electricity Rent Cable 45 9 Phone Groceries Minimum (Smallest) Payment in January 15 =MIN(B2:B10) 12 Maximum (Largest) Payment in January 600 =MAX(B2:B10) The MAXIMUM function: You follow the same concept as Minimum for this function. When you use the Maximum function that means that you want to find the largest number within a specified range of data. Look at the spreadsheet above for an example of this function in use. The AVERAGE function: p.251 You use the AVERAGE function to find the mean or average in a specified range of data. Look at the example from above (MIN/MAX example) and let's find the AVERAGE cost of bills in January. The formula would look like this: =AVERAGE(B2:B10) Your answer would be: That means that your average bill cost was $ during the month of January. p. 251 The DATE function: There are TWO dates functions that we went over in class. The first one is DATE. The formula is =DATE(year,month,day) There are NO spaces and you MUST use numbers to fill in this formula! I want to input the date March 10, This is the formula I would input =DATE(2005,3,10) This is the answer I would receive: 3/10/2005

3 The second function that we covered was NOW. The NOW function will return the present date and a time stamp (the present time). The formula is =NOW(). I want to find out exactly what time I finished working on this handout, so I would type in =NOW(). This is the answer I would receive: 3/31/08 2:13 PM IF by chance you do not receive the time stamp, all you have to do is right click on the cell and select format cells. In the type box, select the option with the date and time stamp. PERCENTAGE: You use a formula to find percentage because you want to find out how much a part is in comparison to the whole. PART/WHOLE Let's take our example from the first page with the 3 salesman: A B C D E 1 January February March Totals 2 Joe Tina Bob Totals We want to calculate how much Joe sold in comparison with the entire group sales. So we would have to use his TOTAL sales (in cell E2) and divide that by the groups total sales (in cell E5). The formula would look like this. =E2/$E$5 The answer would be: 23.24% This takes us back to ABSOLUTE AND RELATIVES REFERENCES. SINCE, Joe's total is only PART of the team's total, we must use an absolute reference, so that all salesmen's totals can be divided by the same number. In turn our percentages should add up to 100%! GROSS PAY, DEDUCTIONS, AND NET PAY Gross Pay = the total amount of money you earned overa certain period of time. Ex. The spreadshet below is your own personal spreadsheet you created to keep track of your hours and total pay on the job. You are paid $7.50/hr and you work 20 hours this week. The formula to calculate your gross pay would be =A2*B2. Hours worked*hourly Pay=Gross Pay A B C D E 1 Hours Worked Hourly Pay Gross Pay Deductions Net Pay DEDUCTIONS: Taxes and medicare are examples of deductions. These are specific amounts of money that are always taken out of every paycheck. For our example we are going to say that 28% of your paycheck are deductions. You want to multiply the percentage being taken out of your paycheck by your gross pay. The formula you would use is: =C2*.28

4 NET PAY: Net pay is your take home pay AFTER your deductions are taken out of your paycheck. Gross Pay - Deductions = Net Pay In our example the formula would be: =C2-D2 The PMT function: This function calculates the monthly payment for a loan. This function includes the Rate (interest rate), NPER (total number of payments for the loan), PV (present value of the loan - REMEMBER this is always entered as a NEGATIVE number), and FV (future value). The easiest way to enter this function is to click on Fx and find the PMT function under the Financial Category. The formula looks like this: = =PMT(.04,60,-30000) =PMT(RATE,NPER,-PV) Rate = 4%, Number of total payments = 60, and your PV =30,000 Remember the Present value is the total amount of money that you borrowed for the loan! If we used the numbers from the example above our answer would be: $1, The IF function: This function performs a conditional test. You would use this function if you wanted look at all your data and see if you need to make changes. Here is the formula: =IF(logical_test,value_if_true,value_if_false) A B C D E F 1 January February March Totals Keep or Fire 2 Joe FIRE 3 Tina KEEP 4 Bob KEEP 5 Totals EXAMPLE: You are Joe, Tina, and Bob's boss and you must fire one employee because you do not have the funds to pay for all 3 of them anymore due to economic factors. You want to find out which salesman has sold the least and fire that employee. Create a conditional test to run on your sales data in the chart above. **Note: This formula also works as a relative reference. Your IF statement should be: =IF(E2>99,"KEEP","FIRE") You would end up keeping Tina and Bob as employees and firing Joe because he did not make his sales quota.

5 The ROUND() function: Adjusts a value to a specific number of digits. 1 A B C D E Hours Worked Hourly Pay Gross Pay Deductions Net Pay Original format Using the round function - to the closest cent Using the round function - to the closest $ Using the round function - to the closest $10 Use the round function for the net pay to round it to dollars with no cents showing. Formula from cell E3: =ROUND (E2, 1) Now if you want to round the final number to the closest dollar, this is what the formula should look like (cell E4): =ROUND(E2, 0) Now if you want to round the final number to the closest dollar, this is what the formula should look like (cell E5): =ROUND(E2, -1) The COUNT() function: Counts the cells containing numbers in a range of cells (blank cells or text entries are ignored) 1 A B C D E Hours Worked Hourly Pay Gross Pay Deductions Net Pay Count 4 Here is the formula that was used in cell E6 to count the number of cells containing numbers in the range E2:E5 =COUNT(E2:E5)

6 The COUNTA() function Counts the number of non-blank cells in a range. BCIS Team Excel Functions Review Packet Spring 2010 A B C D E 1 January February March Totals 2 Joe Tina Bob Totals CountA 21 Here is the formula from cell E6: =COUNTA(A1:E5) Now go back and count the number of non-blank cells from the range A1:E5 yourself and make sure it matches with the amount in cell E6. The COUNTIF() function Counts the number of cells in a range that meet a certain criteria. The syntax for the formula is: COUNTIF(range, criteria) Example =COUNTIF(B2:B25,"Nancy") For example, suppose you have a worksheet that contains a list of tasks in column A, and the first name of the person assigned to each task in column B. You can use the COUNTIF function to count how many times a person's name appears in column B and, in that way, determine how many tasks are assigned to that person. A 1 Names 2 Clean Dishes Joe 3 Vacuum Tina 4 Feed cat Bob 5 Take out trash Suzanne B 6 1 =COUNTIF(A2:B5), "Joe") The COUNTIFS() function Counts the number of cells within a range that meet multiple criteria. Syntax: COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2] ) Criteria_range1: Required. The first range in which to evaluate the associated criteria. Criteria1: Required. The criteria in the form of a number, expression, cell reference, or text that define which cells will be counted. For example, criteria can be expressed as 32, ">32", B4, "apples", or "32". criteria_range2, criteria2,... Optional. Additional ranges and their associated criteria. Up to 127 range/criteria pairs are allowed.

7 A B C D Sales Person Exceeded Widgets Exceeded Gadgets Exceeded Doodads Quota 1 Quota Quota 2 Davidoski Yes No No 3 Burke Yes Yes No 4 Sundaram Yes Yes Yes 5 Levitan No Yes Yes Description Result Formula Counts how many times Davidoski exceeded a sales quota for Widgets, Gadgets, and Doodads. 1 =COUNTIFS(B2:D2,"=Yes") Counts how many sales people exceeded both their Widgets and Gadgets Quota. 2 =COUNTIFS(B2:B5,"=Yes",C2:C5,"=Yes") Counts how many times Levitan and Burke exceeded the same quota for Widgets, Gadgets, and Doodads. 1 =COUNTIFS(B5:D5,"=Yes",B3:D3,"=Yes") Subtotal SYNTAX: SUBTOTAL(function_num, ref1, ref2,...) Function_num is the number 1 to 11 (includes hidden values - rows and columns) or 101 to 111 (ignores hidden values) that specifies which function to use in calculating subtotals within a list. *For the function_num constants from 1 to 11, the SUBTOTAL function includes the values of rows hidden by the Hide Rows command under the Hide & Unhide submenu of the Format command in the Cells group on the Home tab. Use these constants when you want to subtotal hidden and nonhidden numbers in a list. *For the function_num constants from 101 to 111, the SUBTOTAL function ignores values of rows hidden by the Hide Rows command. Use these constants when you want to subtotal only nonhidden numbers in a list. *The SUBTOTAL function ignores any rows that are not included in the result of a filter, no matter which function_num value you use. The SUBTOTAL function is designed for columns of data, or vertical ranges. It is not designed for rows of data, or horizontal ranges. For example, when you subtotal a horizontal range using a function_num of 101 or greater, such as SUBTOTAL(109,B2:G2), hiding a column does not affect the subtotal. But, hiding a row in a subtotal of a vertical range does affect the subtotal. If any of the references are 3-D references, SUBTOTAL returns the #VALUE! error value. Reference Codes Function_num Function_num (includes hidden values) (ignores hidden values) Function AVERAGE COUNT COUNTA MAX MIN PRODUCT STDEV STDEVP SUM VAR VARP

8 A Formula Subtotal using the SUM function 303 =SUBTOTAL(9,A2:A5) Subtotal of the column using the AVERAGE function The SUMIF() Function =SUBTOTAL(1,A2:A5) A function that uses a condition to add certain data. If the condition is true, then data in a corresponding cell is added to the total; if it is false, then the corresponding data is skipped. Format for the function: =SUMIF(range_to_test, condition, sum_range) Range to test = the range of cells you want to test Condition = an expression that is either true or false and defines which cells should be added to the total If the condition is true, the corresponding cell in sum_range is added to the total. If the condition is false, the corresponding cell in sum_range is skipped. You use the SUMIF function to sum the values in a range (range: Two or more cells on a sheet. The cells in a range can be adjacent or nonadjacent.) that meet criteria that you specify. For example, suppose that in a column that contains numbers, you want to sum only the values that are larger than 5. You can use the following formula: =SUMIF(B2:B25,">5") In this example, the criteria is applied the same values that are being summed. If you want, you can apply the criteria to one range and sum the corresponding values in a different range. For example, the formula =SUMIF(B2:B5, "John", C2:C5) sums only the values in the range C2:C5, where the corresponding cells in the range B2:B5 equal "John." SUMIF(range, criteria, [sum_range])

9 Range: Required. The range of cells that you want evaluated by criteria. Cells in each range must be numbers or names, arrays, or references that contain numbers. Blank and text values are ignored. Criteria: Required. The criteria in the form of a number, expression, a cell reference, text, or a function that defines which cells will be added. For example, criteria can be expressed as 32, ">32", B5, 32, "32","apples", or TODAY(). Important Any text criteria or any criteria that includes logical or mathematical symbols must be enclosed in double quotation marks ("). If the criteria is numeric, double quotation marks are not required. sum_range: Optional. The actual cells to add, if you want to add cells other than those specified in the range argument. If the sum_range argument is omitted, Excel adds the cells that are specified in the range argument (the same cells to which the criteria is applied). A B C Property Value Commission Data 1 100,000 7, , ,000 14, ,000 21, ,000 28,000 Description Result Formula Sum of the commissions for property values over 160, ,000 =SUMIF (A2:A5,">160000",B2:B5) Sum of the property values over 160, ,000 =SUMIF (A2:A5,">160000") Sum of the commissions for property values equal to 300,000. Sum of the commissions for property values greater than the value in C2. 21,000 =SUMIF (A2:A5,300000,B2:B5) 49,000 =SUMIF(A2:A5,">" & C2,B2:B5) SUMIFS() Similar to SUMIF() except that it allows you to enter mulitple qualifying conditions. Adds the cells in a range (range: Two or more cells on a sheet. The cells in a range can be adjacent or nonadjacent.) that meet multiple criteria. For example, if you want to sum the numbers in the range A1:A20 only if the corresponding numbers in B1:B20 are greater than zero (0) and the corresponding numbers in C1:C20 are less than 10, you can use the following formula: =SUMIFS(A1:A20, B1:B20, ">0", C1:C20, "<10") Syntax: SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ) Criteria_range1 Required. The first range in which to evaluate the associated criteria. Criteria1 Required. The criteria in the form of a number, expression, cell reference, or text that define which cells in the criteria_range1 argument will be added. For example, criteria can be expressed as 32, ">32", B4, "apples", or "32." criteria_range2, criteria2, Optional. Additional ranges and their associated criteria. Up to 127 range/ criteria pairs are allowed.

10 A B C 1 Quantity Sold Product Salesperson 2 5 Apples Apples Artichokes Artichokes Bananas Bananas Carrots Carrots 2 Formula Result Description =SUMIFS(A2:A9, B2:B9, "=A*", C2:C9, 1) =SUMIFS(A2:A9, B2:B9, "<>Bananas", C2:C9, 1) 20 Adds the total number of products sold that begin with "A" and that were sold by Salesperson Adds the total number of products (not including Bananas) sold by Salesperson 1. AVERAGEIF Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria. Syntax: AVERAGEIF(range,criteria,average_range) The AVERAGEIF function measures central tendency, which is the location of the center of a group of numbers in a statistical distribution. The three most common measures of central tendency are: mean, median, mode. Averaging property values and commissions Then the actual cells evaluated are A B If range is And average_range is A1:A5 B1:B5 B1:B5 1 Property Value Commission A1:A5 B1:B3 B1:B ,000 7,000 A1:B4 C1:D4 C1:D ,000 14,000 A1:B4 C1:C2 C1:D ,000 21, ,000 28,000 Description Formula (result) =AVERAGEIF(B2:B5,"<23000") Average of all commissions less than 23,000 (14,000) =AVERAGEIF(A2:A5,"<95000") Average of all property values less than 95,000 (#DIV/0!) =AVERAGEIF(A2:A5,">250000",B2:B5) Average of all commissions with a property value greater than 250,000 (24,500)

11 AVERAGEIFS Returns the average (arithmetic mean) of all cells that meet multiple criteria A B C D Student First Quiz Grade Second Quiz Grade Final Exam Grade Emilio Julie Hans Incomplete Frederique Incomplete Formula Description (result) =AVERAGEIFS (B2:B5,B2:B5,">70",B2:B5,"<90") Average first quiz grade that falls between 70 and 90 for all students (80.5). The score marked "Incomplete" is not included in the calculation because it is not a numerical value. =AVERAGEIFS(C2:C5,C2:C5,">95") Average second quiz grade that is greater than 95 for all students. Because there are no scores greater than 95, #DIV0! is returned. =AVERAGEIFS (D2:D5,D2:D5,"<>Incomplete",D2:D5,">80") Average final exam grade that is greater than 80 for all students (87.5). The score marked "Incomplete" is not included in the calculation because it is not a numerical value. Hlookup Looks in the top row of an array and returns the value of the indicated cell. The H in HLOOKUP stands for "Horizontal." Searches for a value in the top row of a table or an array Syntax: HLOOKUP(lookup_value, table_array, rown_index_num, range_lookup) Lookup_value is the value to be found in the first row of the table. Lookup_value can be a value, a reference, or a text string. Table_array is a table of information in which data is looked up. Use a reference to a range or a range name. The values in the first row of table_array can be text, numbers, or logical values. If range_lookup is TRUE, the values in the first row of table_array must be placed in ascending order:...-2, -1, 0, 1, 2,..., A-Z, FALSE, TRUE; otherwise, HLOOKUP may not give the correct value. If range_lookup is FALSE, table_array does not need to be sorted. Row_index_num is the row number in table_array from which the matching value will be returned. A row_index_num of 1 returns the first row value in table_array, a row_index_num of 2 returns the second row value in table_array, and so on. number of rows on table_array, HLOOKUP returns the #REF! error value. If row_index_num is less than 1, HLOOKUP returns the #VALUE! error value; if row_index_num is greater than the

12 Range_lookup is a logical value that specifies whether you want HLOOKUP to find an exact match or an approximate match. If TRUE or omitted, an approximate match is returned. In other words, if an exact match is not found, the next largest value that is less than lookup_value is returned. If FALSE, HLOOKUP will find an exact match. If one is not found, the error value #N/A is returned. If HLOOKUP can't find lookup_value, and range_lookup is TRUE, it uses the largest value that is less than lookup_value. If lookup_value is smaller than the smallest value in the first row of table_array, HLOOKUP returns the #N/A error value. If range_lookup is FALSE and lookup_value is text, you can use the wildcard characters, question mark (?) and asterisk (*), in lookup_value. A question mark matches any single character; an asterisk matches any sequence of characters. If you want to find an actual question mark or asterisk, type a tilde (~) before the character. EXAMPLE: A B C 1 Axles Bearings Bolts Description Formula (Result) =HLOOKUP Looks up Axles in row 1, and returns the value from row ("Axles",A1:C4,2,TRUE) 2 that's in the same column. (4) =HLOOKUP Looks up Bearings in row 1, and returns the value from ("Bearings",A1:C4,3,FALSE) row 3 that's in the same column. (7) =HLOOKUP Looks up B in row 1, and returns the value from row 3 that's in the same column. Because ("B",A1:C4,3,TRUE) B is not an exact match, the next largest value that is less than B is used: Axles. (5) =HLOOKUP Looks up Bolts in row 1, and returns the value from row ("Bolts",A1:C4,4) 4 that's in the same column. (11) =HLOOKUP(3, Looks up 3 in the first row of the array constant, and returns the value {1,2,3;"a","b","c";"d","e","ffrom row 2 in same column. (c) "},2,TRUE) Vlookup Syntax: VLOOKUP(lookup_value,table_array,col_index_num, [range_lookup]) Looks in the first column of an array and moves across the row to return the value of a cell. You can use the VLOOKUP function to search the first column of a range. For example, suppose that you have a list of employees contained in the range A2:C10. The employees' ID numbers are stored in the first column of the range, as shown in the following illustration. If you know the employee's ID number, you can use the VLOOKUP function to return either the department or the name of that employee. To obtain the name of employee number 38, you can use the formula =VLOOKUP(38, A2:C10, 3, FALSE). This formula searches for the value 38 in the first column of the range A2:C10, and then returns the value that is contained in the third column of the range and on the same row as the lookup value ("Axel Delgado"). The V in VLOOKUP stands for vertical. Use VLOOKUP instead of HLOOKUP when your comparison values are located in a column to the left of the data that you want to find.

13 lookup_value Required. The value to search in the first column of the table or range. The lookup_value argument can be a value or a reference. If the value you supply for the lookup_value argument is smaller than the smallest value in the first column of the table_array argument, VLOOKUP returns the #N/A error value. table_array Required. The range of cells that contains the data. You can use a reference to a range (for example, A2:D8), or a range name. The values in the first column of table_array are the values searched by lookup_value. These values can be text, numbers, or logical values. Uppercase and lowercase text are equivalent. col_index_num Required. The column number in the table_array argument from which the matching value must be returned. A col_index_num argument of 1 returns the value in the first column in table_array; a col_index_num of 2 returns the value in the second column in table_array, and so on. If the col_index_num argument is: Less than 1, VLOOKUP returns the #VALUE! error value. Greater than the number of columns in table_array, VLOOKUP returns the #REF! error value. range_lookup Optional. A logical value that specifies whether you want VLOOKUP to find an exact match or an approximate match: If range_lookup is either TRUE or is omitted, an exact or approximate match is returned. If an exact match is not found, the next largest value that is less than lookup_value is returned. Important If range_lookup is either TRUE or is omitted, the values in the first column of table_array must be placed in ascending sort order; otherwise, VLOOKUP might not return the correct value. If range_lookup is FALSE, the values in the first column of table_array do not need to be sorted. If the range_lookup argument is FALSE, VLOOKUP will find only an exact match. If there are two or more values in the first column of table_array that match the lookup_value, the first value found is used. If an exact match is not found, the error value #N/A is returned.

14 A B C Formula Description Density Viscosity Temperature =VLOOKUP Using an approximate match, searches for (1,A2:C10,2) the value 1 in column A, finds the largest value less than or equal to 1 in column A which is 0.946, and then returns the value =VLOOKUP (1,A2:C10,3,TRUE) =VLOOKUP (0.7,A2:C10,3,FALSE) =VLOOKUP (0.1,A2:C10,2,TRUE) =VLOOKUP (2,A2:C10,2,TRUE) from column B in the same row. Using an approximate match, searches for the value 1 in column A, finds the largest value less than or equal to 1 in column A, which is 0.946, and then returns the value from column C in the same row. Using an exact match, searches for the value 0.7 in column A. Because there is no exact match in column A, an error is returned. Using an approximate match, searches for the value 0.1 in column A. Because 0.1 is less than the smallest value in column A, an error is returned. Using an approximate match, searches for the value 2 in column A, finds the largest value less than or equal to 2 in column A, which is 1.29, and then returns the value from column B in the same row. Result #N/A #N/A 1.71

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

2. To select a range of individual cells, hold down CTRL and click on each cell that you want to include in the range.

2. To select a range of individual cells, hold down CTRL and click on each cell that you want to include in the range. What is Excel? Microsoft Excel is one of the most used spreadsheet software applications of all time. Hundreds of millions of people around the world use Microsoft Excel. You can use Excel to enter all

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

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

Commonly Used Excel Formulas

Commonly Used Excel Formulas Microsoft Excel 2016 Advanced Formulas Look Up Values in a List of Data: Commonly Used Excel Formulas Let's say you want to look up an employee's phone extension by using their badge number or the correct

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

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

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

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

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

Department of Language and Linguistics LG400. Computer Induction for Linguists. Class Handouts. Week 7. Working with data on MS Excel.

Department of Language and Linguistics LG400. Computer Induction for Linguists. Class Handouts. Week 7. Working with data on MS Excel. Department of Language and Linguistics LG400 Computer Induction for Linguists Class Handouts Week 7 Working with data on MS Excel by Mutsumi Ogawa mogawa@essex.ac.uk Session description Do you work with

More information

MICROSOFT OFFICE APPLICATIONS

MICROSOFT OFFICE APPLICATIONS MICROSOFT OFFICE APPLICATIONS EXCEL 2016 : LOOKUP, VLOOKUP and HLOOKUP Instructor: Terry Nolan terry.nolan@outlook.com Friday, April 6, 2018 1 LOOKUP FUNCTIONS WHAT ARE LOOKUP FUNCTIONS USUALLY USED FOR?

More information

AS Computer Applications: Excel Functions

AS Computer Applications: Excel Functions AS Computer Applications: ABS Returns the absolute value of a number. The absolute value of a number is the number without its sign. ABS(number) Number is the real number of which you want the absolute

More information

1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation.

1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. Excel Primer for Risk Management Course 1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. 2. VLOOKUP The VLOOKUP function syntax

More information

Returns the value of a specified cell or array of cells within an array.

Returns the value of a specified cell or array of cells within an array. Microsoft Excel 2013 Functions to Retrieve Data VLookup Index Match SumProduct SumIf and SumIfs Searches for a value in the leftmost column of a table, and then returns a value in the same row from a column

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

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

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

Data Service Center May, Compiled by: Katey Semmel Donna Frieze

Data Service Center May, Compiled by: Katey Semmel Donna Frieze www.dataservice.org Data Service Center May, 2000 478-8957 Compiled by: Katey Semmel Donna Frieze Table of Contents Charting Data... 3 Customizing Charts... 6 Other Customizations... 9 Chart Toolbar...12

More information

IC3-2. IC3 Key Applications Exam Exam.

IC3-2. IC3 Key Applications Exam Exam. Certiport IC3-2 IC3 Key Applications Exam Exam TYPE: DEMO http://www.examskey.com/ic3-2.html Examskey Certiport IC3-2 exam demo product is here for you to test the quality of the product. This Certiport

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

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

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

Excel Tip: How to sum a column based on multiple conditions or criteria in other columns

Excel Tip: How to sum a column based on multiple conditions or criteria in other columns Excel Tip: How to sum a column based on multiple conditions or criteria in other columns Submitted by Jess on Mon, 02/24/2014-00:50 Have you ever wanted to sum a column of values but want to do it only

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

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

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

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

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

Engineering. Engr.10 JKA & KY. College of. San Jose State University

Engineering. Engr.10 JKA & KY. College of. San Jose State University JKA & KY 1 Analysis analysis is a systematic process for analyzing problems that arise in the various fields of engineering. As part of the problem solving process, the data collected has to be processed,

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

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

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

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

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

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 & Business Math Video/Class Project #33 VLOOKUP Function for Incentive Pay: Commissions and Piecework

Excel & Business Math Video/Class Project #33 VLOOKUP Function for Incentive Pay: Commissions and Piecework Topics Excel & Business Math Video/Class Project #33 VLOOKUP Function for Incentive Pay: Commissions and Piecework 1) Incentive Pay... 2 2) Straight Piecework Example... 3 3) Variable Piecework Example

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

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

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

More information

Cheltenham Courseware Microsoft Excel 2007 Advanced Level

Cheltenham Courseware   Microsoft Excel 2007 Advanced Level Cheltenham Courseware www.cheltenhamcourseware.com Microsoft Excel 2007 Advanced Level Excel 2007 Advanced - Page 2 1995-2010 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part

More information

Introducing Excel Entering Text, Numbers and Dates

Introducing Excel Entering Text, Numbers and Dates Chapter 1 Use excel to do quantitative analysis (numerical analysis) Know what rows, columns, etc. are What are the things you want to keep in mind when creating a workbook (planning, etc.)? Three different

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

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

Section 6. Functions

Section 6. Functions Section 6 Functions By the end of this Section you should be able to: Use Logical Functions Use Date and Time Functions Use Lookup Functions Use Maths and Financial Functions Use Concatenate Nest Functions

More information

BASIC EXCEL WORKSHOP 2017

BASIC EXCEL WORKSHOP 2017 BASIC EXCEL WORKSHOP 2017 Download the training materials at: www.nusbas.com/excel-2017 28 FEBRUARY 2017 NUS BUSINESS ANALYTICS SOCIETY (BAS) fb.com/nusbasociety nusbas.com WHAT WILL I BE LEARNING? 1.

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

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

Vlookup and Sumif Formulas to assist summarizing queried data

Vlookup and Sumif Formulas to assist summarizing queried data Vlookup and Sumif Formulas to assist summarizing queried data When accessing data from Foundation through the MS Query tool, at times it is necessary to join multiple tables together to retrieve the required

More information

Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables

Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables Slide 1 Lookups and data tables Unit objectives Use VLOOKUP and HLOOKUP to find values in a worksheet list Use MATCH to find the

More information

Free Tutorial Central

Free Tutorial Central Free Tutorial Central Where Knowledge Is Free For more free tutorials visit http://freetutorialcentral.com Copyright 2009 H. Albert Napier and Ollie N. Rivers. Microsoft Excel 2003: Useful Functions with

More information

Lesson 06. Excel Functions

Lesson 06. Excel Functions Lesson 06 Excel Functions Basic functions: SUM: Adds a range of cells together AVERAGE: Calculates the average of a range of cells COUNT: Counts the number of chosen data in a range of cells MAX: Identifies

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

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015 EXCEL AS BUSINESS ANALYSIS TOOL 10-May-2015 TOUCH POINTS Part A- Excel Shortcuts Part B: Useful Excel Functions Part C: Useful Excel Formulas Part D: Sheet and Cell Protection Part A: EXCEL SHORTCUTS EXCEL

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : IC3-2 Title : IC3 Key Applications Version : DEMO

More information

Microsoft Excel 2007

Microsoft Excel 2007 Kennesaw State University Information Technology Services Microsoft Excel 2007 Special Topics PivotTable IF Function V-lookup Function Copyright 2010 KSU Dept. of Information Technology Services This document

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

MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3. WWP Learning and Development Ltd Page 1

MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3. WWP Learning and Development Ltd Page 1 MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3 WWP Learning and Development Ltd Page 1 NOTE Unless otherwise stated, screenshots in this book were taken using Excel 2007 with a silver colour scheme and running

More information

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with VLOOKUP vs. SUMIFS Battle of the Excel Heavyweights made with Table of Contents 1. What do we mean by Battle? 2. VLOOKUP: Range Lookups 3. SUMIFS: Overview 4. Multi-Column Lookup with VLOOKUP and SUMIFS

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

FV Function Example Word Problem 1:

FV Function Example Word Problem 1: FV Function The FV Function calculates the future value of an investment, given a fixed interest rate, term, and periodic payment. You can use the FV Function to determine how much money you would have

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

Advanced formula construction

Advanced formula construction L E S S O N 2 Advanced formula construction Lesson objectives Suggested teaching time 40-50 minutes To become more adept at using formulas to get the data you want out of Excel, you will: a b c d Use range

More information

NUMERICAL COMPUTING For Finance Using Excel. Interpolation

NUMERICAL COMPUTING For Finance Using Excel. Interpolation NUMERICAL COMPUTING For Finance Using Excel Interpolation Outline 1 Excel Look-up Functions LOOKUP HLOOKUP VLOOKUP INDEX MATCH 2 Interpolation Linear interpolation (Cubic splines) Excel Look-up Functions

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

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

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS ü Open the file Task_1_Template.xlsx. All the further tasks will be conducted in this file, on particular sheets (Menu, Task 1, Task 2, Task 3). TASK 1.

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

Performing Basic Calculations

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

More information

The Parts of a Function:

The Parts of a Function: The Parts of a Function: Each function has a specific order, called syntax, which must be strictly followed for the function to work correctly. Syntax Order: 1. All functions begin with the = sign. 2.

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

exam. Number: Passing Score: 800 Time Limit: 120 min MICROSOFT Excel 2013 Expert Part One.

exam. Number: Passing Score: 800 Time Limit: 120 min MICROSOFT Excel 2013 Expert Part One. 77-427.exam Number: 77-427 Passing Score: 800 Time Limit: 120 min MICROSOFT 77-427 Excel 2013 Expert Part One Exam E QUESTION 1 Conditional Formatting. Use a formula to determine formatting of a cell.

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

Excel Forecasting Tools Review

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

More information

Microsoft Excel. An Introduction to. Lecture No. 2. Date: March Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian

Microsoft Excel. An Introduction to. Lecture No. 2. Date: March Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian An Introduction to Microsoft Excel Lecture No. 2 Date: March 16. 2007 Instructor: Mr. Mustafa Babagil Prepared By: Nima Hashemian 2006 An Introduction to Excel Mathematics Department Eastern Mediterranean

More information

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India Excel Working with Formulas and Functions Using Relative References Using Absolute References Using Mixed References Entering Relative, Absolute, and Mixed References To enter a relative reference, type

More information

Again, you can also use your mouse cursor to click-and-drag highlight a range of cells, or use Control + Click to handpick individual cells.

Again, you can also use your mouse cursor to click-and-drag highlight a range of cells, or use Control + Click to handpick individual cells. EXCEL FUNCTIONS Functions are pre-programmed tools that will manipulate data for you. =SUM() The first function anyone should know tells Excel to carry out basic arithmetic. Let s say you wanted the numbers

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

COMM 205 MANAGEMENT INFO SYSTEMS 2016 FALL MIDTERM EXAM REVIEW SESSION BY LEAH ZHANG

COMM 205 MANAGEMENT INFO SYSTEMS 2016 FALL MIDTERM EXAM REVIEW SESSION BY LEAH ZHANG COMM 205 MANAGEMENT INFO SYSTEMS 2016 FALL MIDTERM EXAM REVIEW SESSION BY LEAH ZHANG TABLE OF CONTENT I. Introduction II. IF; nested IF; AND/OR; putting it all together III. COUNTIFS; SUMIFS IV. VLOOKUP

More information

Project 4 Financials (Excel)

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

More information

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

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

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

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 2016 Intermediate SAMPLE

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

More information

Instructor Edition EVALUATION ONLY

Instructor Edition EVALUATION ONLY ATIO OLY ATIO OLY Instructor Edition ATIO OLY Instructor Edition EXEL2016-L3-R10-ICB 6 ATIO OLY Table of Contents Introduction... 1 Course setup...2 Chapter 1: Logical and Lookup Functions...3 Module A:

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

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

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

Section 3. Topics Covered

Section 3. Topics Covered Section 3 Topics Covered " Calculating using formulas... 3-2 " Copying formulas... 3-7 " Using absolute cell addresses... 3-13 " Calculating results using AutoCalculate... 3-18# " Using functions... 3-21

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

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

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

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

Printing Monthly Eligible List for Providers

Printing Monthly Eligible List for Providers Printing Monthly Eligible List for Providers We have to begin by obtaining two lists from WebKIDSS. The first one will be a Service Line Export, the second will be a Medicaid List Form. *If you do not

More information