Spreadsheet Calculations Formulas & Functions Computer Applications I.

Slides:



Advertisements
Similar presentations
MICROSOFT EXCEL CALCULATIONS.
Advertisements

Benchmark Series Microsoft Excel 2010 Level 1
Lesson 3 Working with Formulas.
Formulas, Ranges, and Functions. Formulas n Formulas perform operations such as addition, multiplication, and comparison on worksheet values. n Formulas.
About Functions SUM, AVERAGE, MIN, MAX, COUNT, ROUND
EXCEL.
FORMULAS & FUNCTIONS EXCEL 2. Excel Input – a collection of informational data typed into the spreadsheet Output – worksheet results Information to be.
FORMULAS & FUNCTIONS EXCEL. Input A collection of information Data typed into the spreadsheet Output Worksheet Results.
Excel – Study Guide #2.
Microsoft Office XP Microsoft Excel
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
Pasewark & Pasewark 1 Excel Lesson 5 Using Functions Microsoft Office 2007: Introductory.
Copyright 2003, Paradigm Publishing Inc. CHAPTER 3 BACKNEXTEND 3-1 LINKS TO OBJECTIVES AutoSum Button Mathematical Operators Mathematical Operators Formula.
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
Spreadsheets Objective 6.02
Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 2 BACKNEXTEND 2-1 LINKS TO OBJECTIVES Mathematical OperatorsMathematical Operators Formula.
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
Excel Lesson 5 Using Functions
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
Excel – Lesson 1 Pasewark & PasewarkMicrosoft Office 2007: Introductory 1 Entering a Formula (continued) Formulas can include more than one operator. The.
Microsoft Excel Diane M. Coyle Spring 2009 CS 105.
Insert Formulas and Functions  Create formulas in a worksheet  Insert functions in a worksheet  Use relative and absolute cell references Lesson 3.
Excel Project 2 FORMULAS, FUNCTIONS, FORMATTING AND WEB QUERIES.
 What is a formula in Excel?  A formula is statement written by the user to be calculated. Formulas can be as simple or as complex as the user wants.
Introduction to Spreadsheets Program: Excel. Starting Excel Spreadsheets Spreadsheet –A grid of rows and columns used to make calculations. A spreadsheet’s.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
Numeric and Functional. A cell is the intersection of a row and column Each cell in the spreadsheet has a name – The column-name followed by the row-name.
Unit 4, Lesson 4 Using Function Formulas. Objectives Understand function formulas. Understand function formulas. Use the Average and Sum functions. Use.
TYPES OF INFORMATION IN EXCEL Types of information can be typed in a cell o text o numbers o formulas o functions Text is also known as labels o Aligns.
Microsoft ® Excel 2010 Core Skills Lesson 3 Using Formulas Courseware #: 3243 Microsoft ® Office Excel 2010.
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.
Components of Spreadsheets Computer Applications 1 Obj. 4.01: Understand spreadsheets used in business.
1 Academic PowerPoint Introduction to Spreadsheets – Fundamental Skills 1.
Doing math In java.
Basics of Ms Excel-2007 Instructor: Mr. Michael John Tanzania Public Service College.
Resource Review Excel formula basics Demonstrate how to enter manual formulas Examine some of the available functions and their usage Discuss the.
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.
EXCEL Study Guide #2 Spreadsheet Terms  Input Collection of information – the data to be typed into the spreadsheet.  Output Worksheet results.
Pasewark & Pasewark 1 Excel Lesson 5 Using Functions Microsoft Office 2007: Introductory.
Ms. Hall Spring Functions. Excel – Lesson 4 Summarizing Data with Functions A function is a predefined formula that performs a calculation. When.
Introduction to Spreadsheets –
Microsoft Excel.
The Basics of Formulas & Functions
Numeric and Functional
Understanding Spreadsheets
Excel Formulas & Functions.
Excel 2013 Formulas & Functions.
Working with Formulas and Functions
Excel 2013 Formulas & Functions.
8.01 Spreadsheets and Components of Spreadsheets
EXCEL Study Guide #2.
4.01 Spreadsheet Formulas & Functions
Excel 2010 Functions A function is a predefined formula that performs a calculation using specific values in a particular order. Functions save you time.
Excel 2013 Formulas & Functions.
4.01 Spreadsheet Formulas & Functions
Lesson 20 Creating Formulas and Charting Data
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Lesson 4: Introduction to Functions
Spreadsheets Objective 6.02
GO! with Microsoft® Excel 2010
Introduction to Spreadsheets –
Mathematical operators
Spreadsheets Objective 6.02
Working with Formulas and Functions
Introduction to Spreadsheet Terminology
Lessons 3: Coffee Shop Inventory
Mathematical Formulas and Excel
in Excel Instructor: Zhe He Department of Computer Science
Introduction to Spreadsheets
Presentation transcript:

Spreadsheet Calculations Formulas & Functions Computer Applications I

 =A1+B2  A sequence of values, cell references, names, functions, or operators in a cell that together produce a new value.  A formula always begins with an equal sign (=).  Requires mathematical operators. FORMULA

 Operators specify the type of calculation.  There are four different types of formula calculation operators: 1. Arithmetic 2. Comparison 3. Text 4. Reference. MATHEMATICAL OPERATORS

ARITHEMETIC (Mathematical Operators) Addition (3+3) Subtraction (3–1) or Negation (–1) Multiplication (3 * 3) Division (3 / 3) Percent (20%) Exponentiation (3 ^ 2)

COMPARISON (Mathematical Operators) Equal to (A1=B1) Greater than (A1>B1) Less than (A1<B1) Greater than or equal to (A1>=B1) Less than or equal to (A1<=B1) Not equal to (A1<>B1)

COMPARISON (Mathematical Operators) When two values are compared by using these operators, the result is a logical value either TRUE or FALSE.

TEXT (Mathematical Operators) Ampersand (&) connects text strings, numbers, or single-cell references to produce a single piece of text. =CONCATENATE("Stream population for ",A2," ",A3," is ",A4,"/mile") (Stream population for brook trout species is 32/mile)

REFERENCE (Mathematical Operators)  Colon ( : ) indicates cell range. (B5:B15)  Comma (, ) combines multiple cell ranges into one reference. (SUM(B5:B15,D5:D15))  Space ( ) is the intersection operator, which produces a common reference for both cell ranges. (B7:D7 C6:C8)

FORMULA: Order of Operations Excel evaluates the operators from left to right unless a parentheses encloses the numerical data. =5+2*3 =(5+2)*

Combining Formulas & Functions In the example below, the parentheses around the first part of the formula force Excel to calculate B4+25 first and then divide the result by the sum of the values in cells D5, E5, and F5. =(B4+25)/SUM(D5:F5)

FUNCTION  = AVG (A1:B1)  Predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure.  SHORTCUT!

AUTOSUM  = SUM(A1:B1)  Function that adds all values within a range of cells.  Range can be altered by highlighting and clicking.

USING FUNCTIONS  Sum ~ Total of values using addition.  Average ~ The average of the values.  Max ~ The largest value.  Min ~ The smallest value.  Count ~ The amount of data entries. (Default function for data other than numbers.) =SUM (A1:B1) =AVG (A1:B1) =MAX (A1:B1) =MIN (A1:B1) =COUNT (A1:B1)