Spreadsheets If Statements.

Slides:



Advertisements
Similar presentations
Lesson 3 Working with Formulas.
Advertisements

Intermediate Formulas & Functions Instructor: Rachel Baltus.
SPREADSHEETS Chapter 3 By Michael & Russell What are Spreadsheets used for? SIMPLE CALCULATIONS SIMPLE CALCULATIONS (shop’s weekly profits) COMPLEX CALCULATIONS.
Click the mouse to continue. Relative references Absolute referencesMixed references.
Unit 8.4_Lesson 3_CD Resource 3a_Calculating VAT using absolute cell referencing Calculating VAT Using absolute cell referencing.
COM: 111 Introduction to Computer Applications Department of Information & Communication Technology Panayiotis Christodoulou.
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
Chap 4 Formulas and Functions Exploring Spreadsheet Software.
Pasewark & Pasewark 1 Excel Lesson 5 Using Functions Microsoft Office 2007: Introductory.
Lecture 5 Spreadsheets and Presentations. ©1999 Addison Wesley Longman6.2 The Spreadsheet The spreadsheet is a matrix that consists of: –Worksheet (a.
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall 11 Copyright © 2008 Prentice-Hall. All rights reserved. Committed to Shaping the Next.
Tutorial 8: Working with Advanced Functions
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 11 Copyright © 2008 Prentice-Hall. All rights reserved. Committed to Shaping the Next Generation.
Excel Lesson 5 Using Functions
Advanced Lesson 2: Advanced Data Analysis A PivotTable is a sophisticated tool that creates a concise report summarizing large amounts of data based on.
Insert Formulas and Functions  Create formulas in a worksheet  Insert functions in a worksheet  Use relative and absolute cell references Lesson 3.
It’s not that I’m so smart, it’s just that I stay with problems longer. - Albert Einstein.
General Purpose Packages Spreadsheets. What is a Spreadsheet? Spreadsheets are used mainly for recording mathematical data such as bank records, accounts,
Introduction to Spreadsheets Microsoft Excel A program which allows you to perform complex mathematical operations in an organized manner. What is a spreadsheet?
Excel Project 2 FORMULAS, FUNCTIONS, FORMATTING AND WEB QUERIES.
8.4 Modelling and Presenting Numeric Data Introduction to Spreadsheets.
Excel. Spreadsheet Software  What Is a Spreadsheet, and How Does It Work? A spreadsheet program allows users to perform simple and complex sorting. It.
Spreadsheet Lesson 2 Class 8E. Lesson Objective To understand what a formula & function is. To understand the difference between formulas and functions.
Unit 2 – Spreadsheets Spreadsheets Vlookups.
Databases – Part 1 Databases– Part 1 Lesson 5 & 6.
11 Chapter 2: Formulas and Functions Chapter 02 Lecture Notes (CSIT 104) Exploring Microsoft Office Excel 2007.
Microsoft ® Excel 2010 Core Skills Lesson 3 Using Formulas Courseware #: 3243 Microsoft ® Office Excel 2010.
Spreadsheets Lesson 2 Introduction to basic formula and spreadsheet.
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
1 Excel Lesson 3 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
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.
Spreadsheet Operations and Functions Computer Applications Understand spreadsheets used in business.
How To Use Google Spreadsheet. 1. Create a GMail account if you do not already have one To create a GMail account: 1. Go to mail.google.commail.google.com.
Spreadsheets What is Excel?. Objectives 1. Identify the parts of the Excel Screen 2. Identify the functions of a spreadsheet 3. Identify how spreadsheets.
Unit 2 – Spreadsheets Spreadsheets - Project Computer Shop.
- Professor Kurt Brandquist - IT133 Software Applications Unit 6 Seminar: Formulas and Functions Wednesday, 6/22/11.
Databases – Part 2 Databases– Part 2 Lesson 5 & 6.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 11 Copyright © 2008 Prentice-Hall. All rights reserved. Committed to Shaping the Next Generation.
Unit 2– Spreadsheets Spreadsheets Lesson 1 & 2.
Unit 8 – Spreadsheets Part 2 Spreadsheets Skills Lesson Part 2.
Pages Appendix B: Review of ExcelChapter 3 Market Trends & Analysis IBM 320 CAL POLY POMONA IBM320 Market Trends and Analysis Maha Ghosn.
Programming Simple Programming If and Nested Statements.
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.
ACIS Introduction to Data Analytics & Business Intelligence Business Intelligence Logical Functions Part 2.
Unit 8 – Spreadsheets Part 2 Spreadsheets Skills Lesson Part 1.
Unit 2 – Spreadsheets Spreadsheets If Statements.
Pasewark & Pasewark 1 Excel Lesson 5 Using Functions Microsoft Office 2007: Introductory.
Using Advanced Functions and Conditional Formatting
Chapter 6 Modifying Cell Styles
Introduction to Spreadsheets
Spreadsheets Skills Lesson Part 2
Spreadsheets.
Scratch – Simple Programming
Understanding Spreadsheets
G042 – Lecture 13 Task D – Creating A Spreadsheet
Grauer and Barber Series Microsoft Excel Chapter Three
Introduction to Spreadsheets
Spreadsheets (Excel Tasks)
4.01 Spreadsheet Formulas & Functions
Absolute and Relative cell referencing
4.01 Spreadsheet Formulas & Functions
Introduction to Spreadsheets
Spreadsheet modelling
Spreadsheets A How To!.
Chapter 6 Modifying Cell Styles
Spreadsheets Vlookups.
Introduction to Spreadsheet Terminology
Lessons 3: Coffee Shop Inventory
in Excel Instructor: Zhe He Department of Computer Science
Presentation transcript:

Spreadsheets If Statements

Task Overview Objectives Outcomes Time Understand the use of absolute cell referencing. Understand the use of simple functions (sum,max,min and average in a spreadsheet. Understand the use of If statements including the logical, true and false statements. Understand the need the need to present data in a graph format. Outcomes Time Complete the If Statement worksheets.

Absolute Cell Referencing This cell has absolute cell referencing. When you use AutoFill to duplicate a formula into the cells below then you must use absolute cell referencing if you want the cells to be referencing to one particular cell. Absolute cell referencing will lock in a particular cell. To absolute cell reference you must insert a dollar sign before Letter and number of the cell. All the price cells have been multiplied by the percentage to work out the tax.

Functions Range =Sum(Range) will add up all the numbers in the range =Max(Range) will find the highest number in the range. =Min(Range) will find the lowest number in the range. =average(Range) will find the average number in the range.

=IF(C5>=D5,"on target","off target") If Statements If the units sold is more than or equal to the targets sales than the target has been met. 1. Logical Test Is units sold more than or equal to the target sales. 2. If the statement is true then the “true statement” will be printed in the cell. 3. If the statement is false then the “false statement” will be printed in the cell. =IF(C5>=D5,"on target","off target") 1. Logical Test 2. True 3. False

Plenary – Refer to the Lesson Objectives Understand the use of absolute cell referencing. Understand the use of simple functions (sum,max,min and average in a spreadsheet. Understand the use of If statements including the logical, true and false statements. Understand the need the need to present data in a graph format. Plenary Task (Q&A) Discuss the advantages of using absolute cell referencing and If Statements. Discuss the levels pupils have achieved for this task.