CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 

Slides:



Advertisements
Similar presentations
CIS100 Test Review Dale McIntosh © 2009 Dale McIntosh. All Rights Reserved.Fall 2009.
Advertisements

Lesson 3 Working with Formulas.
CIS100 Test 2 Review REACH CRC © 2011 REACH CRC. All Rights Reserved.Spring 2011.
CIS100 Final Exam Review REACH- CRC © 2010 REACH CRC. All Rights Reserved.Fall 2010.
About Functions SUM, AVERAGE, MIN, MAX, COUNT, ROUND
REACH CRC © 2011 REACH CRC. All Rights Reserved.Fall 2011.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Introduction to Excel Formulas, Functions and References.
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
Tutorial 3 Calculating Data with Formulas and Functions
259 Lecture 4 Spring 2010 Logical Functions and Conditional Formatting in Excel.
Spreadsheets Objective 6.02
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
Excel 2010 Formulas and Functions One of Excel's most useful features is that it allows users to create custom formulas to perform calculations on their.
Last Week: Excel 101 with Prof. Bliley: Workbooks, worksheets, rows, columns Cells: Text, Value, Formulas Formulas, Ranges OK? Survive Alive? Questions?
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
Data Analysis Formula and Functions. Formula and functions A function is a calculation in a spreadsheet that has or can be memorized. There are many different.
CIS300 TEST REVIEW EXAM 1- PROF. ZURADA & PROF. GUAN REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Excel chapter 2.
Syntax MROUND(number,multiple) Number is the value to round. Multiple is the multiple to which you want to round number. Remark MROUND rounds up, away.
LOGO Chapter VI Advanced Functions 1. LOGO Overview  INTRODUCTION  NESTED FUNCTIONS  LOOKUP  VLOOKUP  COUNTIF  SUMIF  IF  ROUND  THE PMT, IPMT.
DAY 5: MICROSOFT EXCEL – CHAPTER 2 Aliya Farheen January 27,2015.
Copyright © 2014 Pearson Education, Inc. Publishing as Prentice Hall. 1 by Mary Anne Poatsy, Keith Mulbery, Lynn Hogan, Amy Rutledge, Cyndi Krebs, Eric.
Revision Function in Spreadsheet. AVERAGE Returns the average (arithmetic mean) of the arguments. Syntax AVERAGE(number1,number2,...) Number1, number2,...
CIS300 TEST REVIEW EXAM 2- PROFS. KENDRA, GOYAL & MCINTOSH REACH - CRC © 2014 REACH All Rights Reserved.
CIS100 Test Review REACH Computer Resource Center © 2011 REACH-CRC. All Rights Reserved.REACH.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
CIS100 Test Review REACH- CRC © 2011 REACH-CRC. All Rights Reserved.Spring 2011.
CIS100 Test 1 Review REACH Computer Resource Center.
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
FUNCTIONS FUNCTIONS are : Special formulas that do not use operators to calculate a result (i.e., a shortcut formula) Example: =SUM(A6:A9) SUM is the.
XP 1 ﴀ New Perspectives on Microsoft Office 2003, Premium Edition Excel Tutorial 2 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
CIS300 Test Review REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
CIS100 Test 1 Review REACH Computer Resource Center.
Microsoft Excel Prepared by the Academic Faculty Members of IT.
CIS 300- Professor Im Test #2. MICROSOFT ® EXCEL ® LOOKUP FUNCTIONS Syntax: =VLOOKUP(lookup_value,table_array,col_index_num,[range_lookup]) Arguments:
Pages Appendix B: Review of ExcelChapter 3 Market Trends & Analysis IBM 320 CAL POLY POMONA IBM320 Market Trends and Analysis Maha Ghosn.
Resource Review Excel formula basics Demonstrate how to enter manual formulas Examine some of the available functions and their usage Discuss the.
REACH- CRC © 2011 REACH-CRC. All Rights Reserved.Fall 2011 © 2011 REACH-CRC. All Rights Reserved.
FUNCTIONS The parts of a function In order to work correctly, a function must be written a specific way, which is called the syntax. The basic syntax for.
CTS130 Spreadsheet Lesson 6 Working with Math & Trig, Statistical, and Date & Time Functions.
CIS 100 Test #3 Review REACH Computer Resource Center.
CIS 300- Professor McIntosh Test #3. MICROSOFT ® EXCEL ® MATHEMATICAL FUNCTIONS Syntax: =ROUND(number, num_digits) Arguments: number Required  The number.
CIS300 Test Review REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
Excel AVERAGEIF Function
Exam 2- McIntosh REACH - CRC
REACH Computer Resource Center
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
REACH Computer Resource Center
Excel IF Function.
Excel Functions.
REACH CRC Professor Reinhardt
Understanding Spreadsheets
CIS300 Test Review REACH - CRC Fall 2010
Excel Tutorial 3 Calculating Data with Formulas and Functions
Working with Formulas and Functions
4.01 Spreadsheet Formulas & Functions
Microsoft Excel – Part I
Excel Functions.
4.01 Spreadsheet Formulas & Functions
Excel Functions.
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
REACH CRC Professor Manni
Spreadsheets Objective 6.02
REACH Computer Resource Center
Spreadsheets Objective 6.02
Working with Formulas and Functions
Introduction to Spreadsheet Terminology
REACH Computer Resource Center
Presentation transcript:

