SlideShare a Scribd company logo
1 of 8
Download to read offline
C. Demetriou (2009)        November 1, 2009      1




ž Modelling of objects
ž Modelling of Data




                         C. Demetriou (2009)     Nov ember 1, 2009   2
ž   Allows you to create virtual
    representations of objects
    such as :-
        › Buildings
        › Cars
ž   You can look at the effect
    of outside influences.
        ›   Impact
        ›   Earthquakes
        ›   Fire
        ›   Explosions
                             C. Demetriou (2009)   Nov ember 1, 2009   3




ž   Possible to see different layers
    ›   Internal View
    ›   External View
    ›   Wireframe
    ›   Electrical systems




                             C. Demetriou (2009)   Nov ember 1, 2009   4
ž The ability to ask questions of the model.
ž Changing components to see the effect
  or how it reacts.
ž Effects can be gauged at the touch of a
  button.
ž Without having the risk of building the
  real thing.

                              C. Demetriou (2009)   Nov ember 1, 2009   5




ž Mathematical modelling
ž Predictions in Finance
    › Using spreadsheets
    › Allows replication of values
    › Allows sequences to be setup
    › Allows What If Scenarios to be modelled




                              C. Demetriou (2009)   Nov ember 1, 2009   6
ž   What features make
    spreadsheets ideal for
    modelling?
    › Functions
    › Formulae
    › Variables
    › Automated calculations
      (refreshed)
    › Great for trying out different
      scenarios




                                  C. Demetriou (2009)   Nov ember 1, 2009   7




    ž   Variables
        › An identifier associated with a value stored in
          the model. The value may be in a cell or in
          memory

    ž   Formulae
        › Formulae allow calculations to be represented in
          a spreadsheet. As well as numbers, a formula
          uses the addresses of cells to identify other
          values to be used. The result is placed in the cell
          in which the formula was placed
        › If any of the cells used on the formula change
          their value, the result of the formula is updated
           – E.g (I2-2*B3)/2

                                  C. Demetriou (2009)   Nov ember 1, 2009   8
ž   These are special types of formulae used in a
    spreadsheet

ž   They are used to represent formulae that may
    be too large or complex for the ordinary user to
    enter:
    › SUM() – to add a range of numbers
    › AVERAGE() – to calculate the average of a range
    › HLOOKUP() – to find one value based on another in a
      horizontal list
    › VLOOKUP() – to return a value based on another in a
      vertical list
    › IF() – to make a decision based on a value and
      give an answer whether its TRUE or FALSE

                                 C. Demetriou (2009)   Nov ember 1, 2009   9




ž   Rules are a set of procedures that must be
    followed. For example, if a calculation
    requires two values, then these values must
    be supplied.
ž   Validation rules ensure that data entered
    meets a criteria or is present.
ž   Could be coding:-
    For each cadidate
       For each module
         Enter a UMS mark
      Add all the marks together
    Lookup the mark in the grade table
    Return a grade
                                 C. Demetriou (2009)   Nov ember 1, 2009   10
ž   Answering ‘what-if?’ questions
    › A model can recalculate values – this allows
      single values to be changed and the rest of
      the model to be updated automatically
    › Various combinations can be tried with
      minimal effort
    › ‘What if’ questions are predictive by nature

ž   Advantages of using a data model
    for ‘What if?’ questions:
    › Only one model needs to be created and
      then altered
    › Many different possibilities can be tried -
      repeatability
    › Mistakes can be eradicated prior to
      construction
    › Cost of creating a changeable model against
      several different models
    › Safety of the model – nuclear explosion, trip to
      Mars. Virtual Vs Physical models.
    › Control over the variables

                                            C. Demetriou (2009)   Nov ember 1, 2009   11




ž   Drawbacks of using spreadsheets to
    create or run a spreadsheet

     › Model may not be an accurate
       representation of the real world.

     › If the model relates to people then an
       accurate result may not be given.

     › Many Variables need to be considered
       and it is easy to miss things out.

     › Producing effective models can take a
       lot of time and may need expensive
       hardware and software.




                                            C. Demetriou (2009)   Nov ember 1, 2009   12
