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.

Slides:



Advertisements
Similar presentations
Lesson 3 Working with Formulas.
Advertisements

CS&E 1111 Exfunctions Using Functions in Excel Objectives: Using Excel functions l SUM, MIN, MAX, AVERAGE, COUNT, COUNTA l ROUND l COUNTIF, SUMIF, AVERAGEIF.
About Functions SUM, AVERAGE, MIN, MAX, COUNT, ROUND
Excel Features That Would Help You Prepare Class Result.
EXCEL.
Maths & Trig, Statistical functions. ABS Returns the absolute value of a number The absolute value of a number is the number without its sign Syntax ◦
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Introduction to Excel Formulas, Functions and References.
# 1# 1 CS 105 Functions, IF Functions What is a function? What is an IF function? A PMT function? What is a condition? What is nesting? CS 105 Spring.
Computer Science & Engineering 2111 CONDITIONAL STATISTICAL FUNCTIONS 1 CSE 2111 Lecture Conditional Statistical Functions.
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
BASIC FUNCTIONS OF EXCEL. Addition The formula for addition is: =SUM( insert cells desired to sum up ) This returns the sum of the selected cells.
Tutorial 8: Working with Advanced Functions
Spreadsheets Objective 6.02
1CP102_module 3: spreadsheet2 More features in Excel Selection: a cell, a range, multiple ranges Name a range: to give name to a selected range or multiple.
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
Chapter 6 Advanced Functions Copyright 2005 Radian Publishing Co.
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.
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
AGB 260: Agribusiness Information Technology Advanced Functions and Logic.
CS&E 200 Exfunctions Using Functions in Excel Objectives: Using Excel functions l Sum, Min, Max, Average, Count l Large, Small, Rank l Round l Countif.
MS Excel Management Information Systems 1. Contents 2  Functions  IF Function and nested IF  Sorting Data.  Filtering Data.  Data Form.  Data Validation.
Revision Function in Spreadsheet. AVERAGE Returns the average (arithmetic mean) of the arguments. Syntax AVERAGE(number1,number2,...) Number1, number2,...
Chapter 11 Creating Formulas that Count and Sum Microsoft Excel 2003.
Sundara Ram Matta Jan 28 th, Sundara Ram Matta Jan 28 th, 2014
Prescriptive Analytics Appendix A EXCEL TOOLS FOR THE MANAGEMENT SCIENTIST Business Analytics with Management Science Models and Methods Arben Asllani.
Spreadsheet Lesson 2 Class 8E. Lesson Objective To understand what a formula & function is. To understand the difference between formulas and functions.
Powerpoint Templates Page 1 Powerpoint Templates MS Excel Functions.
Exploring Office 2003 Vol 1 2/e - Grauer and Barber 1 Committed to Shaping the Next Generation of IT Experts. Chapter 4: Spreadsheets in Decision Making:
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
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.
More Spreadsheets Range Formulas & Empty Cells Logical Functions Lookup Functions.
Excel Review By Mr. Griffin Elmira Business Institute.
CIS300 Test Review REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
Intermediate Excel 2013 Gareth Johns IT Skills Development Advisor.
Unit 8 – Spreadsheets Part 2 Spreadsheets Skills Lesson Part 2.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
Resource Review Excel formula basics Demonstrate how to enter manual formulas Examine some of the available functions and their usage Discuss the.
Spreadsheet Calculations Formulas & Functions Computer Applications I.
CTS130 Spreadsheet Lesson 6 Working with Math & Trig, Statistical, and Date & Time Functions.
EXCEL. PARTICIPATION PROJECT STEPS a, 4b
AGB 260: Agribusiness Information Technology Advanced Functions and Logic.
CIS300 Test Review REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
Ms. Hall Spring Functions. Excel – Lesson 4 Summarizing Data with Functions A function is a predefined formula that performs a calculation. When.
MSAA PRESENTS: AN EXCEL TUTORIAL
Contents Introduction Text functions Logical functions
Working with Functions
Using Advanced Functions and Conditional Formatting
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
College of Engineering
Spreadsheets Skills Lesson Part 2
CIS300 Test Review REACH - CRC Fall 2010
Unit 42 : Spreadsheet Modelling
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
Lesson 4: Introduction to Functions
REACH CRC Professor Manni
Spreadsheets Objective 6.02
REACH Computer Resource Center
Spreadsheets Objective 6.02
Introduction to Spreadsheet Terminology
Lessons 3: Coffee Shop Inventory
in Excel Instructor: Zhe He Department of Computer Science
Presentation transcript:

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 a function is an equals sign (=), the function name (SUM, for example), and one or more arguments. Arguments contain the information you want to calculate. The function in the example below would add the values of the cell range A1:A20. Insert function – Shift + F3

There are a variety of functions. Here are some of the most common functions you'll use: SUM: This function adds all the values of the cells in the argument. AVERAGE: This function determines the average of the values included in the argument. It calculates the sum of the cells and then divides that value by the number of cells in the argument. COUNT: This function counts the number of cells with numerical data in the argument. This function is useful for quickly counting items in a cell range. MAX: This function determines the highest cell value included in the argument. MIN: This function determines the lowest cell value included in the argument. IF: Use the IF function, one of the logical functions, to return one value if a condition is true and another value if it's false. Syntax IF(logical_test, value_if_true, [value_if_false])

AND function Returns TRUE if all its arguments evaluate to TRUE; returns FALSE if one or more arguments evaluate to FALSE.

OR function Return a TRUE if any argument is TRUE; returns FALSE if all arguments are FALSE. NOT function

COUNTA function The COUNTA function counts the number of cells that are not empty in a range. COUNTIF function Counts the number of cells within a range that meet the given condition. Syntax COUNTIF(range, criteria) PRODUCT function Multiplies all the numbers given as arguments. For example, the formula=PRODUCT(A1:A3, C1:C3) is equivalent to =A1 * A2 * A3 * C1 * C2 * C3. SUMIF function Adds the cells specified by a given condition or criteria.

You use the SUMIF function to sum the values in a range 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") ABS function Returns the absolute value of a number, a number without its sign. POWER function Returns the result of a number raised to a power. FACT function Returns the factorial of a number, equal to 1*2*3*….* Number. SQRT function Returns the square root of a number.