If, Ands and Buts of Excel

Slides:



Advertisements
Similar presentations
Lesson 3 Working with Formulas.
Advertisements

Formulas, Ranges, and Functions. Formulas n Formulas perform operations such as addition, multiplication, and comparison on worksheet values. n Formulas.
Intermediate Formulas & Functions Instructor: Rachel Baltus.
CIS100 Test 2 Review REACH CRC © 2011 REACH CRC. All Rights Reserved.Spring 2011.
About Functions SUM, AVERAGE, MIN, MAX, COUNT, ROUND
EXCEL.
REACH CRC © 2011 REACH CRC. All Rights Reserved.Fall 2011.
FORMULAS & FUNCTIONS EXCEL 2. Excel Input – a collection of informational data typed into the spreadsheet Output – worksheet results Information to be.
FORMULAS & FUNCTIONS EXCEL. Input A collection of information Data typed into the spreadsheet Output Worksheet Results.
Microsoft Excel 2010 Test.
Excel – Study Guide #2.
Excel: Working With Formulas Cooperative Conversations January 12, 2007.
Introduction to Excel Formulas, Functions and References.
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,
Copyright 2003, Paradigm Publishing Inc. CHAPTER 3 BACKNEXTEND 3-1 LINKS TO OBJECTIVES AutoSum Button Mathematical Operators Mathematical Operators Formula.
Spreadsheets Objective 6.02
Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 2 BACKNEXTEND 2-1 LINKS TO OBJECTIVES Mathematical OperatorsMathematical Operators Formula.
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
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.
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.
CIS300 TEST REVIEW EXAM 1- PROF. ZURADA & PROF. GUAN REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Introduction to Excel, Word and Powerpoint Developing Valuable Technology Skills! Shawn Koppenhoefer Training in Research in Reproductive Health/Sexual.
MS Excel Management Information Systems 1. Contents 2  Functions  IF Function and nested IF  Sorting Data.  Filtering Data.  Data Form.  Data Validation.
Powerpoint Templates Page 1 Powerpoint Templates MS Excel Functions.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
WEEK# 3 Haifa Abulaiha August 31,
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.
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 
Introduction to Excel Lecture 3. Excel basics O Excel is a software program that can make number manipulation easy O It is also referred as a spreadsheet.
REACH- CRC © 2011 REACH-CRC. All Rights Reserved.Fall 2011 © 2011 REACH-CRC. All Rights Reserved.
DAY 6: MICROSOFT EXCEL –CHAPTER 2,3 Aliya Farheen January 28,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.
Spreadsheet Calculations Formulas & Functions Computer Applications I.
CTS130 Spreadsheet Lesson 6 Working with Math & Trig, Statistical, and Date & Time Functions.
CIS 100 Test #3 Review REACH Computer Resource Center.
EXCEL. PARTICIPATION PROJECT STEPS a, 4b
CIS300 Test Review REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
EXCEL INSTRUCTOR:CHITRANGI DOSHI
Contents Introduction Text functions Logical functions
Tutorial 3 Working with Formulas and Functions
Computer Information Technology Section 6-17
REACH Computer Resource Center
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
Excel Lesson 5 Using Functions
Excel IF Function.
College of Engineering
REACH CRC Professor Reinhardt
CIS300 Test Review REACH - CRC Fall 2010
Excel Tutorial 3 Calculating Data with Formulas and Functions
Excel Formulas & Functions.
Microsoft Excel 2003 Illustrated Complete
Excel 2013 Formulas & Functions.
Working with Formulas and Functions
Excel 2013 Formulas & Functions.
Microsoft Excel – Part I
Excel Functions.
Excel 2013 Formulas & Functions.
Excel Functions.
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Lesson 4: Introduction to Functions
REACH CRC Professor Manni
Spreadsheets Objective 6.02
REACH Computer Resource Center
Spreadsheets Objective 6.02
Working with Formulas and Functions
Lessons 3: Coffee Shop Inventory
Presentation transcript:

If, Ands and Buts of Excel Adam Little 3/10/2018 [website]

Formulas of Excel Decrease the amount of time you spend in Excel Increase the accuracy of your data and your reports

