LESSON 3 Working with Functions, Formulas, and Charts.

Slides:



Advertisements
Similar presentations
Excel IF Functions The IF function is one of Excels most useful and most used functions. What it does, basically, is test to see whether a certain condition.
Advertisements

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.
MS-Excel XP Lesson 5. Exponentiation 1.A1  2 A2  3 A3  =A1^A2 B1  =2^4 2.^ for exponentiation.
Microsoft Excel 2010 Test.
Introduction to Excel Formulas, Functions and References.
MONTEGO BAY HIGH SCHOOL INFORMATION TECHNOLOGY THE EXCEL IF FUNCTION.
# 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 IF and Boolean Functions 1 CSE 2111 Lecture-IF and Boolean Functions.
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
Pre-defined System Functions Simple IF & VLOOKUP.
Multiplying Decimals Multiplying decimals is similar to multiplying whole numbers. The difference is that we place a decimal point in the product
What is Excel?? An electronic spreadsheet program What does that mean? – Stores and manipulates numbers – Makes tables with text or numbers – Creates.
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
September 17, Addition and Subtraction Number Stories.
Spreadsheet Operations and Functions.  Spreadsheet Operations and Functions increase the efficiency of data entry, the performing of calculations, and.
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.
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.
1 Spreadsheets SELECTION. 2 Aims  Understand the principles of selection in Excel  Examine the basic IF statement format  Look into Nested IF statements.
LOGO Chapter VI Advanced Functions 1. LOGO Overview  INTRODUCTION  NESTED FUNCTIONS  LOOKUP  VLOOKUP  COUNTIF  SUMIF  IF  ROUND  THE PMT, IPMT.
Lesson No: 11 Working with Formula, Function, Chart & Excel Tools CHBT-01 Basic Micro process & Computer Operation.
8.4 Modelling and Presenting Numeric Data Introduction to Spreadsheets.
Percents as Fractions A. Express 40% as a fraction in simplest form. Answer:
Divisibility rules.
Excel Project 2 Formulas, Functions, and Formatting.
Calculating “Slide View Completion” Percent in Adobe Presenter.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
# 1# 1 Error Messages, VLookup, Practical Tips What use is VLookup? How do you error check in Excel? CS 105 Spring 2010.
Unit 4, Lesson 4 Using Function Formulas. Objectives Understand function formulas. Understand function formulas. Use the Average and Sum functions. Use.
Comparing and Rounding Decimals Christine Berg Edited V Hamilton.
Lesson 8: The Key to Rounding Money
1 Excel Lesson 3 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
Spreadsheet Operations and Functions Computer Applications Understand spreadsheets used in business.
Are used in higher-level operations, such as conditional and comparison equations to compute interest rates, due dates and payment terms, and financial.
1 Academic PowerPoint Introduction to Spreadsheets – Fundamental Skills 1.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
DAY 5: SPRING 2016 EXCEL INTRODUCTION Rahul Kavi January 26,
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.
Mathsercise-C Rounding Ready? Here we go!. Estimate the value of: 1 Rounding x 7.85 Answer Question 2 Round each number to a sensible figure.
Spreadsheet Calculations Formulas & Functions Computer Applications I.
CTS130 Spreadsheet Lesson 6 Working with Math & Trig, Statistical, and Date & Time Functions.
♣Multiplying Decimals♣
Introduction to Spreadsheets –
Computer Information Technology Section 6-17
Number Systems Write the decimal value of the binary number
Obj – Indentify and Use Advanced Functions
Percents, Fractions, and Decimals
Who Wants To Be A Millionaire?
Advanced Functions – Obj. 4.01
Excel 2010 Functions A function is a predefined formula that performs a calculation using specific values in a particular order. Functions save you time.
Chapter 5: Control Structure
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Lesson 4: Introduction to Functions
Maths skills in science
CS2011 Introduction to Programming I Selections (I)
Spreadsheets Objective 6.02
Advanced Functions – Obj. 4.01
Topic 3 Lesson 1 – Conditional Logic
Functions theory © EIT, Author Gay Robertson, 2017.
REACH Computer Resource Center
Spreadsheets Objective 6.02
Advanced Functions Advanced Functions are used in higher-level operations, such as conditional and comparison equations to compute interest rates,
Lessons 3: Coffee Shop Inventory
Presentation transcript:

LESSON 3 Working with Functions, Formulas, and Charts

2 Functions  A predefined formula that used the values in the cells you select to calculate its answer Sum—adds the values in a range of cells Average—averages the values of a range of cells Count—counts the cells containing numbers in a range of cells

3 Functions  A predefined formula that used the values in the cells you select to calculate its answer Max—finds the highest value in a range of cells Min—finds the lowest value in a range of cells Round—adjust a value displaying to a certain number of digits

4 Functions  =SUM(A1:B10) This function/formula will add the values of the range of cells listed in the argument

5 Functions  =SUM(A1:A40,C1:C40) Adds the cells A1 through A40 and C1 through C40

6 Functions  =B2/SUM(C3:C5) Takes the value in B2 and divides it by the sum of the values in C3 through C5

7 Functions  =ROUND(SUM(B12:B23),2) Totals the values in the range B12 to B23 and rounds that to two decimal points

8 Functions  =MAX(C10:C100) Displays the highest value in the range of C10 to C100

9 Functions  IF Functions =IF(condition,x,y) The user can tell Excel to perform one of two different calculations based on whether your data matches a certain condition (the condition will be either True or False) (x will be the result if the condition is True) (y will be the result if the condition is False)

10 Functions  IF Functions Use equals (=), greater than (>), less than (<), greater than or equal to (>=), less than or equal to (<=) as conditional operators in the condition statement.

11 Functions  IF Functions =IF(B2>500000,B2*10%,B2*3%) If b2 is greater than , (condition) then value in B2 times 10 percent, (True) otherwise value in B2 times 3 percent (False)

12 Functions  =SUMIF(G2:G10,”<=500”) Computer will add the values in G2 to G10 Only if the value is less than or equal to 500

13 Functions  =SUMIF(I10:I25,”x”,J10:J25) Sum range J10 to J25 if X is in the range I10 to I25