Learn Ninja-Like Spreadsheet Skills with LESSON 9. Math, Step by Step

Size: px
Start display at page:

Download "Learn Ninja-Like Spreadsheet Skills with LESSON 9. Math, Step by Step"

Transcription

1 EXCELL MASTERY Learn Ninja-Like Spreadsheet Skills with LESSON 9 Doing Math, Step by Step

2 It s Elementary, My Dear Ninja There is a scene in the short story The Crooked Man, where Sherlock Holmes accurately comments about how busy Dr. Watson has recently been. Watson, impressed by Holmes ability to know that, asks how Sherlock could have known. Sherlock says, I have the advantage of knowing your habits, my dear Watson. When your round is a short one you walk, and when it is a long one you use a hansom. As I perceive that your boots, although used, are by no means dirty, I cannot doubt that you are at present busy enough to justify the hansom. Excellent! says Watson. Elementary, corrects Sherlock. It wasn t that Sherlock Holmes performed any intense magic trick to raise his level of awareness. Nor did he have the superhero powers we talked about earlier. It was nothing extraordinary, just plain, simple, elementary logic. And an ability to string several elementary observations together to arrive at a profound result. That s what this lesson is about performing simple (elementary level) math functions in Excel. Then stringing them together to achieve profound results. Basic Math functions If you have never created a math function in Excel, this is your lucky day. Open the workbook, and go to the Basic tab. There are seven examples for basic math functions. In the white boxes on the right side, enter the formulas for each equation to the left. For example, in cell G6, type =C6+E6 and press Enter. You will likely breeze through the next four or five equations. In order, they should read: =C8-E8 =C10*E10 =C12/E12 =C14+E14-G14 Excel Mastery Page 2

3 SUM If Excel was a rock band, then the SUM function was their first big hit. It s what got them noticed, a record contract, and a ton of groupies. I know this because I was one of the groupies. Click on cell I16, and enter the following formula: =SUM(C16:G16) and press Enter. That s the way to sum a continuous range of cells. If, however, the cells are not cleanly presented to you in a single row or column, you can combine ranges by using a comma. For example, try entering this formula: =SUM(C6:E6,G8,C16:G16). It now includes numbers from the first two examples in its total. Order of Operations Excel follows the standard order of operations for calculating a formula. That means when you have any formula with multiple operators (add, subtract, multiply, divide), there is a consistent way to calculate the answer. Without a standard order of operations, x 5 could be either 20 or = 8, and 8 x 5 = 40 3 x 5 = 15, and = 20 The order of operations is this: Parentheses, Exponents, Multiplication, Division, Addition, Subtraction There s a very popular acronym to help you remember this order. It has nothing to do with anyone s dear aunt Sally. I mean, it make sense. Practice Excel Mastery Daily And Succeed!! So what does it mean? It means Excel will do anything inside parentheses first. Once it s done with calculating everything within parentheses, it then looks for exponents, and calculates them. Then multiplication, and so on until the formula is completely calculated. What does that mean for our formula above? 5 [addition] 3 [multiplication] 5 =?? Excel Mastery Page 3

4 There s addition and multiplication, and Multiplication comes first. 3 x 5 = 15. So we re left with Excel tells us it s 20. If we wanted the opposite result, then we would use parentheses to get us there. Since parentheses are always calculated first, it s a very useful tool for us. The formula would be: ( ) x 5 It s elementary. Enter a formula to calculate example 7. First without parentheses. Then with a set of parentheses around the first two cell references, and another set of parentheses around the second two cell references. Quite a difference! LOGIC The root of logic is cause and effect. If something, then something else. We re surrounded by logic and if-then statements in our lives. If I eat McDonald s five times a day, then I will gain weight. If I flip a light switch up, then a light turns on. Even Murphy s Law is a statement of logic. If something can go wrong, then it will go wrong. Transferring the ability to calculate if-then statements to Excel is like giving it the ability to think for itself. It s like adding an invisible employee to my team. I have Excel the intern at my disposal when I make effective use of logic statements. Only Excel doesn t call in sick. On the Excel workbook included with this lesson, go to the Logic tab. Example 1 has a random grade assigned to cell D6. In cell E6, we d like to make a formula that tells us whether the student passed or failed. The structure of an Excel IF statement is this: =IF(condition, do if true, do if false) For our purpose, the condition is to determine if the student s grade is below a passing score of 65. If it is below that number, then the cell should display the word Fail. If the statement is false (meaning the grade is 65 or higher), then the cell should display the word Pass. Here is the actual formula: =IF(D6<65,"Fail","Pass") Excel Mastery Page 4