Basic Math ADD: can use ‘+’ or SUM(number1, number2, …) Allows you to add 2 or more numbers together Can use cell references and arrays SUBTRACT: use ‘–’ MULTIPY: can use ‘*’ or PRODUCT(number1, number2, …) Allows you to multiply 2 or more numbers together DIVIDE: use ‘/’

Basic Math Question answers Total Bananas bought: 7 Total fruit bought: 27 Total of apples and peaches: 13 Total cost of apples: $2.40 Brought $20, how much change: $10.05

COUNT(value1, value2, …) Returns the number of cells that have numbers in them Value can be items, cell references, or ranges

COUNT(value1, value2, …) Result Number: 4

COUNTA(value1, value2, …) Returns the number of cells containing numbers, text, formulas/functions, and empty text (““) Does not count empty cells

COUNTA(value1, value2, …) Result Number: 9

AVERAGE(value1, value2, …) Returns the average of a group of supplied numbers Excel adds the numbers together and divides by the total number of numbers The function will automatically ignore empty cells

AVERAGE(value1, value2, …) Results Abe: 78.8 Debora: 78.8 Johnette: 67.25 Layla: 71.4 Renna: 68.8 Tiny: 62.75

MIN(array) MAX(array) MIN returns the smallest value from a set of data Ignores empty cells MAX returns the largest value from a set of data

MIN(array) MAX(array) Results MIN: 35 MAX: 98

IF(logical_test, value_if_true, value_if_false) To test for or evaluate certain conditions and then react differently depending on whether the test was TRUE or FALSE

IF(logical_test, value_if_true, value_if_false) Results Alanna: FAIL Brittany: FAIL Klara: PASS Mozelle: PASS Tiny: PASS Results Blythe: F Darin: B Jule: D Mitch: C Yee: A

Nested IF statements Refers to using more than one IF function so that you can test for more conditions and return more possible results

Nested IF statements Results Blythe: F Darin: B Jule: D Mitch: C Yee: A

NOW( ) TODAY( ) NOW – returns the current date and time TODAY – returns the current date Takes no parameters, but requires empty parentheses Will continually update each time the worksheet is refreshed (a value is entered or updated) F9 will force the sheet to recalculate and update the value

NOW( ) TODAY( ) NOW results TODAY results 1: =NOW( ) 2: =NOW( ) + 7

MONTH(date) DAY(date) YEAR(date) MONTH – get the month as a number (1-12) from a date DAY – get the day as a number (1-31) from a date YEAR – get the year from a date

AND(logical1, [logical2], …) OR(logical1, [logical2], …) AND – test multiple conditions at the same time Returns true if ALL arguments are true OR – test multiple conditions Returns true if ANY argument is true

AND(logical1, [logical2], …) OR(logical1, [logical2], …) AND results 76: TRUE 81: TRUE 78: TRUE 90: FALSE 85: TRUE 100: FALSE

AND(logical1, [logical2], …) OR(logical1, [logical2], …) OR results Red: TRUE Blue: FALSE Green: TRUE

WORKDAY(start_date, days, [holidays]) Returns the “nearest” working day in the past or future Calculate due date, delivery date, etc that exclude non-working days Positive days = future date; Negative days = past date IMPORTANT: this function does not include the start date when calculating the end date

WORKDAY(start_date, days, [holidays]) Results Monday, January 23, 2017 Wednesday, January 2, 2019 Monday, January 8, 2018

NETWORKDAYS(start_date, end_date, [holidays]) Returns the number of working days between two dates Excludes Saturdays and Sundays and optional holidays IMPORTANT: this function does include the both start and end date when calculating the work days

NETWORKDAYS(start_date, end_date, [holidays]) Results 254 5 4

DATEDIF(start_date, end_date, unit) Returns the time between two dates in months, days, or years Units are days, months, or year “D”, “M”, “Y” DATEDIF is known as a “compatibility” function Works in all versions of Excel, but doesn’t have a help menu “DATEDIF is treated as the drunk cousin of the Formula family. Excel knows it lives a happy and useful life, but will not speak of it in polite conversation.” –Chip Pearson; exceljet.net

DATEDIF(start_date, end_date, unit) Results 2 24 731