ž   Worksheets and Workbooks
     › A number of worksheets within a single file is called a workbook. A
       workbook can be used to divide information between different
       sheets, for example income on one sheet, expenditure on another,
       and a summary on a third
ž   Rows
     › Rows are a horizontal group of cells. In Excel they are identified by
       Number
ž   Columns
     › Columns are a vertical groups of cells. In Excel they are identified by
       Letter
ž   Cells
     › A cell is the square on a spreadsheet in which only a single entry
       can be placed. The entry can be text, numbers or a formula. It can
       be referred to by its address based on its row and column
ž   Ranges
     › A range is a group of cells – usually identified by the address of the
       top left cell to the bottom right cell: A1:G5 for example


                                          C. Demetriou (2009)   Nov ember 1, 2009   13




ž   Replication is the process of copying a formula from
    one cell to another
    › As a formula usually involves references to cells, it is
      necessary to know whether you want to keep the
      references the same (absolute reference) or change
      according to the row or column movement (relative
      reference)

ž   An absolute reference always refers to the same cell.
    Anchors are created using $ sign eg. $A$3. Anchors
    are needed on either Rows or Columns.

ž   A relative reference changes the cell it references
    according to the movement of the target cell. There
    are no anchors on relative references such as A3

                                          C. Demetriou (2009)   Nov ember 1, 2009   14
A     B         C          D            The formula in Cells
                                                   C2:C4 is replicated
                                                   using both relative and
    1    Good   Price VAT Payable VAT
                                                   absolute replication.

    2    Pen    £50   =B2*$D$2      17.5%          When the cell is
                                                   replicated down, the
                                                   reference to B2 needs
    3    Watch £200 =B3*$D$2                       to change so that the
                                                   price changes.
    4    Ring   £500 =B4*$D$2


    However, the reference to cell D2 cannot change. If it was to
    change to cell D3 the formula would not work, as there is
    nothing in cell D3. Therefore as C2 is replicated, the reference to
    B2 needs to change, hence it is a relative reference, but the
    reference to D2 must not change, so it is absolute.
                                        C. Demetriou (2009)   Nov ember 1, 2009   15




ž   Form Controls
        › They include items like:
          – Spinners
          – Drop down boxes
          – Buttons


        › They are used to increase the usability of the
          spreadsheet – list/drop down boxes can limit
          data entry, making validation easier!
        › Buttons can run Macros
                                        C. Demetriou (2009)   Nov ember 1, 2009   16

More Related Content

Recently uploaded

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 

Featured

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