5 Math is Lame NOT Example 2 requires that you use the NOT statement within an IF statement. In this scenario, a statement will be true if anything EXCEPT the case inside the NOT statement is true. Have you ever said I don t care what happens, as long as xyz doesn t happen? What you re saying, in Excel speak, is =NOT( xyz ). As long as it s not that one case, then all is well. For this example, a letter grade is assigned in cell D8. We want a formula in cell E8 to display Pass as long as the letter grade is NOT F. It can read pineapple for all we care. It just can NOT be F. Here s the formula: =IF(NOT(D8="F"),"Pass","Fail") OR OR is the next function. It s allowing for any one or more situations to be true, but it doesn t need all. Example 3 has the same letter grade as example 2. This time, however, we want a formula that looks for an actual passing grade in order for cell E10 to display Pass. Pineapple will no longer work here. Sorry, pineapple. Each statement you want checked within the OR function needs to be separated by a comma. Here s the OR function that checks for any passing grade: =IF(OR(D10="A",D10="B",D10="C",D10="D"),"Pass","Fail") AND Where the OR statement is looking for one of the several to be true, AND needs them all to be true in order to also be true. To illustrate how this would be used, example 4 has the number of completed lessons. For a student to graduate (and thus display graduate in cell E12), they must receive a passing grade AND have completed all 10 lessons. The conditions inside the AND function must also be separated by commas, just like how we did in the previous example. Here is the formula: =IF(AND(D6>=65,D12>=10),"Graduate","Repeat") If you were really observant, you noticed we used the equal to or greater than sign >= so if a student got exactly a grade of 65 or attended exactly 10 lessons, they will graduate. Excel Mastery Page 5

