Introduction to the Essentials of Excel COMP 066.

Slides:



Advertisements
Similar presentations
TUTORIAL 1 Getting Started with Excel
Advertisements

CS&E 1111 Exfunctions Using Functions in Excel Objectives: Using Excel functions l SUM, MIN, MAX, AVERAGE, COUNT, COUNTA l ROUND l COUNTIF, SUMIF, AVERAGEIF.
CS1100: Computer Science and Its Applications Building Flexible Models in Microsoft Excel.
Managerial Decision Making and Problem Solving Computer Lab Notes 1.
EXCEL UNIT 3 Computer Technology Timpview High School.
A. Ruiz Méthodes d ’aide à la décision en RO Using Spreadsheets in Management Science Models Spreadsheets have become a powerful tool in management.
Basics Of Spreadsheets Chapter Spreadsheet spreadsheet: grid of cells, each of which can contain text data or numeric data.
Excel Objects, User Interface, and Data Entry. ◦ Application Window  Title Bar  Menu Bar  Toolbars  Status Bar  Worksheet Window  Worksheet Input.
Microsoft Excel Computers Week 4.
ACOT Intro/Copyright Succeeding in Business with Microsoft Excel 2010: Chapter1.
Chapter 13 Creating a Workbook.
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 2 1 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
1 Computing for Todays Lecture 8 Yumei Huo Spring 2006.
1 Excel Lesson 3 Using Formulas and Functions Microsoft Office 2010 Fundamentals Story / Walls.
Skills for Success: Excel Association of Soil & Water Conservation Districts Summer Conference By: Darci Harrison.
1 Copyright © 2010, 2007, 2004 Pearson Education, Inc. All Rights Reserved. Discrete Distributions Chapter 5.
XP Copyright 2003 Peter McDevitt 1 Microsoft Excel 2002 Lecture 2 – Working With Formulas and Functions.
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
Chapter 9: Simulation Spreadsheet-Based Decision Support Systems Prof. Name Position (123) University Name.
ACOT Intro/Copyright Succeeding in Business with Microsoft Excel 2010: Chapter1.
Microsoft Excel Diane M. Coyle Spring 2009 CS 105.
XP Abdul Hameed 1 Microsoft Office Excel 2013 Tutorial 2 – Working With Formulas and Functions.
Entering Data Nolan Tomboulian Tomboulian.wikispaces.com 1.
Introduction to Spreadsheet Software. Spreadsheets and Their Uses Examples of Charts Spreadsheet Basics Spreadsheet Map Types of Spreadsheet Data Navigating.
Microsoft Excel Used to organize information for calculations.
Exploring Engineering Chapter 3, Part 2 Introduction to Spreadsheets.
Question 10 What do I write?. Spreadsheet Make sure that you have got a printout of your spreadsheet - no spreadsheet, no marks!
Introduction to Spreadsheets Program: Excel. Starting Excel Spreadsheets Spreadsheet –A grid of rows and columns used to make calculations. A spreadsheet’s.
Excel Project 2 Formulas, Functions, and Formatting.
Chapter 12 Creating a Worksheet.
1 Week 3: Introduction to Microsoft Excel Spreadsheet READING: Glade Manual Ch. 1.
Numeric and Functional. A cell is the intersection of a row and column Each cell in the spreadsheet has a name – The column-name followed by the row-name.
CPSC 203 Introduction to Computers Tutorial 03 and 29 By Jie (Jeff) Gao.
CS1100: Computer Science and Its Applications Building Flexible Models in Microsoft Excel Martin Schedlbauer, Ph.D.
Data Analysis Activity Data Analysis Enter data with 100% accuracy Format Cells.
Simulation Using computers to simulate real- world observations.
Computer Simulation. The Essence of Computer Simulation A stochastic system is a system that evolves over time according to one or more probability distributions.
Basic Spreadsheet Skills Review BUS 782. Expression.
Working with Formulas and Functions
XP 1 Microsoft Office Excel 2003 Working With Formulas and Functions.
Spreadsheets: Part I Creating a Worksheet in MS Excel
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
1 BA 555 Practical Business Analysis Linear Programming (LP) Sensitivity Analysis Simulation Agenda.
XP 1 ﴀ New Perspectives on Microsoft Office 2003, Premium Edition Excel Tutorial 2 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
1 Academic PowerPoint Introduction to Spreadsheets – Fundamental Skills 1.
Excel Spreadsheets Formatting and Functions ICS100 – Spring 2007 D. Pai.
CSci 162 Lecture 7 Martin van Bommel. Random Numbers Until now, all programs have behaved deterministically - completely predictable and repeatable based.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
Working with Formulas and Functions Lesson 5 Part 1 1.
Introduction to Spreadsheets –
MSAA PRESENTS: AN EXCEL TUTORIAL
International Computer Driving Licence Syllabus version 5.0
Tell me in your own words:
Introduction to Spreadsheets
Excel 2010.
Unit 42 : Spreadsheet Modelling
Introduction to Spreadsheets 5.00
Introduction to Spreadsheets
4.01 Spreadsheet Formulas & Functions
Excel: Formulas & Functions I Participation Project
4.01 Spreadsheet Formulas & Functions
Excel 2010.
Intro to Excel CSCI-150.
Working with Formulas and Functions
Introduction to Spreadsheets –
Formulas Formulas are entered in the worksheet cell and must begin with an equal sign "=". The formula then includes the addresses of the cells whose values.
Working with Formulas and Functions
Introduction to Spreadsheet Terminology
Introduction to Spreadsheets
Introduction to Spreadsheets
Presentation transcript:

Introduction to the Essentials of Excel COMP 066

Fill in Square with Numeric Value 1.Click cell and type value 1.Click lower right corner of marked cell 2.Drag over fill area

Fill Square with Text Value Analog to numeric value

Format cells Change the type of the data in the cell

Format cell 1.Mark all cells to format 2.Right click on cells select 3.Select desired properties – number digits – alignment – date format

Arithmetic on Pairs of Values 1.For computation start with “=“ and then arithmetic expression 2.hit enter to calculate

Reference Values of other Cells Reference through letter for column and number for row $ makes reference absolute so it does not change during copy and paste as well as during extension normally adapts itself during copy and paste

Extending Cells with References Absolute reference: Relative reference:

Function RANDBETWEEN() & RAND() RANDBETWEEN(a,b) delivers integer between a and b RAND() delivers uniformly distributed random number between 0 and 1

INT() & ROUND() INT() truncates decimal digits Round() rounds with given precision

Logical Values (TRUE/FALSE) Comparison result Combine logical values with AND() and OR() function logical AND is multiplication, logical OR is addition

IF THEN ELSE Conditionals used to decide about further computation

Combining cell values Dual coin flip with double IF for test of results to generate output of double coin flip = B201&C201

Flipping a coin Random number 1 or 2 (use RANDBETWEEN) Use IF to display – “h” for head when 2 – “t” for tail when 1 Extend to simulate multiple coin flips

Operations on data Average Max Min Counting cells – counts all cells with numeric value – counts all non empty cells – counts cell fulfilling condition =AVERAGE(D6:D30) =MAX(D6:D30) =MIN(D6:D30) =COUNT(D5:D31) =COUNTA(D5:D31) =COUNTIF(D6:D30, "<=2")

INDEX INDEX obtains the value of the indexed cell in value – D6-D30 give range of cells to select from – RANDBETWEEN delivers random index – COUNT delivers max index by counting the cells in D6-D30

Use Help If you don’t know the function use the help function! – describes the functions input compute function output – has examples to understand the function

Simulation in Excel 1.Enumerate the event outcomes 2.List the probabilities for each outcome, either by entry or by computation 3.Compute final entry in list with =1-sum(a:b) where a:b spans the rest of the list 4.For each compound event, compute its probability from the simple event probabilities: – using multiplication when the compound event outcome is the AND of two simple event outcomes – using addition when the compound event outcome is the OR of two or more simple event outcomes