Mathematical Formulas and Excel

Slides:



Advertisements
Similar presentations
Benchmark Series Microsoft Excel 2010 Level 1
Advertisements

Lesson 3 Working with Formulas.
Part 2.  Enter formulas  Select Cells  Format Cell Contents  Insert Borders  Standard Error Values & How to Correct  Format Numbers.
Intermediate Formulas & Functions Instructor: Rachel Baltus.
About Functions SUM, AVERAGE, MIN, MAX, COUNT, ROUND
Review Ch. 15 – Spreadsheet and Worksheet Basics © 2010, 2006 South-Western, Cengage Learning.
EGN 1006 – Introduction to Engineering Engineering Problem Solving and 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.
 Microsoft Excel is an electronic spreadsheet.  As with a paper spreadsheet, you can use Excel to organize your data into rows and columns and to perform.
MS Excel Formulas & Functions. What are formulas & functions?  Formulas are instructions that tell Excel how to perform calculations.  Formulas must.
Excel – Study Guide #2.
Excel: Working With Formulas Cooperative Conversations January 12, 2007.
Microsoft Office XP Microsoft Excel
Introduction to Powerschool and Excel Jared Schatz Staff Accountant (509)
Pasewark & Pasewark 1 Excel Lesson 4 Entering Worksheet Formulas Microsoft Office 2007: Introductory.
Excel Using Formulas and Functions Microsoft Office 2010 Fundamentals 1.
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 16: Working with Formulas and Functions. Learning Objectives After studying this lesson, you will be able to:  Create formulas to calculate values,
EXCEL. Lesson #1: Introduction to Spreadsheets  You will learn the basics about spreadsheets, cell addresses, rows/columns, and data entry.
 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.
Excel Worksheet # 5 Class Agenda Formulas & Functions
Introduction to Spreadsheets Program: Excel. Starting Excel Spreadsheets Spreadsheet –A grid of rows and columns used to make calculations. A spreadsheet’s.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 1 Copyright © 2008 Prentice-Hall. All rights reserved. What Can I Do with a Spreadsheet.
Key Words: Functional Skills. Key Words: Spreadsheets.
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.
INTRODUCTION TO SPREADSHEETS MICROSOFT EXCEL. Spreadsheets Allows users to perform simple and complex sorting Allows users to perform calculations quickly.
Working with Formulas and Functions
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
Lesson 4: Working with Formulas and Functions. Learning Objectives After studying this lesson, you will be able to:  Create formulas to calculate values,
1 Academic PowerPoint Introduction to Spreadsheets – Fundamental Skills 1.
Mathematical Formulas and Excel
Resource Review Excel formula basics Demonstrate how to enter manual formulas Examine some of the available functions and their usage Discuss the.
Working with Formulas and Functions Lesson 5 Part 1 1.
XP Practical OpenOffice.org Chapter 5 1 Creating a Worksheet.
Introduction to Spreadsheets –
CSE111 Introduction to Computer Applications
Formulas, Functions, and other Useful Features
The Basics of Formulas & Functions
Module 4.2: Calculations.
Microsoft Excel.
Computer Fundamentals
Excel 2010.
MS-Excel Part 1.
Excel Formulas & Functions.
Microsoft Excel 2003 Illustrated Complete
Intro. to Spreadsheets Using Microsoft Excel
Excel 2013 Formulas & Functions.
Technology Mrs. Huddleston
Working with Formulas and Functions
Excel 2013 Formulas & Functions.
Spreadsheets (Excel Tasks)
EXCEL Study Guide #2.
4.01 Spreadsheet Formulas & Functions
Microsoft Excel 101.
Excel: Formulas & Functions I Participation Project
Excel 2013 Formulas & Functions.
4.01 Spreadsheet Formulas & Functions
Lesson 1 Notes Chapter 6.
Excel: Formulas & Functions I Participation Project
Excel 2010.
ICT Spreadsheets Lesson 3: Working with Formulas and Functions
Introduction to Spreadsheets
Excel Lesson 4 Entering Worksheet Formulas
Lesson 3: Working with Formulas and Functions
Introduction to Spreadsheets –
Mathematical operators
Working with Formulas and Functions
Introduction to Spreadsheet Terminology
Introduction to Spreadsheets
Presentation transcript:

Mathematical Formulas and Excel Formulas and Functions

Formulas The real power of spreadsheets. Automatically calculates math, based on formulas that you input into specific cells. What can you include in these formulas? Addition (+) Subtraction(-) Multiplication(*) Division(/) Exponents (^)

Formulas Indicator Syntax the first sign in a spreadsheet formula In excel we always start formulas with an equal sign (=) Syntax Formulas must follow a specific sequence in order to work properly. Excel: Follows the BEDMAS rule Brackets, Exponents, Division, Multiplication, Addition, Subtraction

Getting Used to Formulas To add numbers together Type Cell Locations, NOT values in the cell you are working in where the answer should appear. i.e. =B3 + A1 + B2 To Multiply or Divide Cells are separated by either * or / i.e. = (B3*A3)/4 Excel will calculate the multiplication in the brackets first, then divide the answer by 4.

Functions in Excel Using a function instead of a formula will make the input of a formula much faster. Functions are pre-formatted mathematical demands that indicate to the program what calculations need to be done. Instead of entering every individual cell – you can insert a function and select a range of cells. Example: Instead of the formula = A1+A2+A3+A4 We use the function = SUM(A1:A4)

Spreadsheet Functions Frequently Used Spreadsheet Functions SUM – calculates the total of a range of cells MIN- identifies the lowest value (minimum) in the range of values specified MAX – identifies the highest value (maximum) in the range of values specified AVERAGE or AVG – calculates the arithmetic mean of the values in the specified cells COUNT – counts the number of numeric values in the range specified

What makes up a formula with a function? The indicator (=) The function name (e.g. SUM, AVG) The arguments (contained within brackets) – the cells on which you want the function performed =AVG(B3:B14) FUNCTION ARGUMENT INDICATOR

Inserting Functions Click on the fx button next to the formula bar. Select the function you wish to insert. You may have to search for it using the search bar. A box will appear that will allow you to select your cells/range. Click ok when you are finished. Non consecutive cells are separated by a comma (,) Consecutive cells are separated by a colon (:)

Fill Down and Fill Across This allows you to take a formula or data and replicate it down an entire column or across an entire row. Absolute Cell Referencing: Will keep a certain cell constant while changing others. Insert $ before both column and row reference ($A$1) that you would like to keep the same when you fill down or across. Relative Referencing: Will replicate a value down a column or across a row and change the values relative to the cell that you are copying too.

Tips Pressing CTRL + ~ allows you to toggle between viewing your values and formulas/functions in a spreadsheet. ESC will allow you to exit out of inserting a formula/function if you have made an error. Double clicking on the seam of a column or row will automatically adjust it to be the width of the information in the cell.

Common Errors in Excel Formulas #### means the column is too narrow for the values. #NAME? means a cell name is incorrect (ie. AQ instead of A3). #REF! means a cell you are referring to in a calculation has likely been deleted. #VALUE! means a cell you want to use in a formula is probably a label.