6 Nested IF Statement Have you seen the movie Inception? Where the characters have the ability to effect a dream while someone is already dreaming? It s a dream within a dream. That is the concept behind the Nested IF statement. It s an IF-THEN within another IF-THEN. Let s do an example. Example 5 shows the GPA of the student. If they pass, and if their GPA is 4.0, then the white box to the right should read Flying Colors. If they pass with any other GPA, then it should simply say Graduate. If they failed, then it should say Repeat. Start the formula like this: =IF(E6="Pass","Graduate","Repeat") We still need to test their GPA to determine if they passed with Flying Colors or not. So let s use a temporary cell. In E16, enter this formula: =IF(D14=4,"Flying Colors","Graduate") That formula will make sure the right words are displayed if the student passes. If they fail, it will still say "Graduate", and thatt is incorrect. So we will copy it and paste it into the original formula, replacing "Graduate". The finished product is this (in cell E14): =IF(E6="Pass",IF(D14=4,"Flying Colors","Graduate" "),"Repeat") The Nested IF! This is complex stuff, so don t be discouraged if you don t get it on the first try. Or the second try. Please me if you want more information on it: bobmaucher@gmail.com. Here s another way to see that formula Did they pass? Did they get 4.0? Flying Colors Graduate Repeat Excel Mastery Page 6

7 Statistics OK, take a deep breath. Nested IF statements are over with. It s smooth sailing from here on out. Click on the Statistics tab, and let s get started. MIN & MAX The MIN function finds the lowest value in a range of numbers that you define. The MAX function, well, yes, you probably already guessed that it finds the largest value in a range of numbers. Let s see them in practice. Example 1 asks for the minimum value in a range of cells (16 numbers) to the right. Enter this formula into cell D6: =MIN(F6:I12) and press Enter. The result is the lowest number out of the 16 values in the box at the right. The MAX function is almost the same. Just replace MIN with MAX, and use the same range. You now have the largest number in that range. AVERAGE & COUNTA This is just as easy as the last two functions. Cells with no values in them (blank cells) are not factored into the average. If, however, there is a value of 0 in the cell, then it will be counted in the overall average. So in D10, enter this formula: =AVERAGE(F6:I12) and press Enter. Then, in cell D12, enter this: =COUNTA(F6:I12) and press Enter. So you now have the average of all values in the range to the right, as well as the count. The count should be 16 and not change, as there are 16 numbers in that range. There is also a function called COUNT, which only counts numerical values. It won t make a difference here, but if you are trying to count cells which have text values included, only use COUNTA. RANK This function tells you in which place a given number falls. For example, if the data set is 1, 2, 4, 6, 8, 9, the number 6 has a RANK of 3, as it is the third highest number. In example 5, you re asked to find the RANK of the value in cell F14. The formula should look like this: =RANK(F14,F6:I12) Excel Mastery Page 7

8 Cool Math Tricks Finally, there are some miscellaneous great tools that I use regularly for fun and profit. To follow along, head to the Tricks tab in the workbook. And here they are. IFERROR Don t you hate it when a nice looking spreadsheet is ruined by #DIV/0 errors? And his cousins, #N/A and #REF! Well fret no more! IFERROR checks the equation first to see if it will result in an error. If it does, then it replaces it with any value that you set. If it doesn t have an error, then it proceeds to calculate as normal. In cell G6, type this: =IFERROR(C6/E6,0) That says to divide C6 by E6. And if it results in an error (like if E6 = 0), then replace the error with a 0. Neat! ABS Absolute values. Which means they re always positive. Negative numbers are turned into positive ones, with the same value. Replace the formula in cell G8 with this one: No more negatives! =ABS(C8-E8) ROUND The ROUND function will adjust a value according to the criteria you set in this formula. You can make it so that it rounds to the nearest integer, or the nearest tenth, hundredth, and so on. Round the formula in G10 to the nearest integer by using this formula: =ROUND(C10/E10,0) The 0 means we want no decimal places. If you had a 1 instead, it would round to the nearest tenth. RANDBETWEEN I used this function throughout the examples. It s a great way to come up with numbers when you want to randomize things. This will output a random integer, between two numbers that you set. Want a random value between 1 and 1,000? =RANDBETWEEN(1,1000) For example five, write a formula to produce a random number between any two numbers shown in cells C12 and E12. Excel Mastery Page 8

9 ROMAN This one is really cool. It converts any number to Roman numerals. The formula layout is =ROMAN(cell reference). Figure out the current year s Roman numeral representation by using this function in cell G14. The Step by Step Method In closing, I d like to go back to our Nested IF lesson, and revisit how we got to our solution. The process of calculating one part of a complex formula at a time is so important to developing advanced functions. I have engineered formulas that ran over three lines in the formula bar. But there s no way I, nor anyone else could come up with a formula like that on the fly. I created a little piece of formula in one cell, then another piece in the cell next to it. I continued until all pieces were calculating correctly. Only then would I piece them together in a single formula. Tips to mastering the Step by Step Method of Building Super Crazy Long Formulas: 1. Know your end goal when you start. If it s to total a bunch of different numbers, then know that. If it s to display a string of text, then keep that in mind as you craft the formula 2. Use hard-coded sample numbers to help get a picture of what the formula should do. 3. Write your formula in English logic IF the cost is less than $50,000 then check the location, and if it s in Charlotte, then assign a spreadsheet ninja. 4. Draw! Sometimes putting pen to paper helps visualize what you need to calculate next. 5. Be Patient. Sometimes these formulas take a while to build. If you find yourself getting stuck, then walk away and take a break. Come back later with a fresh set of eyes. I can t wait to see what you come up with! Excel Mastery Page 9

10 Reference Basic Math + - * / SUM add a range, separate ranges with commas Remember the order of operations P.E.M.D.A.S. When in doubt, use parentheses to ensure the correct order Logic IF cause / effect =IF(statement, do if true, do if false) NOT reverses the truth, you re looking to disprove OR any one of several conditions may be true, separate with commas AND all of several conditions must be true, separate with commas Nested IF Multiple decisions checked in one formula, build one at a time, then combine Statistics MIN smallest number in a range MAX largest number in a range AVERAGE average value of all numbers in a range COUNTA the number of values in a range (including text values) RANK the place of a number, from largest by default Cool Math Tricks IFERROR replaces error messages with any value you set ABS absolute values get rid of negative numbers ROUND round a decimal to the nearest integer (or tenth, hundredth,, ) RANDBETWEEN output a random integer between two values you set ROMAN convert a number to roman numerals The Step by Step Method Know your end goal Hard-code sample numbers Use English logic Draw it out Be Patient Excel Mastery Page 10

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel in Excel Although calculations are one of the main uses for spreadsheets, Excel can do most of the hard work for you by using a formula. When you enter a formula in to a spreadsheet

More information

Chapter 1 Operations With Numbers

Chapter 1 Operations With Numbers Chapter 1 Operations With Numbers Part I Negative Numbers You may already know what negative numbers are, but even if you don t, then you have probably seen them several times over the past few days. If

More information

MAT 003 Brian Killough s Instructor Notes Saint Leo University

MAT 003 Brian Killough s Instructor Notes Saint Leo University MAT 003 Brian Killough s Instructor Notes Saint Leo University Success in online courses requires self-motivation and discipline. It is anticipated that students will read the textbook and complete sample

More information

Summer Assignment Glossary

Summer Assignment Glossary Algebra 1.1 Summer Assignment Name: Date: Hour: Directions: Show all work for full credit using a pencil. Circle your final answer. This assignment is due the first day of school. Use the summer assignment

More information

Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 10.

Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 10. PA Ch 5 Rational Expressions Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 0. Since decimals are special

More information

CCBC Math 081 Order of Operations Section 1.7. Step 2: Exponents and Roots Simplify any numbers being raised to a power and any numbers under the

CCBC Math 081 Order of Operations Section 1.7. Step 2: Exponents and Roots Simplify any numbers being raised to a power and any numbers under the CCBC Math 081 Order of Operations 1.7 1.7 Order of Operations Now you know how to perform all the operations addition, subtraction, multiplication, division, exponents, and roots. But what if we have a

More information

The Order of Operations. Unit 1 Lesson 3

The Order of Operations. Unit 1 Lesson 3 Unit 1 Lesson 3 Students will be able to: Perform arithmetic operations, including those involving whole-number exponents, in the conventional order. Key Vocabulary: Parentheses, exponents, multiplication,

More information

Watkins Mill High School. Algebra 2. Math Challenge

Watkins Mill High School. Algebra 2. Math Challenge Watkins Mill High School Algebra 2 Math Challenge "This packet will help you prepare for Algebra 2 next fall. It will be collected the first week of school. It will count as a grade in the first marking

More information

Activity 1 Creating a simple gradebook

Activity 1 Creating a simple gradebook Activity 1 Creating a simple gradebook 1 Launch Excel to start a new spreadsheet a. Click on the Excel icon to start a new workbook, either from the start menu, Office Toolbar, or an Excel icon on the

More information

Objective- Students will be able to use the Order of Operations to evaluate algebraic expressions. Evaluating Algebraic Expressions

Objective- Students will be able to use the Order of Operations to evaluate algebraic expressions. Evaluating Algebraic Expressions Objective- Students will be able to use the Order of Operations to evaluate algebraic expressions. Evaluating Algebraic Expressions Variable is a letter or symbol that represents a number. Variable (algebraic)

More information

MAT 090 Brian Killough s Instructor Notes Strayer University

MAT 090 Brian Killough s Instructor Notes Strayer University MAT 090 Brian Killough s Instructor Notes Strayer University Success in online courses requires self-motivation and discipline. It is anticipated that students will read the textbook and complete sample

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

Converting Between Mixed Numbers & Improper Fractions

Converting Between Mixed Numbers & Improper Fractions 01 Converting Between Mixed Numbers & Improper Fractions A mixed number is a whole number and a fraction: 4 1 2 An improper fraction is a fraction with a larger numerator than denominator: 9 2 You can

More information

Course contents. Overview: Goodbye, calculator. Lesson 1: Get started. Lesson 2: Use cell references. Lesson 3: Simplify formulas by using functions

Course contents. Overview: Goodbye, calculator. Lesson 1: Get started. Lesson 2: Use cell references. Lesson 3: Simplify formulas by using functions Course contents Overview: Goodbye, calculator Lesson 1: Get started Lesson 2: Use cell references Lesson 3: Simplify formulas by using functions Overview: Goodbye, calculator Excel is great for working

More information

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley Excel 2010 Functions 4/18/2011 Archdiocese of Chicago Mike Riley i VIDEO TUTORIALS AVAILABLE Almost 100,000 video tutorials are available from VTC. The available tutorials include Windows 7, GroupWise

More information

SAMLab Tip Sheet #1 Translating Mathematical Formulas Into Excel s Language

SAMLab Tip Sheet #1 Translating Mathematical Formulas Into Excel s Language Translating Mathematical Formulas Into Excel s Language Introduction Microsoft Excel is a very powerful calculator; you can use it to compute a wide variety of mathematical expressions. Before exploring

More information

GENERAL MATH FOR PASSING

GENERAL MATH FOR PASSING GENERAL MATH FOR PASSING Your math and problem solving skills will be a key element in achieving a passing score on your exam. It will be necessary to brush up on your math and problem solving skills.

More information

Intermediate Excel 2013

Intermediate Excel 2013 Intermediate Excel 2013 Class Objective: Elmhurst Public Library is committed to offering enriching programs to help our patrons Explore, Learn, and Grow. Today, technology skills are more than a valuable

More information

Microsoft Excel Functions & Shortcuts for Beginners

Microsoft Excel Functions & Shortcuts for Beginners Microsoft Excel Functions & Shortcuts for Beginners KISS ~ Keep It Simple Stupid! Parts of a Formula 1.Functions 2.References 3.Constants 4.Operators Formula Example ~ Single Argument =SUM(A1:A10) is

More information

Fraction to Percents Change the fraction to a decimal (see above) and then change the decimal to a percent (see above).

Fraction to Percents Change the fraction to a decimal (see above) and then change the decimal to a percent (see above). PEMDAS This is an acronym for the order of operations. Order of operations is the order in which you complete problems with more than one operation. o P parenthesis o E exponents o M multiplication OR

More information

Math 171 Proficiency Packet on Integers

Math 171 Proficiency Packet on Integers Math 171 Proficiency Packet on Integers Section 1: Integers For many of man's purposes the set of whole numbers W = { 0, 1, 2, } is inadequate. It became necessary to invent negative numbers and extend

More information

Integers and Rational Numbers

Integers and Rational Numbers A A Family Letter: Integers Dear Family, The student will be learning about integers and how these numbers relate to the coordinate plane. The set of integers includes the set of whole numbers (0, 1,,,...)

More information

=AVERAGE(Al:A10) gives the average of all the numbers in the cells from Al to A10 inclusive.

=AVERAGE(Al:A10) gives the average of all the numbers in the cells from Al to A10 inclusive. What is a function? A function is simply a specialised calculation that Excel has memorised. There are many functions (around 200) built into Excel and they can do lots of different things. In this chapter

More information

Excel: Tables, Pivot Tables & More

Excel: Tables, Pivot Tables & More Excel: Tables, Pivot Tables & More February 7, 2019 Sheldon Dueck, MCT dueck21@gmail.com http://bit.ly/pivottables_fmi (Booklet) 1 Contents Tables... 3 Different ways of creating pivot tables... 4 Compact,

More information

Intro. Scheme Basics. scm> 5 5. scm>

Intro. Scheme Basics. scm> 5 5. scm> Intro Let s take some time to talk about LISP. It stands for LISt Processing a way of coding using only lists! It sounds pretty radical, and it is. There are lots of cool things to know about LISP; if

More information

HOW TO DIVIDE: MCC6.NS.2 Fluently divide multi-digit numbers using the standard algorithm. WORD DEFINITION IN YOUR WORDS EXAMPLE

HOW TO DIVIDE: MCC6.NS.2 Fluently divide multi-digit numbers using the standard algorithm. WORD DEFINITION IN YOUR WORDS EXAMPLE MCC6.NS. Fluently divide multi-digit numbers using the standard algorithm. WORD DEFINITION IN YOUR WORDS EXAMPLE Dividend A number that is divided by another number. Divisor A number by which another number

More information

Excel Basics: Working with Spreadsheets

Excel Basics: Working with Spreadsheets Excel Basics: Working with Spreadsheets E 890 / 1 Unravel the Mysteries of Cells, Rows, Ranges, Formulas and More Spreadsheets are all about numbers: they help us keep track of figures and make calculations.

More information

Excel Lesson 3 USING FORMULAS & FUNCTIONS

Excel Lesson 3 USING FORMULAS & FUNCTIONS Excel Lesson 3 USING FORMULAS & FUNCTIONS 1 OBJECTIVES Enter formulas in a worksheet Understand cell references Copy formulas Use functions Review and edit formulas 2 INTRODUCTION The value of a spreadsheet

More information

Chapter 3 Analyzing Normal Quantitative Data

Chapter 3 Analyzing Normal Quantitative Data Chapter 3 Analyzing Normal Quantitative Data Introduction: In chapters 1 and 2, we focused on analyzing categorical data and exploring relationships between categorical data sets. We will now be doing

More information

QUICK EXCEL TUTORIAL. The Very Basics

QUICK EXCEL TUTORIAL. The Very Basics QUICK EXCEL TUTORIAL The Very Basics You Are Here. Titles & Column Headers Merging Cells Text Alignment When we work on spread sheets we often need to have a title and/or header clearly visible. Merge

More information

Text Input and Conditionals

Text Input and Conditionals Text Input and Conditionals Text Input Many programs allow the user to enter information, like a username and password. Python makes taking input from the user seamless with a single line of code: input()

More information

Section 1.1 Definitions and Properties

Section 1.1 Definitions and Properties Section 1.1 Definitions and Properties Objectives In this section, you will learn to: To successfully complete this section, you need to understand: Abbreviate repeated addition using Exponents and Square

More information

Excel Functions INTRODUCTION COUNT AND COUNTIF FUNCTIONS

Excel Functions INTRODUCTION COUNT AND COUNTIF FUNCTIONS INTRODUCTION Excel Functions Excel provides a large number of built-in functions that can be used to perform specific calculations or to return information about your spreadsheet data. These functions

More information

Iron County Schools. Yes! Less than 90 No! 90 No! More than 90. angle: an angle is made where two straight lines cross or meet each other at a point.

Iron County Schools. Yes! Less than 90 No! 90 No! More than 90. angle: an angle is made where two straight lines cross or meet each other at a point. Iron County Schools 1 acute angle: any angle that is less than 90. Yes! Less than 90 No! 90 No! More than 90 acute triangle: a triangle where all the angles are less than 90 angle: an angle is made where

More information

(Refer Slide Time: 02.06)

(Refer Slide Time: 02.06) Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi Lecture 27 Depth First Search (DFS) Today we are going to be talking

More information

EDIT202 Spreadsheet Lab Prep Sheet

EDIT202 Spreadsheet Lab Prep Sheet EDIT202 Spreadsheet Lab Prep Sheet While it is clear to see how a spreadsheet may be used in a classroom to aid a teacher in marking (as your lab will clearly indicate), it should be noted that spreadsheets

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Solving Equations with Inverse Operations

Solving Equations with Inverse Operations Solving Equations with Inverse Operations Math 97 Supplement LEARNING OBJECTIVES 1. Solve equations by using inverse operations, including squares, square roots, cubes, and cube roots. The Definition of

More information

Data Service Center December

Data Service Center December www.dataservice.org Data Service Center December 2005 504-7222 Property of the Data Service Center, Wilmington, DE For Use Within the Colonial & Red Clay Consolidated Public School Districts Only Table

More information

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields.

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. In This Chapter Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. Adding help text to any field to assist users as they fill

More information

Grade Point Scales Standard Honors AP/College A B C D F Sample file

Grade Point Scales Standard Honors AP/College A B C D F Sample file 64 Transcripts Weighted Cumulative GPA When your student works extra hard and takes honors or college courses, they deserve a little credit. The best way to reflect this is through their GPA. They deserve

More information

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet. Mr G s Java Jive #2: Yo! Our First Program With this handout you ll write your first program, which we ll call Yo. Programs, Classes, and Objects, Oh My! People regularly refer to Java as a language that

More information

Change. Start. Result

Change. Start. Result Change Start Result Part Part Whole Thirteen Rules that Expire 1. When you multiply a number by 10 just add a zero to the end of the number. 2. Use keywords to solve word problems. 3. You can t take a

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

DECIMALS are special fractions whose denominators are powers of 10.

DECIMALS are special fractions whose denominators are powers of 10. Ch 3 DECIMALS ~ Notes DECIMALS are special fractions whose denominators are powers of 10. Since decimals are special fractions, then all the rules we have already learned for fractions should work for

More information

Ce qui est important dans l'enseignement des mathématiques. Marian Small novembre 2017

Ce qui est important dans l'enseignement des mathématiques. Marian Small novembre 2017 Ce qui est important dans l'enseignement des mathématiques Marian Small novembre 2017 Playing with math Uae your linking cubes. Show that the mean of 4, 7 and 7 is 6. Playing with math Uae your linking

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

VLOOKUP() takes three mandatory parameters and one default/optional parameter:

VLOOKUP() takes three mandatory parameters and one default/optional parameter: Excel Lesson: Table Lookup Functions Topics Covered: VLookup() [Look across] HLookup() [Look down] Lookup() [Look almost anywhere] Related Functions (a list) We will not be examining all forms of these

More information

Beginning and Intermediate Algebra Chapter 0: Arithmetic

Beginning and Intermediate Algebra Chapter 0: Arithmetic Beginning and Intermediate Algebra Chapter 0: Arithmetic An open source (CC-BY) textbook by Tyler Wallace 1 ? Beginning and Intermediate Algebra by Tyler Wallace is licensed under a Creative Commons Attribution

More information

Microsoft Office Excel 2010 Extra

Microsoft Office Excel 2010 Extra Microsoft Office Excel 2010 Extra Excel Formulas İçindekiler Microsoft Office... 1 A.Introduction... 3 1.About This Tutorial... 3 About this tutorial... 3 B.Formula and Function Basics... 4 2.Simple Formulas...

More information

SPRITES Moving Two At the Same Using Game State

SPRITES Moving Two At the Same Using Game State If you recall our collision detection lesson, you ll likely remember that you couldn t move both sprites at the same time unless you hit a movement key for each at exactly the same time. Why was that?

More information

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40 Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 File Tab... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 9 Downloading Templates... 9 Using

More information

SECTION 3. ROUNDING, ESTIMATING, AND USING A CALCULATOR

SECTION 3. ROUNDING, ESTIMATING, AND USING A CALCULATOR SECTION 3. ROUNDING, ESTIMATING, AND USING A CALCULATOR Exact numbers are not always necessary or desirable. Sometimes it may be necessary to express the number which is a result of a calculation to a

More information

MA 1128: Lecture 02 1/22/2018

MA 1128: Lecture 02 1/22/2018 MA 1128: Lecture 02 1/22/2018 Exponents Scientific Notation 1 Exponents Exponents are used to indicate how many copies of a number are to be multiplied together. For example, I like to deal with the signs

More information

Section 0.3 The Order of Operations

Section 0.3 The Order of Operations Section 0.3 The Contents: Evaluating an Expression Grouping Symbols OPERATIONS The Distributive Property Answers Focus Exercises Let s be reminded of those operations seen thus far in the course: Operation

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX394 EX407 Data Validation Pages EX410 EX419 VLOOKUP Pages EX176 EX179 EX489 EX500 IF Pages EX172 EX176 EX466 EX489

More information

Intro to Programming. Unit 7. What is Programming? What is Programming? Intro to Programming

Intro to Programming. Unit 7. What is Programming? What is Programming? Intro to Programming Intro to Programming Unit 7 Intro to Programming 1 What is Programming? 1. Programming Languages 2. Markup vs. Programming 1. Introduction 2. Print Statement 3. Strings 4. Types and Values 5. Math Externals

More information

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns.

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns. Table of contents 1. Excel in English 2. Important information 3. LAYOUT 4. Format Painter 5. Format Painter 6. Fix columns 7. Fix columns 8. Create a grid 9. Create a grid 10. Create a numeric sequence

More information

Is the statement sufficient? If both x and y are odd, is xy odd? 1) xy 2 < 0. Odds & Evens. Positives & Negatives. Answer: Yes, xy is odd

Is the statement sufficient? If both x and y are odd, is xy odd? 1) xy 2 < 0. Odds & Evens. Positives & Negatives. Answer: Yes, xy is odd Is the statement sufficient? If both x and y are odd, is xy odd? Is x < 0? 1) xy 2 < 0 Positives & Negatives Answer: Yes, xy is odd Odd numbers can be represented as 2m + 1 or 2n + 1, where m and n are

