Microsoft Excel Prepared by the Academic Faculty Members of IT.

Slides:



Advertisements
Similar presentations
Introduction to Excel This class is “HANDS-ON” you will need to open up an excel spreadsheet and do examples as you go along. Students will be able to.
Advertisements

Excel IF Functions The IF function is one of Excels most useful and most used functions. What it does, basically, is test to see whether a certain condition.
Lesson 3 Working with Formulas.
Intermediate Formulas & Functions Instructor: Rachel Baltus.
BCIS IB (Test 2) Excel Lessons 4 – 8 Press space bar to Advance Frame.
Introduction to Excel Formulas, Functions and References.
Decision Making Using Excel
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 1 1 Microsoft Office Excel 2003.
Excel Tutorial 1 Getting Started with Excel
Tutorial 3 Calculating Data with Formulas and Functions
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 2 1 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
1 Computing for Todays Lecture 8 Yumei Huo Spring 2006.
Microsoft Excel 2003 Illustrated Complete Excel and Advanced Worksheet Management Customizing.
1 Excel Lesson 3 Using Formulas and Functions Microsoft Office 2010 Fundamentals Story / Walls.
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
Microsoft Excel 2007 Introduction to Spreadsheet Programs
259 Lecture 4 Spring 2010 Logical Functions and Conditional Formatting in Excel.
Excel Web App By: Ms. Fatima Shannag.
FIRST COURSE Excel Lecture. XP 2 Introducing Excel Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative.
 Create a small exam that calculate the grade it self  Create a small program to do.
Tutorial 8: Working with Advanced Functions
Excel 2007 Part (2) Dr. Susan Al Naqshbandi
Spreadsheets Objective 6.02
XP New Perspectives on Microsoft Excel 2002 Tutorial 2 1 Microsoft Excel 2002 Tutorial 2 – Working With Formulas and Functions.
XP Copyright 2003 Peter McDevitt 1 Microsoft Excel 2002 Lecture 2 – Working With Formulas and Functions.
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
1 Agenda – 9/20/2013/ Monday Howard J Rattliff, Jr. – Principles of Technology - Course #
Excel 4 Conditional Functions, Formats, and Backstage.
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.
XP Excel Tutorial 3 Working with Formulas and Functions.
XP Abdul Hameed 1 Microsoft Office Excel 2013 Tutorial 2 – Working With Formulas and Functions.
Microsoft® Excel Use Insert Function. 1 Key and point to enter functions. 2 Navigate with and create named ranges. 3 Use range names in functions.
Learning Objectives What is a spreadsheet and what is the difference between a spreadsheet and a worksheet? Start Excel, open an existing spreadsheet,
Course ILT Spreadsheet structure Unit objectives Enter labels and values; select a range; replace cell contents; undo or redo actions; and move, copy or.
Microsoft Excel Quick Overview Putting students first to make learning last a lifetime Celebrating academics, diversity, and innovation.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. WORD 2007 M I C R O S O F T ® THE PROFESSIONAL APPROACH S E R I E S Lesson 15 Advanced Tables.
A lesson approach © 2011 The McGraw-Hill Companies, Inc. All rights reserved. a lesson approach Microsoft® Excel 2010 © 2011 The McGraw-Hill Companies,
Microsoft® Excel Key and format dates and times. 1 Use Date & Time functions. 2 Use date and time arithmetic. 3 Use the IF function. 4 Create.
Excel Web App By: Ms. Fatima Shannag.
XP 1 Microsoft Office Excel 2003 Working With Formulas and Functions.
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.
Spreadsheets What is Excel?. Objectives 1. Identify the parts of the Excel Screen 2. Identify the functions of a spreadsheet 3. Identify how spreadsheets.
DAY 10: MICROSOFT EXCEL – 7,9 AND 12 Sravanthi Lakkimsetty Sept 21, 2015.
XP 1 ﴀ New Perspectives on Microsoft Office 2003, Premium Edition Excel Tutorial 2 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
Microsoft Office 2013 ®® Calculating Data with Formulas and Functions.
Microsoft ® Excel ® 2013 Enhanced Excel Tutorial 3 Calculating Data with Formulas and Functions.
Microsoft PowerPoint Prepared by the Academic Faculty Members of IT.
Microsoft Excel Prepared by the Academic Faculty Members of IT.
An electronic document that stores various types of data.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
Basics of Ms Excel-2007 Instructor: Mr. Michael John Tanzania Public Service College.
CONDITIONAL FORMATTING AND CUSTOM NUMBER FORMATS LEC 5 1.
Logical Functions and Conditional Formatting in Excel
Excel Tutorial 8 Developing an Excel Application
Chapter 6 Modifying Cell Styles
CompuHigh Microsoft Excel.
Excel Tutorial 3 Working with Formulas and Functions
2007 MICROSOFT EXCEL INTERMEDIATE
Excel Part 3 Working with Formulas and Functions
Working with Formulas and Functions
European Computer Driving Licence
Excel: Formulas & Functions II Participation Project
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Spreadsheets Objective 6.02
Excel Tutorial 3 Working with Formulas and Functions
Spreadsheets Objective 6.02
Working with Formulas and Functions
Presentation transcript:

Microsoft Excel Prepared by the Academic Faculty Members of IT

Logical Functions Logical Functions are used to test the existence of specific conditions. Types 1)IF 2)AND 3)OR

IF Logical Function Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates to FALSE. Use IF to conduct conditional tests on values and formulas. IF(logical_test,value_if_true,value_if_false)

IF Logical Function Logical_test is any value or expression that can be evaluated to TRUE or FALSE. For example, A10=100 is a logical expression; if the value in cell A10 is equal to 100, the expression evaluates to TRUE. Otherwise, the expression evaluates to FALSE. This argument can use any comparison calculation operator. comparison calculation operator Value_if_true is the value that is returned if logical_test is TRUE. For example, if this argument is the text string "Within budget" and the logical_test argument evaluates to TRUE, then the IF function displays the text "Within budget". If logical_test is TRUE and value_if_true is blank, this argument returns 0 (zero). To display the word TRUE, use the logical value TRUE for this argument. Value_if_true can be another formula.

IF Logical Function Value_if_false is the value that is returned if logical_test is FALSE. For example, if this argument is the text string "Over budget" and the logical_test argument evaluates to FALSE, then the IF function displays the text "Over budget". If logical_test is FALSE and value_if_false is omitted, (that is, after value_if_true, there is no comma), then the logical value FALSE is returned. If logical_test is FALSE and value_if_false is blank (that is, after value_if_true, there is a comma followed by the closing parenthesis), then the value 0 (zero) is returned. Value_if_false can be another formula.

IF Logical Function Enter = in the cell you want the result to be displayed in. Click on Insert function icon >> Choose IF function >> IF dialog box appears. Set the option in the dialog box. Press OK.

AND Logical Function Returns TRUE if all its arguments are TRUE; returns FALSE if one or more argument is FALSE. AND(logical1,logical2,...) Logical1, logical2,... are 1 to 30 conditions you want to test that can be either TRUE or FALSE.

AND Logical Function Enter = in the cell you want the result to be displayed in. Click on Insert function icon >> Choose AND function >> AND dialog box appears. Set the option in the dialog box. Press OK.

OR Logical Function Returns TRUE if any argument is TRUE returns FALSE if all arguments are FALSE. OR(logical1,logical2,...) Logical1,logical2,... are 1 to 30 conditions you want to test that can be either TRUE or FALSE.

OR Logical Function Enter = in the cell you want the result to be displayed in. Click on Insert function icon >> Choose OR function >> OR dialog box appears. Set the option in the dialog box. Press OK.

Paste Special After copying data, you can use the Paste Special command on the Edit menu to paste specific cell contents or attributes such as formulas, formats, or comments from the Clipboard into an Excel worksheet (worksheet: The primary document that you use in Excel to store and work with data. Also called a spreadsheet. A worksheet consists of cells that are organized into columns and rows; a worksheet is always stored in a workbook.). You can also use Paste Special to paste a link to Excel data or data from another program, such as Microsoft Word.

Paste Special All:Paste all cell contents and formatting. Formulas:Paste only the formulas as entered in the formula bar. Values:Paste only the values as displayed in the cells. Operations: Allows performing arithmetic operations between the pasted cell and the cell it overwrites.

Paste Special Transpose: switch the orientation of your data. Skip Blanks: only cells that contain formulas or data are copied. Paste Link: allows you to create a link between two ranges of cells.