CIS 100 Test #2 Review 1

EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others  oring/computer/cistestreviews.html 2

Absolute, Mixed and Relative For a formula being copied: If the reference is:It changes to: $A$1 (absolute column and absolute row) $A$1 (the reference is absolute) A$1 (relative column and absolute row) C$1 (the reference is mixed) $A1 (absolute column and relative row) $A3 (the reference is mixed) A1 (relative column and relative row) C3 (the reference is relative)

4 Syntax: =IF(logical_test, [value_if_true], [value_if_false]) Arguments: logical_test Required  Any value or expression that can be evaluated to TRUE or FALSE. value_if_true Optional The value that you want to be returned if the logical_test argument evaluates to TRUE. If logical_test evaluates to TRUE and the value_if_true argument is omitted (that is, there is only a comma following the logical_test argument), the IF function returns 0 (zero). To display the word TRUE, use the logical value TRUE for the value_if_true argument.

5 Syntax: =IF(logical_test, [value_if_true], [value_if_false]) Arguments: value_if_false Optional  The value that you want to be returned if the logical_test argument evaluates to FALSE.  If logical_test evaluates to FALSE and the value_if_false argument is omitted, (that is, there is no comma following the value_if_true argument), the IF function returns the logical value FALSE.  If logical_test evaluates to FALSE and the value of the value_if_false argument is omitted (that is, in the IF function, there is a comma following the value_if_true argument), the IF function returns the value 0 (zero).

6 Description: The IF function returns one value if a condition you specify evaluates to TRUE, and another value if that condition evaluates to FALSE. Remarks: Up to 7 IF functions can be nested as value_if_true and value_if_false arguments to construct more elaborate tests. (2003) Up to 64 IF functions can be nested as value_if_true and value_if_false arguments to construct more elaborate tests. (2007) If any of the arguments to IF are arrays, every element of the array is evaluated when the IF statement is carried out. Errors: None

7 value_if_true  [value_if_false ]

8 Syntax: =SUM(number1, [number2], [number3], [number4],...) Arguments: number1 Required  The first item that you want to add. number2, number3, number4,... Optional  The remaining items that you want to add, up to a total of 255 items.

9

10 Syntax: =ROUND(number, num_digits) Arguments: number Required  The number that you want to round. num_digits Required  The number of digits to which you want to round the number argument.

11 Description: Rounds a number to a specified number of digits. Remarks: If num_digits is greater than 0 (zero), then number is rounded to the specified number of decimal places. If num_digits is 0, the number is rounded to the nearest integer. If num_digits is less than 0, the number is rounded to the left of the decimal point. Errors: None

12 =ROUND(-1.475,2) Rounds to two decimal places