More information

Programming with Python

Programming with Python Programming with Python Dr Ben Dudson Department of Physics, University of York 21st January 2011 http://www-users.york.ac.uk/ bd512/teaching.shtml Dr Ben Dudson Introduction to Programming - Lecture 2

More information

Excel Formulas and Functions

Excel Formulas and Functions Excel Formulas and Functions Formulas Relative cell references Absolute cell references Mixed cell references Naming a cell or range Naming constants Dates and times Natural-language formulas Functions

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

Adding and Subtracting Integers

Adding and Subtracting Integers Quarterly 1 Review Sheet (NOTE: This may not include everything you need to know for tomorrow about every topic. It is student created and I am just sharing it in case you find it helpful) Page 1: Adding

More information

Four Numbers Functions Everyone Should Master

Four Numbers Functions Everyone Should Master Four Numbers Functions Everyone Should Master It s become known among my friends that I know quite about Numbers and spreadsheets. And as you can imagine I get asked a lot for help on projects for work,

More information

Mark Important Points in Margin. Significant Figures. Determine which digits in a number are significant.

Mark Important Points in Margin. Significant Figures. Determine which digits in a number are significant. Knowledge/Understanding: How and why measurements are rounded. Date: How rounding and significant figures relate to precision and uncertainty. When significant figures do not apply. Skills: Determine which

