Lessons 3: Coffee Shop Inventory

Slides:



Advertisements
Similar presentations
MS EXCEL is a spreadsheet application Excel covers: Calculation Graphic tools Pivot tables Macro programming language called VBA EXCEL is a part of MS.
Advertisements

Lesson 3 Working with Formulas.
Intermediate Formulas & Functions Instructor: Rachel Baltus.
About Functions SUM, AVERAGE, MIN, MAX, COUNT, ROUND
EXCEL.
Spreadsheets… a software program that allows you to use rows and columns of data to manage, predict, and present information. COLUMN ROW CELL (intersection)
FORMULAS & FUNCTIONS EXCEL. Input A collection of information Data typed into the spreadsheet Output Worksheet Results.
Introduction to Excel Formulas, Functions and References.
MS-Excel XP Lesson 2. Handling Worksheets 1.Bottom of the every workbook you can get worksheets. 2.No of sheets for a book is three. But you can add,
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
Lesson 14 Creating Formulas and Charting Data
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.
1 Excel Lesson 3 Using Formulas and Functions Microsoft Office 2010 Fundamentals Story / Walls.
Excel Web App By: Ms. Fatima Shannag.
Spreadsheets Objective 6.02
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.
Instructions To use this template: –for each slide write the correct answer on the orange bar first –choose which option (A,B,C or D) and make sure you.
Exploring Excel 1. Introduction to Microsoft Excel: What is a Spreadsheet? What else can Excel do? Calculations – Inventory Lists.
Marion Setton1 Exploring Excel 1. Introduction to Microsoft Excel: What is a Spreadsheet? What else can Excel do? Calculations – Inventory Lists – Scheduling.
ELECTRONIC SPREADSHEET Chang-Yang Lin Eastern Kentucky University.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
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.
Excel Web App By: Ms. Fatima Shannag.
Spreadsheets Lesson 1: Introduction. Lesson Objectives To understand what a spread sheet is and how it can be used To identify the features of a 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.
Excel Review By Mr. Griffin Elmira Business Institute.
Spreadsheets Lesson 3: Formatting and formulas. Lesson Objectives To understand how to format a spreadsheet to improve the appearance To understand more.
1 Academic PowerPoint Introduction to Spreadsheets – Fundamental Skills 1.
LOGO Chapter III Excel Functions Date: 1. LOGO Overview  Understanding Functions  Using Reference Operators  Understanding Functions Sum function Average.
Introduction to Excel Lecture 3. Excel basics O Excel is a software program that can make number manipulation easy O It is also referred as a spreadsheet.
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.
Spreadsheet Calculations Formulas & Functions Computer Applications I.
Unit 8 – Spreadsheets Part 2 Spreadsheets Skills Lesson Part 1.
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.
Excel Lesson 5 Using Functions
Lesson 3: Formatting and formulas
Microsoft Official Academic Course, Microsoft Excel Core 2016
Technology Mrs. Huddleston
Working with Formulas and Functions
Spreadsheets (Excel Tasks)
Spreadsheets Note: These are condensed keypoints for the purpose of printing for absent pupils. These are the same as the keypoints copied from the earlier.
Microsoft Excel 101.
Excel 2010 Functions A function is a predefined formula that performs a calculation using specific values in a particular order. Functions save you time.
Lesson 1 Notes Chapter 6.
Lesson 20 Creating Formulas and Charting Data
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
ICT Spreadsheets Lesson 3: Working with Formulas and Functions
Lesson 4: Introduction to Functions
Introduction to Spreadsheets
Spreadsheets Objective 6.02
Intro to Excel CSCI-150.
Topic 3 Lesson 1 – Conditional Logic
Functions theory © EIT, Author Gay Robertson, 2017.
Introduction to Spreadsheets –
Mathematical operators
Spreadsheets Objective 6.02
Working with Formulas and Functions
Introduction to Spreadsheet Terminology
Chapter 6 Lesson 3.
Lessons 1 & 2: A Pancake Recipe
Microsoft Official Academic Course, Microsoft Excel Core 2016
Introduction to Spreadsheets
Presentation transcript:

Lessons 3: Coffee Shop Inventory Unit 1: Using Functions and Formulas Lessons 3: Coffee Shop Inventory

Lesson 3: Coffee Shop Inventory Objectives: Open and move an existing Google Sheets file in Google Drive Understand the parts of a function Learn common functions (Sum, Average, Min and Max) Understand the IF conditional function Use functions in a spreadsheet

What is a Function? Functions are pre-defined formulas that perform common calculations When the values used in a function change, the spreadsheet automatically recalculates the value Ask students if they can determine how a function is different from a formula.

Writing a Function A function typically has three parts: Equal sign Function name Arguments

Equal Sign An equal sign indicates the spreadsheet should perform a calculation. Every function must start with an equal sign.

Function name The function name indicates the operation to preform, such as SUM or AVERAGE.

Arguments The arguments are values, such as a range of cells, used to calculate the function’s value. Not all functions have arguments - e.g. TODAY().

Common Functions- SUM Before revealing, ask students what they think the SUM function might be used for.

Common Functions- SUM The SUM function adds a range of cells.

Common Functions- AVERAGE Before revealing, ask students what they think the AVERAGE function might be used for.

Common Functions- AVERAGE The AVERAGE function adds a range of cells and then divides the number of cell entries to find the average value.

Common Functions- MIN Before revealing, ask students what they think the MIN function might be used for.

Common Functions- MIN The MIN function returns the smallest number from a range of cells.

Common Functions- MAX Before revealing, ask students what they think the MAX function might be used for.

Common Functions- MAX The MAX function returns the largest number from a range of cells.

IF Functions The IF function’s structure is an equal sign, function name (IF) and three arguments; a logical expression, and two values A logical expression is an expression that evaluates to either TRUE or FALSE.

IF Functions Logical expressions can contain: Cell references  C4 Text  “Empty” Numbers  19 Formulas  =(C3+12)/3 Functions  AVERAGE(B2:B12)

IF Functions =IF(logical_expression, true_value, false_value) A spreadsheet calculates the value of an IF function by first evaluating the logical expression. If the expression is TRUE, then the first value in the function is used. If the expression is FALSE, then the second value in the function is used.

Ways to Enter Functions 1. Type in the function, and then highlight the cells to fill in the function’s range. 2. Use the function command, under the insert tab.