13 Syntax: =AVERAGE(number1, [number2],...) Arguments: number1 Required  The first number, cell reference, or range for which you want the average. number2,... Optional  Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255.

14

15 Syntax: =COUNT(value1, [value2],...) Arguments: value1 Required  The first item, cell reference, or range within which you want to count numbers. value2,... Optional  Up to 255 additional items, cell references, or ranges within which you want to count numbers.

16 Description: Counts the number of cells that contain numbers, and counts numbers within the list of arguments. Remarks: Arguments that are numbers, dates, or a text representation of numbers (for example, a number enclosed in quotation marks, such as "1") are counted. Logical values and text representations of numbers that you type directly into the list of arguments are counted. Arguments that are error values or text that cannot be translated into numbers are not counted. If an argument is an array or reference, only numbers in that array or reference are counted. Empty cells, logical values, text, or error values in the array or reference are not counted. Errors: None

17

18 Syntax: =COUNTA(value1, [value2],...) Arguments: value1 Required  The first argument representing the values that you want to count. value2,... Optional  Additional arguments representing the values that you want to count, up to a maximum of 255 arguments.

19 Description: Counts the number of cells that are not empty in a range. Remarks: Counts cells containing any type of information, including error values and empty text ("“). The COUNTA function does not count empty cells. Errors: None

20 =COUNTA(A1:A8) =7

21 Syntax: =MAX(number1,[number2],...) Arguments: number1, number2,... Required  1 to 255 numbers for which you want to find the maximum value.

22

23 Syntax: =MIN(number1,[number2],...) Arguments: number1, number2,... Required  1 to 255 numbers for which you want to find the minimum value.

24

 Mean- Same as AVG Function  Median-Numbers in chronological order, middle number. (If two middle numbers, average of the two)  Mode- Number that occurs most frequently in set of numbers (Returns lowest of values if two or more numbers occur equally) 25

EXCEL PRACTICE  Question (Excel) Consider the following five values: -3, 0, 6, 7, and 10 The arithmetic mean of these values is ____ Answer  1  3.94  4  6  None of the answers provided are correct

EXCEL PRACTICE  Question (Excel) Assume that cell E4 in a spreadsheet has the following formula: =AB$4 + $C44 What formula will result from copying it into cell D8?  Answer =AA$4 + $C48

What is the result of evaluating the following formulas? (a)=IF(SUM(B4:B7)>=MIN(B6,C5,D4,E7),E4,"Goodbye") Hello (b) =IF(E6=MAX(C4:C8),SUM(E5:E8),IF(D4>C7,B7,D6)) Coffee (c) =IF(D4=16,SUM(B5:C6)-MAX(C5:D6),MIN(D5:E8)) -25 (d) =COUNT(C4:D8) 8 (e) =(AVERAGE(B4:B6)-2)/C6 1

What is the result of evaluating the following formula? =IF(MAX(D5:D9)>MIN(C5:C9),"D5",D7) A. 9 B. 16 C. D5 D. D7 E. None of the answers provided is correct

(a) Write a formula to determine the highest legal speed limit listed in Column C. (b) Write a formula to count the number of drivers listed in the table. (c) Write a formula to calculate the average speed of all drivers listed in the table. (d) What formula should be entered in cell E5 to show (6 points): "No Fine" if the driver was not speeding, A fine of $50 plus $5 for each MPH over the stated speed limit otherwise. (Note: Your formula will need to work properly for all of the other drivers when copied down column E.)

(a)Write a formula to determine the highest legal speed limit listed in Column C. =MAX(C5:C9) (b) Write a formula to count the number of drivers listed in the table. =COUNTA(B5:B9) (c) Write a formula to calculate the average speed of all drivers listed in the table. =AVERAGE(D5:D9) (d) What formula should be entered in cell E5 to show (6 points): "No Fine" if the driver was not speeding, A fine of $50 plus $5 for each MPH over the stated speed limit otherwise. (Note: Your formula will need to work properly for all of the other drivers when copied down column E.) =IF(D5<=C5, “No Fine”, 50+5*(D5-C5))