More information

Rev Name Date. . Round-off error is the answer to the question How wrong is the rounded answer?

Rev Name Date. . Round-off error is the answer to the question How wrong is the rounded answer? Name Date TI-84+ GC 7 Avoiding Round-off Error in Multiple Calculations Objectives: Recall the meaning of exact and approximate Observe round-off error and learn to avoid it Perform calculations using

More information

Parentheses ( ) Math Review. The Order of Operations tells us how to do a math problem with more than one operation, in the correct order.

Parentheses ( ) Math Review. The Order of Operations tells us how to do a math problem with more than one operation, in the correct order. Problem Solving in Chemistry Math Review We are faced with problems each day, and not just in chemistry A solution (answer) needs to be found Trial and Error may work sometimes but, there is a method to

More information

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

Advanced Microsoft Excel 2010

Advanced Microsoft Excel 2010 Agenda: 1. Introduction 2. Complex formulas & cell references 3. Functions 4. Charts 5. Pivot Tables 6. Practice and Questions In order to keep computer literacy programs running in the future, we must

More information

Variables and Data Representation

Variables and Data Representation You will recall that a computer program is a set of instructions that tell a computer how to transform a given set of input into a specific output. Any program, procedural, event driven or object oriented

More information

Lesson 6: Manipulating Equations

