 Option 1 › Separate entries and hide fields › Hide columns or use separate spreadsheets  Option 2 › Build them up in pieces › Use parentheses if you.

Slides:



Advertisements
Similar presentations
Benchmark Series Microsoft Excel 2013 Level 2
Advertisements

Using Excel Biostatistics 212 Lecture 4. Housekeeping Finish Lab 2 today and/or start Lab 3 Mac Addendum Copying and pasting from Stata.
Return To Index Excel Microsoft Excel Basics Lesson 11 Protecting Worksheets Cell & Worksheet ProtectionCell & Worksheet Protection - 2 Workbook.
CS1100: Computer Science and Its Applications Text Processing Created By Martin Schedlbauer
 Review answers  Grades and sample answers posted tonight  Comment sheets available tomorrow (interrupt any meetings) or in class on Thursday.
Programming Diane Pozefsky & Belinda Kerchmar. Where have we been? Websites HTML Code CSS Code PHP includes Spreadsheets Booleans If Statements Logical.
 CHOOSE › Index and list of options › Example: alternative to grade translation.
cell (letter-number) Column (letters) Row (numbers) workbook = collection of worksheets.
 Absolute positioning › Can lock the cell, column or row  Cell: $A$1  Column: $A1  Row: A$1 › To change a reference to absolute  Insert $  Use F4.
cell (letter- number) Column (letters) Row (numbers) workbook = collection of worksheets.
 2008 Pearson Education, Inc. All rights reserved JavaScript: Introduction to Scripting.
Creating a “What-If” Spreadsheet Application GPA Prediction Calculator.
Chapter 7 Data Management. Agenda Database concept Import data Input and edit data Sort data Function Filter data Create range name Calculate subtotal.
 UPPER – Changes stuff to UPPERCASE › “cookie” becomes “COOKIE”  lower – Anybody wanna guess? › “DuH LoLoLoL” becomes “duh lololol”  Valuable for checking.
Introduction to C Programming
Testing a program Remove syntax and link errors: Look at compiler comments where errors occurred and check program around these lines Run time errors:
Analytical Aspects of Audit Stephen Allen, ACBA. Aspects Covered Sample selection from paper lists or multiple sources Simulating applications in MS Excel.
Computer Science 1000 Spreadsheets II Permission to redistribute these slides is strictly prohibited without permission.
Coding for Excel Analysis Optional Exercise Map Your Hazards! Module, Unit 2 Map Your Hazards! Combining Natural Hazards with Societal Issues.
Fruitful functions. Return values The built-in functions we have used, such as abs, pow, int, max, and range, have produced results. Calling each of these.
Fortran 1- Basics Chapters 1-2 in your Fortran book.
Using Excel Biostatistics 212 Lecture 4. Housekeeping Questions about Lab 3? Final Project Dataset! –Check in.
Verify your data entry You could use data types and field properties for adding any validation on your date: EX: Data type: number : allow the user to.
October 2003Bent Thomsen - FIT 3-21 IT – som værktøj Bent Thomsen Institut for Datalogi Aalborg Universitet.
Creating a Web Site to Gather Data and Conduct Research.
General Programming Introduction to Computing Science and Programming I.
1 Data List Spreadsheets or simple databases - a different use of Spreadsheets Bent Thomsen.
Chapter 5 Files/Folders needed: \Chapter5\Samples \Chapter5\Labs.
Excel Final Project – Day 4 Notes DUE TOMORROW!!!!!! You should have 4 reports done by the end of today…
EPIB 698C Lecture 2 Notes Instructor: Raul Cruz 2/14/11 1.
Computer Science 101 Introduction to Programming.
ISU Basic SAS commands Laboratory No. 1 Computer Techniques for Biological Research Animal Science 500 Ken Stalder, Professor Department of Animal Science.
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved Security Panel Application Introducing the Select Case Multiple-Selection Statement.
Chapter 3 MATLAB Fundamentals Introduction to MATLAB Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Microsoft Excel – Pivot Tables Introduction to Microsoft Excel Pivot tables Please login to the computers and launch Microsoft Excel. Rob Jones Room WG43.
How do I export the Address Book to Excel? The first step is to go to "Address Book Report" under Admin Only menu Choose the fields you want. note that.
 2008 Pearson Education, Inc. All rights reserved JavaScript: Introduction to Scripting.
Files Tutor: You will need ….
Return Excel Basics Microsoft Excel Basics Cell & Worksheet ProtectionCell & Worksheet Protection - 2 Workbook Protection - 13 Hiding Worksheets.
Processing Text Excel can not only be used to process numbers, but also text. This often involves taking apart (parsing) or putting together text values.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. EXCEL 2007 THE PROFESSIONAL APPROACH S E R I E S M I C R O S O F T ® O F F I C E Lesson 15.
Operating System Discussion Section. The Basics of C Reference: Lecture note 2 and 3 notes.html.
The single most important skill for a computer programmer is problem solving Problem solving means the ability to formulate problems, think creatively.
1 CA202 Spreadsheet Application Focusing on Specific Data using Filters Lecture # 5.
What are Operators? Some useful operators to get you started.
ExCel Chapters 1 and 2 Classwork: Problems 2-3, 2-6, 2-8, 2-10 Homework: Problems 2-4, 2-7, 2-9, 2-13.
Chapter 6 ANALYZING DATA STATISTICALLY There are several commonly used parameters that allow us to draw conclusions about the characteristics of a data.
Week 3 - Monday.  What did we talk about last time?  Using Scanner to get input  Basic math operations  Lab 2.
Calculating GPA Using Excel
Excel ISERROR Function
Introduction to Computing Science and Programming I
Logical Functions Excel Lesson 10.
Excel IF Function.
Step 1: Prepare data in Excel for mail merge
International Computer Driving Licence Syllabus version 5.0
Question 1 Write an Excel formula in cell Orders
Data Validation and Protecting Workbook
Introduction to Scripting
ExCel Chapters 1 and 2 Classwork: Problems 2-3, 2-6, 2-8, 2-10
Ch 11 Resource Constraints and Linear Programming
CSC115 Introduction to Computer Programming
Objectives Learn about Function procedures (functions), Sub procedures (subroutines), and modules Review and modify an existing subroutine in an event.
Fund Gift Documents Documents created 7/1/14 and after are available in WISDM from the Associated Docs tab of a Project Search for a fund 233 project.
Wyndor Example; Enter data
Computer Science 2 5/17/2016 Finish the Queue Program
JavaScript: Introduction to Scripting
Bent Thomsen Institut for Datalogi Aalborg Universitet
Technical Aspects of the Data
Presentation transcript:

 Option 1 › Separate entries and hide fields › Hide columns or use separate spreadsheets  Option 2 › Build them up in pieces › Use parentheses if you can’t remember precedence  Option1, followed by option 2

 Input errors › Will look at case sensitive and extra blanks when we look at strings › For now, worry about content only  Errors in computation › USUALLY from bad input › BUT sometimes other cases

LL

 Do not want Excel error messages But do not want to ignore errors Use built-in functions to be more friendly  Error checking makes expressions complex But do not want to require perfect input Options: › Check and convert › Hide columns or use separate spreadsheets

 Types of errors Types of errors  IFERROR Simple computation: just use it Complex computation: hide column  Translating their errors ERROR.TYPE CHOOSE =CHOOSE(ERROR.TYPE(C2),"NULL","DIV","VAL","REF", "NAME")