AS ICT (OCR) G061 3.1.4 Spreadsheet Concepts lesson slides

  • 1. C. Demetriou (2009) November 1, 2009 1 ž Modelling of objects ž Modelling of Data C. Demetriou (2009) Nov ember 1, 2009 2
  • 2. ž Allows you to create virtual representations of objects such as :- › Buildings › Cars ž You can look at the effect of outside influences. › Impact › Earthquakes › Fire › Explosions C. Demetriou (2009) Nov ember 1, 2009 3 ž Possible to see different layers › Internal View › External View › Wireframe › Electrical systems C. Demetriou (2009) Nov ember 1, 2009 4
  • 3. ž The ability to ask questions of the model. ž Changing components to see the effect or how it reacts. ž Effects can be gauged at the touch of a button. ž Without having the risk of building the real thing. C. Demetriou (2009) Nov ember 1, 2009 5 ž Mathematical modelling ž Predictions in Finance › Using spreadsheets › Allows replication of values › Allows sequences to be setup › Allows What If Scenarios to be modelled C. Demetriou (2009) Nov ember 1, 2009 6
  • 4. ž What features make spreadsheets ideal for modelling? › Functions › Formulae › Variables › Automated calculations (refreshed) › Great for trying out different scenarios C. Demetriou (2009) Nov ember 1, 2009 7 ž Variables › An identifier associated with a value stored in the model. The value may be in a cell or in memory ž Formulae › Formulae allow calculations to be represented in a spreadsheet. As well as numbers, a formula uses the addresses of cells to identify other values to be used. The result is placed in the cell in which the formula was placed › If any of the cells used on the formula change their value, the result of the formula is updated – E.g (I2-2*B3)/2 C. Demetriou (2009) Nov ember 1, 2009 8
  • 5. ž These are special types of formulae used in a spreadsheet ž They are used to represent formulae that may be too large or complex for the ordinary user to enter: › SUM() – to add a range of numbers › AVERAGE() – to calculate the average of a range › HLOOKUP() – to find one value based on another in a horizontal list › VLOOKUP() – to return a value based on another in a vertical list › IF() – to make a decision based on a value and give an answer whether its TRUE or FALSE C. Demetriou (2009) Nov ember 1, 2009 9 ž Rules are a set of procedures that must be followed. For example, if a calculation requires two values, then these values must be supplied. ž Validation rules ensure that data entered meets a criteria or is present. ž Could be coding:- For each cadidate For each module Enter a UMS mark Add all the marks together Lookup the mark in the grade table Return a grade C. Demetriou (2009) Nov ember 1, 2009 10
  • 6. ž Answering ‘what-if?’ questions › A model can recalculate values – this allows single values to be changed and the rest of the model to be updated automatically › Various combinations can be tried with minimal effort › ‘What if’ questions are predictive by nature ž Advantages of using a data model for ‘What if?’ questions: › Only one model needs to be created and then altered › Many different possibilities can be tried - repeatability › Mistakes can be eradicated prior to construction › Cost of creating a changeable model against several different models › Safety of the model – nuclear explosion, trip to Mars. Virtual Vs Physical models. › Control over the variables C. Demetriou (2009) Nov ember 1, 2009 11 ž Drawbacks of using spreadsheets to create or run a spreadsheet › Model may not be an accurate representation of the real world. › If the model relates to people then an accurate result may not be given. › Many Variables need to be considered and it is easy to miss things out. › Producing effective models can take a lot of time and may need expensive hardware and software. C. Demetriou (2009) Nov ember 1, 2009 12
  • 7. ž Worksheets and Workbooks › A number of worksheets within a single file is called a workbook. A workbook can be used to divide information between different sheets, for example income on one sheet, expenditure on another, and a summary on a third ž Rows › Rows are a horizontal group of cells. In Excel they are identified by Number ž Columns › Columns are a vertical groups of cells. In Excel they are identified by Letter ž Cells › A cell is the square on a spreadsheet in which only a single entry can be placed. The entry can be text, numbers or a formula. It can be referred to by its address based on its row and column ž Ranges › A range is a group of cells – usually identified by the address of the top left cell to the bottom right cell: A1:G5 for example C. Demetriou (2009) Nov ember 1, 2009 13 ž Replication is the process of copying a formula from one cell to another › As a formula usually involves references to cells, it is necessary to know whether you want to keep the references the same (absolute reference) or change according to the row or column movement (relative reference) ž An absolute reference always refers to the same cell. Anchors are created using $ sign eg. $A$3. Anchors are needed on either Rows or Columns. ž A relative reference changes the cell it references according to the movement of the target cell. There are no anchors on relative references such as A3 C. Demetriou (2009) Nov ember 1, 2009 14
  • 8. A B C D The formula in Cells C2:C4 is replicated using both relative and 1 Good Price VAT Payable VAT absolute replication. 2 Pen £50 =B2*$D$2 17.5% When the cell is replicated down, the reference to B2 needs 3 Watch £200 =B3*$D$2 to change so that the price changes. 4 Ring £500 =B4*$D$2 However, the reference to cell D2 cannot change. If it was to change to cell D3 the formula would not work, as there is nothing in cell D3. Therefore as C2 is replicated, the reference to B2 needs to change, hence it is a relative reference, but the reference to D2 must not change, so it is absolute. C. Demetriou (2009) Nov ember 1, 2009 15 ž Form Controls › They include items like: – Spinners – Drop down boxes – Buttons › They are used to increase the usability of the spreadsheet – list/drop down boxes can limit data entry, making validation easier! › Buttons can run Macros C. Demetriou (2009) Nov ember 1, 2009 16