Lesson 6: Manipulating Equations Lesson 6: Manipulating Equations Manipulating equations is probably one of the most important skills to master in a high school physics course. Although it is based on familiar (and fairly simple) math

More information

June 10, Dear Students and Parents,

June 10, Dear Students and Parents, June 10, 2015 Dear Students and Parents, Hello and welcome from the Beaumont Math Department! My name is Mr. Hass-Hill and will I teach all of Beaumont s College Prep Algebra I and Honors Algebra I courses

More information

Chapter 0, Pre-Algebra from Beginning and Intermediate Algebra by Tyler Wallace is available under a Creative Commons Attribution 3.

Chapter 0, Pre-Algebra from Beginning and Intermediate Algebra by Tyler Wallace is available under a Creative Commons Attribution 3. Chapter 0, Pre-Algebra from Beginning and Intermediate Algebra by Tyler Wallace is available under a Creative Commons Attribution 3.0 Unported license. 2010. 0.1 Pre-Algebra - Integers Objective: Add,

More information

Welcome to 5 th Grade Math Review Properties of Operations

Welcome to 5 th Grade Math Review Properties of Operations Welcome to 5 th Grade Math Review Properties of Operations What do you notice in this chart? Are there any patterns? Powers of Ten Strategy Time Interactive Math Journal Today s Lesson: Review of Properties

