Logical Functions Excel Lesson 10.

Slides:



Advertisements
Similar presentations
Lesson 3 Working with Formulas.
Advertisements

Lesson 3: Using Formulas
1. Write an Excel text function in cell Company Data!A4, which may be copied down, to string together the first and last name with only the first letter.
Computer Science & Engineering 2111 Text Functions 1CSE 2111 Lecture-Text Functions.
MIS: Chapter 14 Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS (Separate ppt on REACH.louisville.edu) All.
 Basically, it’s a sequence of characters.  Character? › Like… a letter. › Or a number. › Or even blank space (like spaces tabs and newlines).
Tutorial 7: Using Advanced Functions and Conditional Formatting
 2008 Pearson Education, Inc. All rights reserved JavaScript: Introduction to Scripting.
Tutorial 8: Working with Advanced Functions
Chapter 06: Lecture Notes (CSIT 104) 1 Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 1 Copyright © 2008 Prentice-Hall. All rights reserved.
Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 2 BACKNEXTEND 2-1 LINKS TO OBJECTIVES Naming Ranges Functions COUNT, COUNTA, COUNTIF, COUNTIFS.
Advanced Lesson 2: Advanced Data Analysis A PivotTable is a sophisticated tool that creates a concise report summarizing large amounts of data based on.
Chapter 9 Creating Formulas that Manipulate Text Microsoft Office Excel 2003.
DAY 6: EXCEL CHAPTER 2 Tazin Afrin September 05,
EXCEL FUNCTIONS MIS THE BASICS  LEFT(), RIGHT(), MID()  Keep X characters from string  CONCATENATE()  Join two strings together  TRIM()  Drop.
AGB 260: Agribusiness Information Technology Advanced Functions and Logic.
MIS: Chapter 7: Data Base and Data Warehouses Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS All assigned.
Advanced Excel for Finance Professionals A self study material from South Asian Management Technologies Foundation.
Excel Functions Abby Wiertzema
Microsoft Office Excel 2013 ® ® Abdul Hameed Using Advanced Functions and Conditional Formatting.
 Agenda: 4/24/13 o External Data o Discuss data manipulation tools and functions o Discuss data import and linking in Excel o Sorting Data o Date and.
Copyright © 2008 Pearson Prentice Hall. All rights reserved Chapter 6 Data Tables and Amortization Tables Exploring Microsoft Office Excel 2007.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
Microsoft ® Excel 2010 Core Skills Lesson 3 Using Formulas Courseware #: 3243 Microsoft ® Office Excel 2010.
 2008 Pearson Education, Inc. All rights reserved JavaScript: Introduction to Scripting.
1 CSE Computer Use: Fundamentals Week 5: Glade Manual Chapter 4 Gates and Circuits (Dale & Lewis Ch. 4)
Excel Text Functions 1. LEFT(text, [num_chars])) Returns the number of characters specified starting from the beginning of the text string Syntax Text:
1 CSE 2337 Chapter 7 Organizing Data. 2 Overview Import unstructured data Concatenation Parse Create Excel Lists.
Microsoft Excel Prepared by the Academic Faculty Members of IT.
USING BASIC FORMULAS Excel Lesson 4. FORMULAS Formulas: An equation that performs calculations such as addition, subtraction, multiplication, and division.
LOOKUP FUNCTIONS Excel Lesson 10. LOOKUP FUNCTIONS Allow the user to find data in other cells in the spreadsheet and place them in the current cell VLOOKUP:
Pasewark & Pasewark 1 Excel Lesson 5 Using Functions Microsoft Office 2007: Introductory.
AGB 260: Agribusiness Information Technology Advanced Functions and Logic.
Logical Functions and Conditional Formatting in Excel
Using Advanced Formulas
Lesson 3: Using Formulas
Working with Functions
Excel Lesson 5 Using Functions
Excel STDEV.S Function.
Chapter 6 JavaScript: Introduction to Scripting
Excel Lesson 8 Managing Worksheets.
Formatting Worksheets
Securing & Sharing Workbooks
Formatting Worksheets
Securing & Sharing Workbooks
Introduction to Scripting
Excel REPT Function.
Analyzing Data Using Formulas
Using Advanced Formulas
Managing Worksheets Excel Lesson 8.
How To Use VLOOKUP In Microsoft Excel
Using Advanced Formulas
Using Advanced Formulas
Formatting Worksheets
Microsoft Official Academic Course, Microsoft Word 2013
Making Decisions in a Program
Tables in PowerPoint MOAC Lesson 5.
Lesson 5: Changing the Appearance of Worksheets
Microsoft Official Academic Course, Microsoft Word 2013
Microsoft Excel Chapters 2 &3
Adding Tables to Slides
Microsoft Visual Basic 2005: Reloaded Second Edition
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Spreadsheets Objective 6.02
String Processing 1 MIS 3406 Department of MIS Fox School of Business
JavaScript: Introduction to Scripting
Spreadsheets Objective 6.02
REACH Computer Resource Center
Advanced Tables Access Lesson 9.
Presentation transcript:

Logical Functions Excel Lesson 10

AND FUNCTION Will display “True” if all conditions are met and “False” if one condition is not met =AND(Logical1,[Logical2],…) Example: =AND(c3<=C10) If the number in cell C3 is actually less than the number in cell C10, then the result in the active cell will be TRUE. If it is greater than or equal to the number in cell C10, then the result in the active cell will be FALSE.

OR FUNCTION Will display “True” if one of the conditions are met, will display “False” if at least one condition is not met

NOT FUNCTION Will display “True” if the conditions are NOT met, and “False” if the conditions are met =NOT(b4=2222)

ERROR Message An error message will appear if the arguments in a formula are not correct IFERROR Function helps the user pinpoint out where the error was made in a function

Modifying Text

Converting text to columns Allows the user to take text in one column and move them into multiple columns

LEFT, Right, and MID Functions LEFT Function Takes a specified number of characters from the left in a cell and places them in a new cell RIGHT Function Takes a specified number of characters from the right in a cell and places them in a new cell MID Function Takes a specified number of characters from the middle of the cell and places them in a new cell

Trim Function Removes any extra spacing in a cell =TRIM(c2)

Capitalization Functions PROPER: capitalizes the first letter in each word LOWER: Makes all of the text lowercase UPPER: Makes all text uppercase

CONCATENATE Function Combines the content in two cells together =CONCATENATE(l2,” “, I3,” “,I4)

FIND and SUBSTITUTE FIND: advanced function that searches the spreadsheet for a specific string in a text string SUBSTITUTE: function that replaces text in a text string in a spreadsheet

Source Microsoft Official Academic Course Microsoft Excel 2013. John Wiley & Sons, Inc., 2014.