Spreadsheet Review.

Slides:



Advertisements
Similar presentations
If Function Determine action based on condition. Examples Simple condition: –If total sales exceeds $300 then applies 5% discount; otherwise, no discount.
Advertisements

Lesson 3 Working with Formulas.
MS-Excel XP Lesson 5. Exponentiation 1.A1  2 A2  3 A3  =A1^A2 B1  =2^4 2.^ for exponentiation.
MS-Excel XP Lesson 2. Handling Worksheets 1.Bottom of the every workbook you can get worksheets. 2.No of sheets for a book is three. But you can add,
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
Pasewark & Pasewark 1 Excel Lesson 5 Using Functions Microsoft Office 2007: Introductory.
Basic Spreadsheet Skills Review ISYS 363. Expression.
Copyright 2003, Paradigm Publishing Inc. CHAPTER 3 BACKNEXTEND 3-1 LINKS TO OBJECTIVES AutoSum Button Mathematical Operators Mathematical Operators Formula.
Nested IF and Complex Condition. Nested IF Example: –Rules to determine bonus: JobCode = 1, Bonus=500 JobCode = 2, Bonus = 700 JobCode = 3, Bonus = 1000.
IF Function Decision: Action based on condition. Examples SF State Tuition calculation: –
Cell Reference. Demo Copy Formula Drag the source cell Copy/Paste.
Studying with Technology Excel Formulas and Functions By Ian Cole Lecturer in Information & Communication Technology.
Excel Functions By Hani Almohair Microsoft Office 2003.
Academic Computing Services 2007 Microsoft Word 2003 Excel Formulas and Functions Presenter: Jolanta Soltis MCSE, MCT, A+ This Guide will teach you how.
Spreadsheets Objective 6.02
Last Week: Excel 101 with Prof. Bliley: Workbooks, worksheets, rows, columns Cells: Text, Value, Formulas Formulas, Ranges OK? Survive Alive? Questions?
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
Chapter 5 Basic Functions Copyright 2005 Radian Publishing Co.
DAY 5: MICROSOFT EXCEL – CHAPTER 2 Aliya Farheen January 27,2015.
Excel Functions Abby Wiertzema
Copyright © 2014 Pearson Education, Inc. Publishing as Prentice Hall. 1 by Mary Anne Poatsy, Keith Mulbery, Lynn Hogan, Amy Rutledge, Cyndi Krebs, Eric.
Chapter 11 Creating Formulas that Count and Sum Microsoft Excel 2003.
Powerpoint Templates Page 1 Powerpoint Templates MS Excel Functions.
Decision Structure - 1 ISYS 350. Decision: Action based on condition Examples Simple condition: – If total sales exceeds $300 then applies 5% discount;
Unit 4, Lesson 4 Using Function Formulas. Objectives Understand function formulas. Understand function formulas. Use the Average and Sum functions. Use.
Functions. Types of Functions Built-in functions: –Financial –Date & time –Math & statistical –Database –Lookup –Logical –Information:IsBlank, IsNumber,
Data Analysis: Spreadsheets ICT iGCSE. 14.1: Creating a data model.
Basic Spreadsheet Skills Review BUS 782. Expression.
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
Decisions Action based on condition. Examples Simple condition: –If total sales exceeds $300 then applies 5% discount; otherwise, no discount. More than.
FUNCTIONS FUNCTIONS are : Special formulas that do not use operators to calculate a result (i.e., a shortcut formula) Example: =SUM(A6:A9) SUM is the.
More Spreadsheets Range Formulas & Empty Cells Logical Functions Lookup Functions.
XP 1 ﴀ New Perspectives on Microsoft Office 2003, Premium Edition Excel Tutorial 2 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
Decision Structure - 1 ISYS 350. Decision: Action based on condition Examples Simple condition: – If total sales exceeds $300 then applies 5% discount;
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
Functions BUS 782. What are functions? Functions are prewritten formulas. We use functions to perform calculations. Enclose arguments within parentheses.
DAY 5: EXCEL CHAPTER 2 Sravanthi Lakkimsetty Feb 1, 2016.
FUNCTIONS The parts of a function In order to work correctly, a function must be written a specific way, which is called the syntax. The basic syntax for.
CTS130 Spreadsheet Lesson 6 Working with Math & Trig, Statistical, and Date & Time Functions.
IF Function Decision: Action based on condition. Examples SF State Tuition calculation: –
Open Office Calc Session 03 Math and Text Functions.
Lesson 3: Using Formulas
Relative, Absolute, & Mixed References
Exploring Microsoft Office Excel 2007
Exploring Microsoft Office Excel 2007
Excel Lesson 5 Using Functions
Decision Structure ISYS 350.
Decision Structure - 1 ISYS 350.
Understanding Spreadsheets
Exploring Microsoft Office Excel 2007
Microsoft Word 2003 Excel Formulas and Functions
Decision Structure - 1 ISYS 350.
Work with Data and Decision Structure
Making Logical Decisions (IF-THEN-ELSE)
Decision Structures ISYS 350.
4.01 Spreadsheet Formulas & Functions
Microsoft Excel Excel Formulas and Functions
exploring Microsoft Office 2013 Plus
Excel Functions By Hani Almohair
4.01 Spreadsheet Formulas & Functions
Decision Structure - 1 ISYS 350.
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Lesson 4: Introduction to Functions
Decision: Action based on condition
Functions BUS 782.
Decision Structure - 1 ISYS 350.
Spreadsheets Objective 6.02
Spreadsheets Objective 6.02
Basic Spreadsheet Skills Review
in Excel Instructor: Zhe He Department of Computer Science
Presentation transcript:

Spreadsheet Review

Functions

Types of Functions Built-in functions: User-defined functions Financial Date & time Math & statistical Database Lookup Logical Information: IsBlank, IsNumber, IsText Text Etc. User-defined functions

Numeric functions Int(x): returns the greatest integer less than or equal to X. Int(2.3) = 2 Int(5.6) = 5 Mod(Number, Divisor): returns the remainder after a number is divided by a divisor). Mod(6,4)=2 Mod(65,10)=5

Examples of Using Int and Mod Function Remainder function: MOD(Dividend, Divisor)

Practice:Return the Smallest Number of Coins Examples: 26 cents: 1 Q, 1 P 57 cents: 2 Q, 1 N, 2 P 63 cents: 2 Q, 1 D, 3 P

Statistical Functions Sum, Average, Max, Min, Count Ignore text and logical values. SumA, AverageA, MaxA, MinA, CountA Does not ignore text and logical values: Text -> 0 True -> 1 False -> 0 Can have many arguments: =SUM(A1:A3, 12, B3:B7)

Compute each student’s: Best score, Lowest score, exam average Average of the best 3 scores Average of the best 2 scores

Practice:Average Excluding the Highest and the lowest Scores

Text Functions Lower(text): Lower(“David”) -> “david” Upper(text): Upper(“David”) -> “DAVID” Right(text, #ofCHars) Right(“David”, 4) -> ”avid” Left(text, #ofChars) Left(“David”, 2) -> “Da” Len(text) -> the number of characters in a text. Len(“David”) -> 5

The first letter in uppercase and all other letters in lowercase

The first letter in each word in uppercase and other in lower case Full name format: First Name + Space + Last Name

Proper B1: DAVID CHAO =Proper(B1)

Cell Reference

Demo

Copy Formula Drag the source cell Copy/Paste Edit/Fill

Cell Reference Relative cell reference: After copy, the formula will reference cells with the same relative position as the original formula. Example: Value in cell E6: C6*D6 Absolute Cell Reference: After copy, the formula still references the same cell as the original formula. Tax in cell F6: E6*$C$3

Mixed Cell Reference $ColumnRow: $A1 Column$Row: A$1 Examples: =$A1

Cases Where Mixed Cell Reference are Optional

Case that Must Use Mixed Cell Reference

Decision: Action based on condition IF Function Decision: Action based on condition

Examples Simple condition: More than one condition: If total sales exceeds $300 then applies 5% discount; otherwise, no discount. More than one condition: Taxable Income < =3000 no tax 3000 < taxable income <= 10000 5% tax Taxable income > 10000 15% tax

Comparison Less than: < Less than or equal: <= Greater than: > Greater than or equal: >= Equal: = Not equal: <> At least: >= At most: <= No more than: <= No less than: >= A comparison returns True/False.

IF Function =IF(condition, ValueIfTrue,ValueIfFalse) Example: Tuition: If total units <= 12, then tuition = 1200 Otherwise, tuition = 1200 + 200 per additional unit In Cell C2: IF(B2<=12, 1200, 1200+200*(b2-12))

Example: Compute weekly wage Example: Compute weekly wage. Overtime hours are paid 50% more than the regular pay. In Cell D2: If(C2<=40, B2*C2, B2*40 + 1.5*B2*(C2-40))

Example: Tax rate is based on married status: Single: 15% Married: 10% In D5: If(B5=“S”,$C$1*C5, $C$2*C5)

Nested IF Example: Rules to determine bonus: JobCode = 1, Bonus=500 JobCode = 2, Bonus = 700 JobCode = 3, Bonus = 1000 In C2: If(B2=1, 500, If(B2=2, 700, 1000))

Example Electric Company charges customers based on KiloWatt-Hour used. The rules are: First 100 KH, 20 cents per KH Each of the next 200 KH (up to 300 KH), 15 cents per KH All KH over 300, 10 cents per KH In C2: If(B2<=100, .2*B2,If(B2<=300,.2*100+.15*(B2-100),.2*100+.15*200+.1*(B2-300))