More information

Create your first workbook

Create your first workbook Create your first workbook You've been asked to enter data in Excel, but you've never worked with Excel. Where do you begin? Or perhaps you have worked in Excel a time or two, but you still wonder how

More information

Algebra (Linear Expressions & Equations)

Algebra (Linear Expressions & Equations) ACT Mathematics Fundamentals 1 with facts, examples, problems, and solutions Algebra (Linear Expressions & Equations) One might say that the two main goals of algebra are to 1) model real world situations

More information

2.Simplification & Approximation

2.Simplification & Approximation 2.Simplification & Approximation As we all know that simplification is most widely asked topic in almost every banking exam. So let us try to understand what is actually meant by word Simplification. Simplification

More information

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents Section Topic Sub-topic Pages Section 2 Spreadsheets Layout and Design S2: 2 3 Formulae

More information

WHOLE NUMBER AND DECIMAL OPERATIONS

WHOLE NUMBER AND DECIMAL OPERATIONS WHOLE NUMBER AND DECIMAL OPERATIONS Whole Number Place Value : 5,854,902 = Ten thousands thousands millions Hundred thousands Ten thousands Adding & Subtracting Decimals : Line up the decimals vertically.

More information

!"!!!"!!"!! = 10!!!!!(!!) = 10! = 1,000,000

!!!!!!!! = 10!!!!!(!!) = 10! = 1,000,000 Math Review for AP Chemistry The following is a brief review of some of the math you should remember from your past. This is meant to jog your memory and not to teach you something new. If you find you

More information

For more information, see the Math Notes box in Lesson of the Core Connections, Course 1 text.

For more information, see the Math Notes box in Lesson of the Core Connections, Course 1 text. Number TYPES OF NUMBERS When two or more integers are multiplied together, each number is a factor of the product. Nonnegative integers that have eactly two factors, namely, one and itself, are called

