Topic 3: Conditional Logic

Slides:



Advertisements
Similar presentations
CIS100 Test Review Dale McIntosh © 2009 Dale McIntosh. All Rights Reserved.Fall 2009.
Advertisements

MS EXCEL is a spreadsheet application Excel covers: Calculation Graphic tools Pivot tables Macro programming language called VBA EXCEL is a part of MS.
CIS100 Test 2 Review REACH CRC © 2011 REACH CRC. All Rights Reserved.Spring 2011.
About Functions SUM, AVERAGE, MIN, MAX, COUNT, ROUND
© Paradigm Publishing, Inc Excel 2013 Level 2 Unit 1Advanced Formatting, Formulas, and Data Management Chapter 2Advanced Functions and Formulas.
REACH CRC © 2011 REACH CRC. All Rights Reserved.Fall 2011.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Introduction to Excel Formulas, Functions and References.
CS1100: Computer Science and Its Applications Excel Basics Modified from originals created by Martin Schedlbauer, Peter Douglass and Peter Golbus.
Tutorial 7: Using Advanced Functions and Conditional Formatting
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
Learn how to figure out dates using formulas in Excel What dates mean to Excel There’s a difference between what dates mean to you and what they mean to.
Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 2 BACKNEXTEND 2-1 LINKS TO OBJECTIVES Mathematical OperatorsMathematical Operators Formula.
Excel 2010 Formulas and Functions One of Excel's most useful features is that it allows users to create custom formulas to perform calculations on their.
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
Pasewark & Pasewark Microsoft Office 2003: Introductory 1 INTRODUCTORY MICROSOFT EXCEL Lesson 5 – Function Formulas.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Syntax MROUND(number,multiple) Number is the value to round. Multiple is the multiple to which you want to round number. Remark MROUND rounds up, away.
LOGO Chapter VI Advanced Functions 1. LOGO Overview  INTRODUCTION  NESTED FUNCTIONS  LOOKUP  VLOOKUP  COUNTIF  SUMIF  IF  ROUND  THE PMT, IPMT.
Chapter 10 Working with Dates & Times Microsoft Excel 2003.
Excel has a number of Count Functions that will total the number of cells in a selected range. We’re going to look at: COUNT COUNTA COUNTBLANK COUNTIF.
DAY 5: MICROSOFT EXCEL – CHAPTER 2 Aliya Farheen January 27,2015.
Revision Function in Spreadsheet. AVERAGE Returns the average (arithmetic mean) of the arguments. Syntax AVERAGE(number1,number2,...) Number1, number2,...
Lesson 5 Using FunctionUsing Function. Objectives.
Sundara Ram Matta Jan 28 th, Sundara Ram Matta Jan 28 th, 2014
CIS100 Test Review REACH Computer Resource Center © 2011 REACH-CRC. All Rights Reserved.REACH.
Unit 4, Lesson 4 Using Function Formulas. Objectives Understand function formulas. Understand function formulas. Use the Average and Sum functions. Use.
CIS100 Test Review REACH- CRC © 2011 REACH-CRC. All Rights Reserved.Spring 2011.
CIS100 Test 1 Review REACH Computer Resource Center.
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
1 Excel Lesson 3 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
Excel Review By Mr. Griffin Elmira Business Institute.
CIS300 Test Review REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
DAY 5: EXCEL CHAPTER 2 Sravanthi Lakkimsetty Feb 1, 2016.
REACH- CRC © 2011 REACH-CRC. All Rights Reserved.Fall 2011 © 2011 REACH-CRC. All Rights Reserved.
CTS130 Spreadsheet Lesson 6 Working with Math & Trig, Statistical, and Date & Time Functions.
BUSINESS MATHEMATICS & STATISTICS. LECTURE 4 Review Lecture 3 Calculating simple or weighted averages Using Microsoft Excel.
CIS 300- Professor McIntosh Test #3. MICROSOFT ® EXCEL ® MATHEMATICAL FUNCTIONS Syntax: =ROUND(number, num_digits) Arguments: number Required  The number.
Lesson 3: Using Formulas
MSAA PRESENTS: AN EXCEL TUTORIAL
Microsoft Excel.
Excel AVERAGEIF Function
Working with Functions
Using Advanced Functions and Conditional Formatting
Exploring Microsoft Office Excel 2007
Exploring Microsoft Office Excel 2007
Excel STDEV.S Function.
Excel Functions.
CIS300 Test Review REACH - CRC Fall 2010
Microsoft EXCEL Basics
Microsoft Official Academic Course, Microsoft Excel Core 2016
Excel Tutorial 3 Calculating Data with Formulas and Functions
Analyzing Data Using Formulas
Formulas and Functions
Exploring Microsoft Office Excel 2007
Working with Formulas and Functions
4.01 Spreadsheet Formulas & Functions
Excel Functions.
4.01 Spreadsheet Formulas & Functions
Excel Functions.
REACH CRC Professor Manni
Topic 3 Lesson 2 – Flexible Models
Microsoft Excel chapters 1 & 2
Working with Formulas and Functions
Introduction to Spreadsheet Terminology
Lessons 3: Coffee Shop Inventory
Mathematical Formulas and Excel
REACH Computer Resource Center
Microsoft Official Academic Course, Microsoft Excel Core 2016
Presentation transcript:

Topic 3: Conditional Logic Lesson 3 - Miscellaneous Functions

The AVERAGE Function The AVERAGE function calculates the average (arithmetic mean) of the arguments. AVERAGE(number1, [number2], ...) The AVERAGE function syntax has the following arguments: Number1 Required. The first number, cell reference, or range for which you want the average. Number2, ... Optional. Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255.

Example: AVERAGE and AVERAGEA =AVERAGE(B2:B8) =AVERAGE(B3:F5)

Other Averaging Functions AVERAGE -- omits non-numeric values in the calculation AVERAGEA -- uses 0 for any cell that contains text AVERAGEIF -- only averages cells that meet the criterion

Dealing with Missing Data Values AVERAGE omits the value from the calculation if a cell is empty or contains text. AVERAGEA uses 0 in the calculation where a value is text, although an empty cell is still omitted. =AVERAGE(B3:F5) =AVERAGEA(B3:F5)

Calculating the Standard Deviation The standard deviation is a measure of the dispersion of a data sample, i.e., how much the data values in a sample are away from the mean. Use STDEV.S or STDEVA to calculate the standard deviation of a sample. STDEV.S omits any cells in the range that are not numeric, while STDEVA counts them as 0. There are many additional descriptive and inferential statistical functions in Excel, but those are generally covered in a Statistics course.

Example: STDEV.S and STDEVA =STDEV.S(B3:F5) =STDEVA(B3:F5)

Counting Cell Ranges COUNT -- only cells with numbers (note that dates are numbers) ROWS -- rows in a cell range COUNTA -- all cells in a cell range that are not empty COUNTBLANK -- only cells that are empty

Date and Time Processing Any value that is entered with / is assumed to be a date value, e.g., 12/22/14 is equal to December 22, 2014. Excel has a number of functions to deal with date values: YEAR, MONTH, and DAY extract the year, month, and day of a date value HOUR, MINUTE, and SECOND extract the hours, minutes, and seconds of a time value DATE constructs a new date value EDATE constructs a new date with a monthly offset NOW returns the current date and time TODAY returns the current date TIME constructs a new time value

Example: Date Processing CTRL ` View shows the formulas and actual stored values =DATE(YEAR(A8),MONTH(A8),DAY(A8)+7) You can construct dates from the values of year, month, day

Example: EDATE The EDATE function creates a new date that is a specified number of months ahead or behind the starting date. =EDATE(A1,1)

Internal Date Representation Dates are represented internally as numbers. What you see is a "formatting" of that number: short date: 10/1/2014 long date: Wednesday, October 1, 2014 The actual number inside the cell is: 41913 41913 is the number of days elapsed between October 1, 2014 and January 1, 1900.

Date Calculations Dates can be added and subtracted like numbers. The function NETWORKDAYS shows the number of workdays in a span of dates. The DATEDIF function returns the number of days, months, or years in a span of dates. Note that DATEDIF is a hidden function and may not be available in future releases of Excel. Earlier date first

Questions?