Spreadsheet Modelling

Slides:



Advertisements
Similar presentations
Business Planning using Spreasheets-2 1 BP-2: Good Spreadsheet Practice  There is always the temptation to rush in and start entering data.  However.
Advertisements

Let’s Learn About Spreadsheets Start What is a Spreadsheet? A spreadsheet is used for storing information and data. Calculations can be performed on.
What is a spreadsheet? A spreadsheet is a program used for performing calculations on a table divided into rows and columns. Cells in a spreadsheet can.
Functions S S T : S P R E A D S H E E T S SST 5 Spreadsheet 5 Function.
About Functions SUM, AVERAGE, MIN, MAX, COUNT, ROUND
Spreadsheets A spreadsheet package is a general purpose computer package that is designed to perform calculations. A spreadsheet is a table which is divided.
C1: Sigma Notation For Sequences Sigma is a Greek letter. Capital sigma looks like this: Σ In Maths this symbol is used to mean ‘sum of’: add together.
33 CHAPTER BASIC APPLICATION SOFTWARE. © 2005 The McGraw-Hill Companies, Inc. All Rights Reserved. 1-2 Announcement: QUIZ#02 In Lecture Session # 9 (5.
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
Chapter 7: User-Defined Functions II Instructor: Mohammad Mojaddam.
How to answer Section B (January 2012 example) YEAR 12 REVISION.
1 Excel Lesson 3 Using Formulas and Functions Microsoft Office 2010 Fundamentals Story / Walls.
Spreadsheets In today’s lesson we will look at:
Database Design IST 7-10 Presented by Miss Egan and Miss Richards.
Mr Shum Spreadsheets eBooklet. Key Words Key Word CellAn individual box on a spreadsheet RowCells going across in an horizontal line. All rows have a.
AO1 help This guide is to help you ensure that you have everything that you need for a PASS/MERIT If you would like a distinction, please see me.
Pizza Mundo Click on My Documents: unit 3 – Spreadsheet modelling GD
Excel Projects 5 & 6 Notes Mr. Ursone. Excel Project 5: Sorting a List  Sorting: Arranging records in a specific sequence  The Sort command is on the.
Question 10 What do I write?. Spreadsheet Make sure that you have got a printout of your spreadsheet - no spreadsheet, no marks!
Working with Spreadsheets S S T : S P R E A D S H E E T S SST 2 Objectives 1.Perform data entry tasks 2.Use formulae and functions in worksheet calculations.
AARON CROCKETT Spreadsheets used in the real world Examples of different spreadsheets Features used within spreadsheets Improving Productivity & Usability.
Unit 5 Evidence Name: Corey jones. 1.What software did you use? When doing my unit 5 spreadsheet I used Microsoft excel. 2. Why did you use this rather.
With Microsoft Office 2007 Intermediate© 2008 Pearson Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Office 2007 Intermediate.
Excel Introduction. Excel Is a Spreadsheet Laid out in columns and rows Consists primarily of numbers and formulas 32 =A1+A2.
Unit 5 Evidence Name: sean Hingeley. 1.What software did you use? I used Microsoft excel for my spreadsheets 2.Why did you use this rather than something.
CS&E 1111 ExFormulas Building a Spreadsheet Model: Cell Addressing in Excel Objectives: l To understand how formulas are copied l Relative & Absolute Cell.
Access Project 3 Notes. Introduction Maintaining the Database  Modifying the data to keep it up-to-date Restructure the Database  To change the database.
Copyright © 2008 Pearson Prentice Hall. All rights reserved Exploring Microsoft Office Excel 2007 Chapter 8 What-if Analysis Robert Grauer, Keith.
Chapter 6 Creating, Sorting, and Querying a Table
Verification & Validation. Batch processing In a batch processing system, documents such as sales orders are collected into batches of typically 50 documents.
Chapter 4. This presentation covers the following: – Worksheets – Workbooks – Rows and Columns – Cells – Ranges – Relative referencing – Absolute referencing.
Pigs Galore Spreadsheet User Documentation oink Begin.
1 Academic PowerPoint Introduction to Spreadsheets – Fundamental Skills 1.
Conditional formatting and validation Spreadsheet modelling.
How to answer Section B (May 2012 example) YEAR 12 REVISION.
Unit 8 – Spreadsheets Part 2 Spreadsheets Skills Lesson Part 1.
MEDUPI Catering PS(M)(R)2012 / AB /01: Financial Requirements Presented by: Commercial Finance Date: Thurs 11 Sept 2014.
N5 Databases Notes Information Systems Design & Development: Structures and links.
Introduction to Spreadsheets –
3.1.4 Modelling.
Functions and relations
Excel Activity 9: Quiz Scores
Chapter 10 Programming Fundamentals with JavaScript
Chapter 4: Business Process and Functional Modeling, continued
Online Business Account
Advanced Functions Computer Applications 1
Lesson 5&6: Creating an interactive quiz
Obj – Indentify and Use Advanced Functions
Developing an Excel Application
Functions and relations
Chapter 10 Programming Fundamentals with JavaScript
Spreadsheets (Excel Tasks)
Lesson 5&6: Creating an interactive quiz
Advanced Functions – Obj. 4.01
Coding Concepts (Basics)
Absolute and Relative cell referencing
Data Tables and Arrays.
Lesson 20 Creating Formulas and Charting Data
Lesson 4: Introduction to Functions
Spreadsheets, Modelling & Databases
Lesson 2: Cell References
Year 10 & 11 Programming Similar, But Different!
Advanced Functions – Obj. 4.01
Introduction to Spreadsheets –
Microsoft Office Excel 2003
Entering Records.
Mathematical operators
Advanced Functions Advanced Functions are used in higher-level operations, such as conditional and comparison equations to compute interest rates,
Mathematical Formulas and Excel
Introduction to Spreadsheets
Presentation transcript:

Spreadsheet Modelling Chapter 4

Contents This presentation covers: Variables Formulae Rules Functions

Variables Variables are symbols or names which represent a value. For example, a variable can be called VAT and a value can be attached to that variable. VAT_RATE = 17.5 Variable Name Value of variable

Variables A variable can be associated with a particular cell in a spreadsheet. In this example, Cell A2 represents the VAT_RATE variable. The contents of the cell is it’s value.

Formulae Formulas are used in spreadsheets to increase the flexibility of the spreadsheet. To work out a price of a product you need to know the price excluding VAT and the value of VAT based on the original price. Final Price = price ex.VAT + ((price ex.VAT*VAT_RATE)/100) £14.10 = £12 + ((£12 x 17.5%)/100) £14.10 = £12 + 2.10

Formulae By using variable names a formula can become quite flexible. If the value of VAT changes we would only need to change it once because formulas would be using the variable name instead of the actual value. This would cause all values which used the variable name VAT_RATE in their formula to automatically update.

Rules Rules are things which must be followed. They can also be a consequence of something e.g. If the price of flour goes up then the price of bread goes up. In a spreadsheet, it may be that two values are required to perform a calculation. Validation checks can be added to ensure that these are provided before the calculation takes place to avoid errors.

Rules Some rules involve a sequence of events. For example, to calculate the number of points an F1 driver has and to see who is the winner: For each driver For each race Enter points received Add all the points together Find highest score Return Winner

Functions Functions are used to simplify complex formulas. Functions use reserved words which the user can enter into a spreadsheet. Common functions include: SUM: Adds up a range of numbers and provides a total. MAX: Searches a range of numbers and provides the highest value LOOKUP: Gives a value from an array based on a given value.

Take note: Define the term variable. Give an advantage of naming a cell. Describe two differences between functions and formulae. Give an example of a function and a rule that perform the same action. In the context of modelling, what is a rule? Describe the rule required to work out someone’s age on a particular date.