More information

Example: Which of the following expressions must be an even integer if x is an integer? a. x + 5

Example: Which of the following expressions must be an even integer if x is an integer? a. x + 5 8th Grade Honors Basic Operations Part 1 1 NUMBER DEFINITIONS UNDEFINED On the ACT, when something is divided by zero, it is considered undefined. For example, the expression a bc is undefined if either

More information

Decisions, Decisions. Testing, testing C H A P T E R 7

Decisions, Decisions. Testing, testing C H A P T E R 7 C H A P T E R 7 In the first few chapters, we saw some of the basic building blocks of a program. We can now make a program with input, processing, and output. We can even make our input and output a little

More information

using cells to create dynamic formulas

using cells to create dynamic formulas excel formulas A forumla is nothing more than an equation that you write up. In Excel a typical formula might contain cells, constants, and even functions. Here is an example Excel formula that we have

More information

EXCEL TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

More information

4 + 4 = = 1 5 x 2 = 10

4 + 4 = = 1 5 x 2 = 10 Beginning Multiplication Ask your child... "Have you ever seen a multiplication problem?" Explain: "Instead of a plus ( + ) sign or a minus ( - ) sign a multiplication sign ( x ) is used." Have child to

More information

C++ Reference NYU Digital Electronics Lab Fall 2016

C++ Reference NYU Digital Electronics Lab Fall 2016 C++ Reference NYU Digital Electronics Lab Fall 2016 Updated on August 24, 2016 This document outlines important information about the C++ programming language as it relates to NYU s Digital Electronics

More information

Excel Shortcuts Increasing YOUR Productivity

Excel Shortcuts Increasing YOUR Productivity Excel Shortcuts Increasing YOUR Productivity CompuHELP Division of Tommy Harrington Enterprises, Inc. tommy@tommyharrington.com https://www.facebook.com/tommyharringtonextremeexcel Excel Shortcuts Increasing

More information

Skill 1: Multiplying Polynomials

Skill 1: Multiplying Polynomials CS103 Spring 2018 Mathematical Prerequisites Although CS103 is primarily a math class, this course does not require any higher math as a prerequisite. The most advanced level of mathematics you'll need

More information

Basic Math in Microsoft Excel

Basic Math in Microsoft Excel Chapter 1 Basic Math in Microsoft Excel In this chapter, we will learn the following to World Class standards: The Excel Layout The Ribbon in Excel Adding in Excel Subtracting in Excel Multiplying in Excel

More information

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING EXCEL + POWERPOINT Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING KEYBOARD SHORTCUTS NAVIGATION & SELECTION SHORTCUTS 3 EDITING SHORTCUTS 3 SUMMARIES PIVOT TABLES

More information

esay Solutions Ltd Using Formulae

esay Solutions Ltd Using Formulae esay Solutions Ltd Using Formulae Contents 1. Basics... 3 Example... 3 2. Form Items and Values... 4 Numbers... 4 Text... 4 Logical... 5 Using Form Items... 5 3. Computing... 7 Operators... 7 Comparing...

More information

Making movie magic by Gary Boyle

Making movie magic by Gary Boyle Bangkok Post Learning: Test Yourself Test Yourself is where you can improve your reading skills. Whether it s for tests like University Entrance Exams or IELTS and TOEFL, or even just for fun, these pages

More information

George Hartas, MS. Educational Assistant for Mathematics Remediation. MAT 025 Instructor. Table of Contents

George Hartas, MS. Educational Assistant for Mathematics Remediation. MAT 025 Instructor. Table of Contents Last Updated: 6/14/18 SIGNED NUMBERS WORKBOOK By George Hartas, MS Educational Assistant for Mathematics Remediation MAT 025 Instructor Table of Contents Page Introduction 2 Anatomy of a Signed Number

More information

Tips & Tricks: MS Excel

Tips & Tricks: MS Excel Tips & Tricks: MS Excel 080501.2319 Table of Contents Navigation and References... 3 Layout... 3 Working with Numbers... 5 Power Features... 7 From ACS to Excel and Back... 8 Teacher Notes: Test examples

More information

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection Excel Tips for Compensation Practitioners Weeks 29-38 Data Validation and Protection Week 29 Data Validation and Protection One of the essential roles we need to perform as compensation practitioners is

More information

Pre-Algebra Notes Unit Five: Rational Numbers and Equations

Pre-Algebra Notes Unit Five: Rational Numbers and Equations Pre-Algebra Notes Unit Five: Rational Numbers and Equations Rational Numbers Rational numbers are numbers that can be written as a quotient of two integers. Since decimals are special fractions, all the

More information

Key concepts through Excel Basic videos 01 to 25

Key concepts through Excel Basic videos 01 to 25 Key concepts through Excel Basic videos 01 to 25 1) Row and Colum make up Cell 2) All Cells = Worksheet = Sheet 3) Name of Sheet is in Sheet Tab 4) All Worksheets = Workbook File 5) Default Alignment In

More information