Simplifying IF AND OR Functions with The JayTray

Size: px
Start display at page:

Download "Simplifying IF AND OR Functions with The JayTray"

Transcription

1 Simplifying IF AND OR Functions with The JayTray JayTray THEJAYTRAY.IE BLOG.THEJAYTRAY.COM

2 Table of Contents Introduction... 1 Objective of Book... 1 Version of Excel... 1 Using Wizards vs Typing Functions... 1 Logical Functions... 2 File Layout... 3 Basic Logical Test... 4 IF... 5 AND... 7 IF AND... 8 OR... 9 IF OR Next Steps & Notes Note IF COUNTIF Logical Test About The JayTray... 15

3 Introduction Objective of Book This e-book is targeted at people who have at least a basic knowledge of Excel, the layout and formulas. The aim of this e-book is to introduce you to some of the Logical functions in Excel. These functions include LOGICAL TESTS IF AND OR Each function will be explained individually and then examples will be given on how you can further use these and combine them for different purposes. There is an assumption that you understand at least the basics of Excel. Version of Excel This e-book has been created using Excel Excel 2010 and 2007 use very similar steps, although icons or colours may look different. For prior versions of Excel, you will have to use the Insert Function, or you can enter the formula manually. Using Wizards vs Typing Functions Personally, my preference is to type a formula, but I will also show the screenshots to create a formula using the wizard. Both ways work and will return the same result, it is up to you to decide on your own preference. When typing formulas, I will use uppercase throughout this e-book, but these formulas are not case sensitive in Excel. TheJayTray.ie Page 1

4 Logical Functions The Logical Functions can be found in the Function Library section of the FORMULAS tab on your menu bar. Clicking on this button shows a list of all the Logical Functions. You can select your function from this list by clicking on it. You can also show a list of all Logical Functions by clicking on the formula bar. button to the left of the From the Or Select a category list, select Logical This also lists all Logical Functions. TheJayTray.ie Page 2

5 File Layout For my demonstration, and your practice create a file similar to the one below. Cells A3 to A8 lists our students names, and B3 to F8 give the results of each subject. We will enter our formula in column G. We will assume for the sake of demonstration that the pass rate is 50%. Ready to start on the first of our Logical functions? Let s start with the basic logic test first TheJayTray.ie Page 3

6 Basic Logical Test As we go through the various logical functions, you will notice that some require a logical test or logical value. What is a logical test? It is a test of logic that will either result in a true or false (yes/no, pass/fail, etc.) value. In its simplest form, let s test if each student s English result is greater or equal than the pass mark of 50. Starting in cell G3, enter =B3>=50. That is a logical test, is 48 greater than or equal to 50? That test will result in either a True or False reply. Copy the formula down for the remaining students. So far, this isn t strictly speaking a calculation, just a test. If the statement is false, then the result of our test if FALSE and, if the value of the test is true then the result is TRUE. What is the point of knowing this? The logical test is the foundation of the Logical Functions. Later we will be telling Excel what to do based on whether these statements are true or false. Without understanding the logical test/statement on its own will make the next formula a bit more difficult than they actually are. TheJayTray.ie Page 4

7 IF The IF function Checks whether a condition is met, and returns one value if TRUE, and another value if FALSE. The condition here is our logical test. The syntax is =IF(Logical_test, Value_if_true, Value_if_false) Logical_test = This is our logical test, in our case is the student s mark greater than or equal to the pass rate? Value_if_true = If the student s mark is greater than or equal to the pass mark, what do we want the function to do? If we want to say PASS for example, then we would enter that (make sure to enter between double apostrophes). Value_if_false = What do you want the function to do if the logical test is false? So, if the student s result is not greater than or equal to the pass mark, what do you want the function to do? We want to test to see if the student s English result is greater than or equal to the pass mark (50) then we want to say PASS, or else we want to say FAIL. When I first learned about IF functions, I learned it (and still think of it this way) as IF-THEN-ELSE. IF the result is greater than or equal to 50 THEN say PASS or ELSE say FAIL. TheJayTray.ie Page 5

8 The completed IF function is =IF(B3>=50, PASS, FAIL ). Note the commas separate the different parts of the functions syntax. Remember to enter the text PASS and FAIL between double apostrophes. Copy this formula down for the remaining students. Change the formula to test other subjects, or change the pass rate. Why not enter the pass rate in a table outside the above table and refer to that cell instead of stating 50 in the function. TheJayTray.ie Page 6

9 AND The AND function Checks whether all arguments are TRUE, and returns TRUE if all arguments are TRUE. Previously we used one logical test, now we are going to use two. The above box shows you that you can enter Logical1 and Logical2 tests or arguments. Once you enter the second argument, then another field for Logical3 appears and so on. We are going to test if the English AND French results are greater than or equal to the pass mark of 50. This returns TRUE or FALSE depending on if ALL arguments are true or false. If one argument is true and one argument is false, then the function will return FALSE, because not all the arguments are true. This is an important distinction to note, if you want to test where all arguments are TRUE then you can use the AND function in this way. Even if you had 5 arguments and only 1 of these arguments were false, then the result of your whole function will be FALSE, because not all arguments are true. When this makes sense, you can proceed to using the AND within and IF function. TheJayTray.ie Page 7

10 IF AND The IF AND function is the same as an IF function, but the difference here is that your logical_test is now going to be an AND function. Let s breakdown this IF AND function: Logical_test = This is an AND function that has two logical tests o Logical1 = Is the English result greater than or equal to 50 o Logical2 = Is the French result greater than or equal to 50 Value_if_true = If the AND function results in true, then we want the function to say PASS Value_if_false = if the AND function results in false, then we want the function to say FAIL. Note the brackets around the logical tests within the AND function and also the commas that separate the different parts of each function. TheJayTray.ie Page 8

11 OR The OR function Checks whether any of the arguments are TRUE, and returns TRUE or FALSE. Returns FALSE only if all arguments are FALSE. This is similar in use to the AND function, but where the AND function returned TRUE only if all arguments are true, the OR function will return TRUE if any of the arguments are true. Again, change the results or pass marks if you want to test the formula. The OR function will only return FALSE if all the arguments are false. Next we will use the OR together with an IF function. TheJayTray.ie Page 9

12 IF OR The IF OR function, again, is the same as an IF function, but the difference here is that your logical_test is now going to be an OR function. Let s breakdown this IF AND function: Logical_test = This is an OR function that has two logical tests o Logical1 = Is the English result greater than or equal to 50 o Logical2 = Is the French result greater than or equal to 50 Value_if_true = If the OR function results in true, then we want the function to say PASS Value_if_false = if the OR function results in false, then we want the function to say FAIL. As with the IF AND function, note the brackets around the logical tests within the OR function and also the commas that separate the different parts of each function. TheJayTray.ie Page 10

13 Next Steps & Notes If you understand the IF, AND and OR functions then you already have an understanding of logical tests that can help you understand further logical tests, but also you now have functions that can be used with others to make some useful, time saving functions. Note I see people getting confused sometimes with the AND & OR functions within IF functions. In most cases, the reason for this is not understanding exactly what the AND & OR functions mean. The AND function will return TRUE only if ALL arguments are true. If even one out of many arguments are false, then the whole function will result in FALSE. The OR function will return TRUE if ANY of the arguments are true. If one or all arguments are true, the function will result in TRUE. The function will only result in FALSE if all the arguments are false. In a lot of cases users requirements aren t met by using either IF, AND or OR in their basic form. Here are two examples of common cases I am asked about. If you wanted to test for example if at least 2 of our 5 arguments were true, then you could combine COUNTIF with IF and logical tests which we will do in the section titled IF COUNTIF Logical Test. If you wanted to run several logical tests quickly, without entering each logical argument, you can use an array formula. We will go through this in the IF AND ARRAY. TheJayTray.ie Page 11

14 IF COUNTIF Logical Test I ve changed the text in G2 to say Did the student pass at least 2 exams?. We will use IF, COUNTIF and logical tests to answer the question in G2. We will first use an IF statement. The logical_test is going to be made up of a COUNTIF function, which will count how many times the student s scores are greater than or equal to 50 (how many subjects the student passed) and tests if that is greater than or equal to 2. The Value_if_true will be YES if the student passed at least 2 subjects. The Value_if_false will be NO if the student has not passed at least 2 subjects. Note the brackets, commas and double apostrophes, their correct use is very important for this formula to work. If you find this hard to understand or create yourself initially, then try it in these steps: Create a COUNTIF formula that counts how many subjects the student passed. Make this a logical function by adding >=2 at the end. You should get TRUE where the COUNTIF resulted in at least 2 Make this an IF function by adding IF( just before the COUNTIF function and then completing the Value_if_true and Value_if_false at the end to complete the function. TheJayTray.ie Page 12

15 IF AND ARRAY I have changed the text in G2 to Did the student pass ALL exams?. Below that I have entered an IF AND formula for each student testing if all their results are greater than or equal to the pass mark, 50. As you can see, I have 5 logical arguments in my AND function. This didn t take long to build, but if the number of arguments kept increasing this can be an unnecessarily long looking formula. If you are feeling a bit adventurous you can read on and see how to use Arrays with the IF AND functions. An array for our purposes here is basically a collection of items. We will have an array that will be made up of each subject result for the student. The array B3:F3 will be all the results for Alan, and we will test the array to see if it is greater than or equal to 50. It will test B3 first, the C3, then D3, then E3 and finally F3 against 50. TheJayTray.ie Page 13

16 The formula as created by you will at first look like this: Instead of checking B3 against 50, we are now highlighting from B3 to F3. Note that this results in an error message, that is because the function makes no sense at this point. We have not yet changed this formula to an array formula. To make this an array formula, at the end of the formula press Ctrl+Shift+Enter/Return (CSE). You will see then that the curly braces are added to the start and end of the formula. You do not type in these brackets yourself though. When you see these in cases like this, it means that there is an array. Now, our array formula will compare B3 first to 50, then C3 to 50 and so on, without us having to enter each individual logical argument ourselves. The IF OR function can also be made an array formula and used in this way too. TheJayTray.ie Page 14

17 About The JayTray Written by a past client Jay is an experienced and enthusiastic effectiveness and performance consultant with extensive coaching, mentoring and training skills. He has a proven ability to analyse performance and identify effective solutions for clients to help them meet their objectives. Jay has trained in advanced improvement techniques such as: Lean, Six sigma, Mistake proofing, and 5s He has extensive experience applying these techniques in his own work in the multi-national, professional services and manufacturing sectors. He has also worked privately with organisations, entrepreneurs and private individuals, helping them to enhance their personal and technological effectiveness. Jay recognises that each client s requirements are unique. He uses his knowledge, skills and passion for research and innovation to take a problem focused approach to learning and development. This allows him to tailor his training to meet the specific requirements of each client. This results in training which consistently exceeds the expectations of his clients, in the most time and cost effective manner possible. People call Jay when they need to improve their personal or technological effectiveness. Because the training is designed to meet the client s specific needs, they will benefit from: Training in a wider range of areas than is usually offered on a typical course Avoiding training which is of no relevance to them Having their training needs met by one course rather than having to take a multitude of courses Jay typically works with clients to help them: Learn from the basics to advanced levels of computers including; , Facebook, games, photo editing, video and sound, Office and a range of applications Systems based training, Identify and implement smarter and more effective ways of doing things, Effective process management e.g., reduce waste and rework, and make processes flow smoother. Staff training Workplace organization where time is spent searching; people are inundated with paperwork or ; mistakes are repeatedly being made; and where people think a lot of time is being spent on a task Jay can look at ways to reduce that time TheJayTray.ie Page 15

EDIT202 Spreadsheet Lab Prep Sheet

EDIT202 Spreadsheet Lab Prep Sheet EDIT202 Spreadsheet Lab Prep Sheet While it is clear to see how a spreadsheet may be used in a classroom to aid a teacher in marking (as your lab will clearly indicate), it should be noted that spreadsheets

More information

IF & VLOOKUP Function

IF & VLOOKUP Function IF & VLOOKUP Function If Function An If function is used to make logical comparisons between values, returning a value of either True or False. The if function will carry out a specific operation, based

More information

CS130 Software Tools. Fall 2010 Advanced Topics in Excel

CS130 Software Tools. Fall 2010 Advanced Topics in Excel Software Tools Advanced Topics in Excel 1 More Excel Now that you are an expert on the basic Excel operations and functions, its time to move to the next level. This next level allows you to make your

More information

CS130/230 Lecture 3 Formatting, Logic and Graphing

CS130/230 Lecture 3 Formatting, Logic and Graphing Monday, January 11, 2004 More Formatting CS130/230 Lecture 3 Formatting, Logic and Graphing We talked a little bit about formatting during our first class meeting. We know how to format numbers in cells.

More information

CS130/230 Lecture 6 Logic and Graphing

CS130/230 Lecture 6 Logic and Graphing Thursday, February 19, 2004 Formatting CS130/230 Lecture 6 Logic and Graphing Last time you produced a worksheet similar to the following: Printing Let s have a look at what the spreadsheet would look

More information

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function.

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function. Today Function The today function: =TODAY() It has no arguments, and returns the date that the computer is set to. It is volatile, so if you save it and reopen the file one month later the new, updated

More information

FAQ: Advanced Functions

FAQ: Advanced Functions Question 1: What are formulas and functions? Answer 1: Formulas are a type of data that can be entered into a cell in Excel. Formulas begin with an equal sign and use mathematical operators to calculate

More information

Chapter 3: The IF Function and Table Lookup

Chapter 3: The IF Function and Table Lookup Chapter 3: The IF Function and Table Lookup Objectives This chapter focuses on the use of IF and LOOKUP functions, while continuing to introduce other functions as well. Here is a partial list of what

More information

Excel & Business Math Video/Class Project #28 IF Function, ISBLANK function and Building a Check Register

Excel & Business Math Video/Class Project #28 IF Function, ISBLANK function and Building a Check Register Topics Excel & Business Math Video/Class Project #28 IF Function, ISBLANK function and Building a Check Register 1) Format Check Register with Borders as seen in this video... 2 2) Data Validation for

More information

Microsoft Excel 2007

Microsoft Excel 2007 Kennesaw State University Information Technology Services Microsoft Excel 2007 Special Topics PivotTable IF Function V-lookup Function Copyright 2010 KSU Dept. of Information Technology Services This document

More information

C omputer D riving L icence

C omputer D riving L icence E uropean C omputer D riving L icence E C D L S y l l a b u s 5. 0 Module 4 Spreadsheets ECDL Syllabus 5 Courseware Module 4 Contents USING THE APPLICATION... 1 SAVING A WORKBOOK AS ANOTHER FILE TYPE...

More information

EVALUATION ONLY. In this chapter, you will learn new. Text and Analysis EXCEL 2016 CHAPTER TIMING PROJECT: ANALYZING SALES INFORMATION

EVALUATION ONLY. In this chapter, you will learn new. Text and Analysis EXCEL 2016 CHAPTER TIMING PROJECT: ANALYZING SALES INFORMATION EXCEL 2016 3Advanced Functions for Text and Analysis In this chapter, you will learn new functions that give you greater ability for analysis and decision making. They include functions that either sum

More information

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function.

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function. Today Function The today function: =TODAY() It has no arguments, and returns the date that the computer is set to. It is volatile, so if you save it and reopen the file one month later the new, updated

More information

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS ü Open the file Task_1_Template.xlsx. All the further tasks will be conducted in this file, on particular sheets (Menu, Task 1, Task 2, Task 3). TASK 1.

More information

Using Advanced Formulas and 9 Securing Workbooks

Using Advanced Formulas and 9 Securing Workbooks Using Advanced Formulas and 9 Securing Workbooks LESSON SKILL MATRIX Skill Exam Objective Objective Number Using Formulas to Conditionally Use a series of conditional 5.4.3 Summarize Data logic values

More information

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function.

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function. Today Function The today function: =TODAY() It has no arguments, and returns the date that the computer is set to. It is volatile, so if you save it and reopen the file one month later the new, updated

More information

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet. Mr G s Java Jive #2: Yo! Our First Program With this handout you ll write your first program, which we ll call Yo. Programs, Classes, and Objects, Oh My! People regularly refer to Java as a language that

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel in Excel Although calculations are one of the main uses for spreadsheets, Excel can do most of the hard work for you by using a formula. When you enter a formula in to a spreadsheet

More information

=AVERAGE(Al:A10) gives the average of all the numbers in the cells from Al to A10 inclusive.

=AVERAGE(Al:A10) gives the average of all the numbers in the cells from Al to A10 inclusive. What is a function? A function is simply a specialised calculation that Excel has memorised. There are many functions (around 200) built into Excel and they can do lots of different things. In this chapter

More information

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

More information

Tutors Guide to the Platform

Tutors Guide to the Platform Tutors Guide to the Platform Log on to the platform with your codes. This will give you access to the course contents, the internal mail system and the administration side of the courses. This is the page

More information

B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE

B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE Strategy for doing well: Work along with the videos, filling out your Excel file(s) step by step. Do this until you can comfortably

More information

Downloading other workbooks All our workbooks can be downloaded from:

Downloading other workbooks All our workbooks can be downloaded from: Introduction This workbook accompanies the computer skills training workshop. The trainer will demonstrate each skill and refer you to the relevant page at the appropriate time. This workbook can also

More information

Getting Started with Amicus Document Assembly

Getting Started with Amicus Document Assembly Getting Started with Amicus Document Assembly How great would it be to automatically create legal documents with just a few mouse clicks? We re going to show you how to do exactly that and how to get started

More information

2 Adding Contacts, Sending Attachment s and Sending s to More Than 1 Person.

2 Adding Contacts, Sending Attachment s and Sending  s to More Than 1 Person. E-Mail 2 Adding Contacts, Sending Attachment s and Sending E-Mail s to More Than 1 Person. 1 The first thing we are going to do is check our inbox for any unread e-mails. To do this we need to go on Internet

More information

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Instructions The is composed of separate of parts which test your knowledge and understanding of some of the core concepts addressed in each lesson. Complete each part in the

More information

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India Excel Working with Formulas and Functions Using Relative References Using Absolute References Using Mixed References Entering Relative, Absolute, and Mixed References To enter a relative reference, type

More information

ECDL Module 4 REFERENCE MANUAL

ECDL Module 4 REFERENCE MANUAL ECDL Module 4 REFERENCE MANUAL Spreadsheets Microsoft Excel XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 4 (USING MICROSOFT EXCEL XP) - MANUAL 4.1 USING THE APPLICATION... 4 4.1.1 FIRST STEPS

More information

Using Advanced Formulas

Using Advanced Formulas 10 Using Advanced Formulas LESSON SKILL MATRIX Skills Exam Objective Objective Number Using Formulas to Conditionally Summarize Data Adding Conditional Logic Functions to Formulas Using Formulas to Modify

More information

Week - 01 Lecture - 04 Downloading and installing Python

Week - 01 Lecture - 04 Downloading and installing Python Programming, Data Structures and Algorithms in Python Prof. Madhavan Mukund Department of Computer Science and Engineering Indian Institute of Technology, Madras Week - 01 Lecture - 04 Downloading and

More information

1: Create, receive, reply to and forward messages and attachments

1: Create, receive, reply to and forward  messages and attachments 1: Create, receive, reply to and forward email messages and attachments LEARNING OUTCOMES In this section you will learn how to: understand Microsoft Outlook and email profiles (accounts) understand the

More information

This exam is open book / open notes. No electronic devices are permitted.

This exam is open book / open notes. No electronic devices are permitted. SENG 310 Midterm February 2011 Total Marks: / 40 Name Solutions Student # This exam is open book / open notes. No electronic devices are permitted. Part I: Short Answer Questions ( / 12 points) 1. Explain

More information

Tutorial 8: Working with Advanced Functions. Microsoft Excel 2013 Enhanced

Tutorial 8: Working with Advanced Functions. Microsoft Excel 2013 Enhanced Tutorial 8: Working with Advanced Functions Microsoft Excel 2013 Enhanced Objectives Use the IF function Use the AND function Use the OR function Use structured references in formulas Nest the IF function

More information

Try typing the following in the Python shell and press return after each calculation. Write the answer the program displays next to the sums below.

Try typing the following in the Python shell and press return after each calculation. Write the answer the program displays next to the sums below. Name: Date: Instructions: PYTHON - INTRODUCTORY TASKS Open Idle (the program we will be using to write our Python codes). We can use the following code in Python to work out numeracy calculations. Try

More information

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts Tips and Shortcuts Drag Fill 1. Go to the 2016 Sales Report worksheet. 2. In cell E4 key in the calculation =D4-C4 and hit enter. 3. Go back to cell E4 and put your cursor in the bottom right corner of

More information

Getting Started with Excel

Getting Started with Excel Getting Started with Excel Excel Files The files that Excel stores spreadsheets in are called workbooks. A workbook is made up of individual worksheets. Each sheet is identified by a sheet name which appears

More information

Commonly Used Excel Formulas

Commonly Used Excel Formulas Microsoft Excel 2016 Advanced Formulas Look Up Values in a List of Data: Commonly Used Excel Formulas Let's say you want to look up an employee's phone extension by using their badge number or the correct

More information

This chapter is intended to take you through the basic steps of using the Visual Basic

This chapter is intended to take you through the basic steps of using the Visual Basic CHAPTER 1 The Basics This chapter is intended to take you through the basic steps of using the Visual Basic Editor window and writing a simple piece of VBA code. It will show you how to use the Visual

More information

Advanced formula construction

Advanced formula construction L E S S O N 2 Advanced formula construction Lesson objectives Suggested teaching time 40-50 minutes To become more adept at using formulas to get the data you want out of Excel, you will: a b c d Use range

More information

Using Microsoft Word. Text Tools. Spell Check

Using Microsoft Word. Text Tools. Spell Check Using Microsoft Word In addition to the editing tools covered in the previous section, Word has a number of other tools to assist in working with test documents. There are tools to help you find and correct

More information

Fundamentals. Fundamentals. Fundamentals. We build up instructions from three types of materials

Fundamentals. Fundamentals. Fundamentals. We build up instructions from three types of materials Fundamentals We build up instructions from three types of materials Constants Expressions Fundamentals Constants are just that, they are values that don t change as our macros are executing Fundamentals

More information

Excel Basics: Working with Spreadsheets

Excel Basics: Working with Spreadsheets Excel Basics: Working with Spreadsheets E 890 / 1 Unravel the Mysteries of Cells, Rows, Ranges, Formulas and More Spreadsheets are all about numbers: they help us keep track of figures and make calculations.

More information

SAP BEX ANALYZER AND QUERY DESIGNER

SAP BEX ANALYZER AND QUERY DESIGNER SAP BEX ANALYZER AND QUERY DESIGNER THE COMPLETE GUIDE A COMPREHENSIVE STEP BY STEP GUIDE TO CREATING AND RUNNING REPORTS USING THE SAP BW BEX ANALYZER AND QUERY DESIGNER TOOLS PETER MOXON PUBLISHED BY:

More information

Teach Yourself Microsoft Office Excel Topic 11: Mail Merge

Teach Yourself Microsoft Office Excel Topic 11: Mail Merge Table Updated: 17 March 2018 Level 3 MS Excel Written by Gerry Kruyer http://www.gerrykruyer.com Teach Yourself Microsoft Office Excel Topic 11: Mail Merge In this task you will learn how to merge data

More information

MICROSOFT EXCEL BASIC FORMATTING

MICROSOFT EXCEL BASIC FORMATTING MICROSOFT EXCEL BASIC FORMATTING To create a new workbook: [Start All Programs Microsoft Office - Microsoft Excel 2010] To rename a sheet(1): Select the sheet whose tab you want to rename (the selected

More information

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet!

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Hi folks! Before beginning the article, I just wanted to thank Brian Allan for starting an interesting discussion on what Strong at Excel means

More information

Excel. Spreadsheet functions

Excel. Spreadsheet functions Excel Spreadsheet functions Objectives Week 1 By the end of this session you will be able to :- Move around workbooks and worksheets Insert and delete rows and columns Calculate with the Auto Sum function

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables Fall 2014 Fall 2014 CS130 - Excel Functions & Tables 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course revolves

More information

John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA Introduction to

John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA Introduction to John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA 19341 610.280.2666 ccljtc@ccls.org Introduction to Microsoft Access 2007 Introduction to Microsoft Access What is Microsoft Access? Access

More information

ADDITIONAL EXCEL FUNCTIONS

ADDITIONAL EXCEL FUNCTIONS ADDITIONAL EXCEL FUNCTIONS The following notes and exercises on additional Excel functions are based on the Grade 12 Examination Guidelines for 2016 recently issued by the DBE. As such, they represent

More information

Skill Set 5. Outlines and Complex Functions

Skill Set 5. Outlines and Complex Functions Spreadsheet Software OCR Level 3 ITQ Skill Set 5 Outlines and Complex Functions By the end of this Skill Set you should be able to: Create an Outline Work with an Outline Create Automatic Subtotals Use

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2008 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Ahmad Al-Rjoub Excel Tutorial 7. Using Advanced Functions, Conditional Formatting, and Filtering

Ahmad Al-Rjoub Excel Tutorial 7. Using Advanced Functions, Conditional Formatting, and Filtering Ahmad Al-Rjoub Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering Objectives Evaluate a single condition using the IF function Evaluate multiple conditions using the AND function

More information

The WellComm Report Wizard Guidance and Information

The WellComm Report Wizard Guidance and Information The WellComm Report Wizard Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment s tests are

More information

Shorthand for values: variables

Shorthand for values: variables Chapter 2 Shorthand for values: variables 2.1 Defining a variable You ve typed a lot of expressions into the computer involving pictures, but every time you need a different picture, you ve needed to find

More information

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems GCSE CCEA GCSE EXCEL 2010 USER GUIDE Business and Communication Systems For first teaching from September 2017 Contents Page Define the purpose and uses of a spreadsheet... 3 Define a column, row, and

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables Fall 2012 Fall 2012 CS130 - Excel Functions & Tables 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course revolves

More information

CREATING A STYLE GUIDE FOR YOUR ORGANISATION

CREATING A STYLE GUIDE FOR YOUR ORGANISATION CIPR SKILLS GUIDE CREATING A STYLE GUIDE FOR YOUR ORGANISATION #CIPR @CIPR_UK WHY HAVE A STYLE GUIDE? Sloppy writing, jargon, long sentences and incomprehensible waffle ironically communicates one thing

More information

John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA Introduction to

John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA Introduction to John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA 19341 610.280.2666 ccljtc@ccls.org Introduction to Microsoft Access 2007 Introduction to Microsoft Access What is Microsoft Access? Access

More information

1 Introduction to Using Excel Spreadsheets

1 Introduction to Using Excel Spreadsheets Survey of Math: Excel Spreadsheet Guide (for Excel 2007) Page 1 of 6 1 Introduction to Using Excel Spreadsheets This section of the guide is based on the file (a faux grade sheet created for messing with)

More information

Workbooks & Worksheets. Getting Started. Formatting. Formulas & Functions

Workbooks & Worksheets. Getting Started. Formatting. Formulas & Functions 1 Getting Started Cells Workbooks & Worksheets Formatting Formulas & Functions Chart Printing 2 Getting Started Start a spreadsheet program Recognize the spreadsheet screen layout Use the ribbon,quick

More information

Excel. Tutorial 1 Getting Started with Excel. Tutorial 2 Formatting a Workbook. Tutorial 3 Working with Formulas and Functions COMPREHENSIVE

Excel. Tutorial 1 Getting Started with Excel. Tutorial 2 Formatting a Workbook. Tutorial 3 Working with Formulas and Functions COMPREHENSIVE Excel Tutorial 1 Getting Started with Excel Tutorial 2 Formatting a Workbook Tutorial 3 Working with Formulas and Functions COMPREHENSIVE Excel Tutorial 1 Getting Started with Excel COMPREHENSIVE Objectives

More information

Excel Conditional Formatting (Mac)

Excel Conditional Formatting (Mac) [Type here] Excel Conditional Formatting (Mac) Using colour to make data analysis easier Excel conditional formatting automatically formats cells in your worksheet if specified criteria are met, giving

More information

Excel Intermediate

Excel Intermediate Excel 2010 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX376 EX379 EX423 EX435 Data Validation Pages EX438 EX444 VLOOKUP Pages EX387 EX394 IF Pages EX151 EX155 EX367 EX376

More information

Editing and Formatting Worksheets

Editing and Formatting Worksheets LESSON 2 Editing and Formatting Worksheets 2.1 After completing this lesson, you will be able to: Format numeric data. Adjust the size of rows and columns. Align cell contents. Create and apply conditional

More information

How To Get Your Word Document. Ready For Your Editor

How To Get Your Word Document. Ready For Your Editor How To Get Your Word Document Ready For Your Editor When your document is ready to send to your editor you ll want to have it set out to look as professional as possible. This isn t just to make it look

More information

Introduction to MS Excel Management Information Systems

Introduction to MS Excel Management Information Systems Introduction to MS Excel 2007 Management Information Systems 1 Overview What is MS Excel? Functions. Sorting Data. Filtering Data. Data Form. Data Validation. Create charts in Excel. Formatting Cells.

More information

COPYRIGHTED MATERIAL. Starting Strong with Visual C# 2005 Express Edition

COPYRIGHTED MATERIAL. Starting Strong with Visual C# 2005 Express Edition 1 Starting Strong with Visual C# 2005 Express Edition Okay, so the title of this chapter may be a little over the top. But to be honest, the Visual C# 2005 Express Edition, from now on referred to as C#

More information

Grade Point Scales Standard Honors AP/College A B C D F Sample file

Grade Point Scales Standard Honors AP/College A B C D F Sample file 64 Transcripts Weighted Cumulative GPA When your student works extra hard and takes honors or college courses, they deserve a little credit. The best way to reflect this is through their GPA. They deserve

More information

the NXT-G programming environment

the NXT-G programming environment 2 the NXT-G programming environment This chapter takes a close look at the NXT-G programming environment and presents a few simple programs. The NXT-G programming environment is fairly complex, with lots

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

Foundations, Reasoning About Algorithms, and Design By Contract CMPSC 122

Foundations, Reasoning About Algorithms, and Design By Contract CMPSC 122 Foundations, Reasoning About Algorithms, and Design By Contract CMPSC 122 I. Logic 101 In logic, a statement or proposition is a sentence that can either be true or false. A predicate is a sentence in

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Intro to Excel Introduction to Microsoft Excel OVERVIEW In this lab, you will become familiar with the general layout and features of Microsoft Excel spreadsheet computer application. Excel has many features,

More information

(Provisional) Lecture 20: OCaml Fun!

(Provisional) Lecture 20: OCaml Fun! CS17 Integrated Introduction to Computer Science Hughes (Provisional) Lecture 20: OCaml Fun! 10:00 AM, Oct 23, 2017 Contents 1 Dictionaries 1 2 Well-Ordering Proof Practice 3 3 Summary 5 Objectives By

More information

Keep Track of Your Passwords Easily

Keep Track of Your Passwords Easily Keep Track of Your Passwords Easily K 100 / 1 The Useful Free Program that Means You ll Never Forget a Password Again These days, everything you do seems to involve a username, a password or a reference

More information

DATA TYPES. Numeric Data

DATA TYPES. Numeric Data Numeric Data Numeric data simply means numbers. But, numbers come in a variety of different types... Integers An integer is a whole number - it has no decimal or fractional parts. Integers can be either

More information

Excel Basic: Create Formulas

Excel Basic: Create Formulas Better Technology, Onsite and Personal Connecting NIOGA s Communities www.btopexpress.org www.nioga.org [Type Excel Basic: Create Formulas Overview: Let Excel do your math for you! After an introduction

More information

A Tutorial for Excel 2002 for Windows

A Tutorial for Excel 2002 for Windows INFORMATION SYSTEMS SERVICES Writing Formulae with Microsoft Excel 2002 A Tutorial for Excel 2002 for Windows AUTHOR: Information Systems Services DATE: August 2004 EDITION: 2.0 TUT 47 UNIVERSITY OF LEEDS

More information

Xchange for Samsung MAC User Guide. Version 2.4

Xchange for Samsung MAC User Guide. Version 2.4 Xchange for Samsung MAC User Guide Version 2.4 Contents Welcome to Xchange for Samsung Mac Desktop Client... 32 How to Install Xchange... 3 Where is it?... 43 The Dock menu... 4 The menu bar... 4 Preview

More information

MICROPROCESSOR SYSTEMS INTRODUCTION TO PYTHON

MICROPROCESSOR SYSTEMS INTRODUCTION TO PYTHON MICROPROCESSOR SYSTEMS INTRODUCTION TO PYTHON Table of contents 2 1. Learning Outcomes 2. Introduction 3. The first program: hello world! 4. The second program: hello (your name)! 5. More data types 6.

More information

Exercise 1 Using Boolean variables, incorporating JavaScript code into your HTML webpage and using the document object

Exercise 1 Using Boolean variables, incorporating JavaScript code into your HTML webpage and using the document object CS1046 Lab 5 Timing: This lab should take you approximately 2 hours. Objectives: By the end of this lab you should be able to: Recognize a Boolean variable and identify the two values it can take Calculate

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

CHAPTER 18: CLIENT COMMUNICATION

CHAPTER 18: CLIENT COMMUNICATION CHAPTER 18: CLIENT COMMUNICATION Chapter outline When to communicate with clients What modes of communication to use How much to communicate How to benefit from client communication Understanding your

More information

4Sight for Mac User Guide. Version 2.4

4Sight for Mac User Guide. Version 2.4 4Sight for Mac User Guide Version 2.4 Contents Welcome to 4Sight for Mac Desktop Client... 3 How to Install 4Sight... 3 Where is it?... 4 The Dock menu... 4 The menu bar... 4 Phone window... 5 Preview

More information

Lecture 1: Overview

Lecture 1: Overview 15-150 Lecture 1: Overview Lecture by Stefan Muller May 21, 2018 Welcome to 15-150! Today s lecture was an overview that showed the highlights of everything you re learning this semester, which also meant

More information

Simulations How To for Fathom

Simulations How To for Fathom Simulations How To for Fathom. Start by grabbing a collection box (the picture of a treasure box) and drop it on your screen. You can double click on the word collection to rename it. 2. Click on your

More information

Text Input and Conditionals

Text Input and Conditionals Text Input and Conditionals Text Input Many programs allow the user to enter information, like a username and password. Python makes taking input from the user seamless with a single line of code: input()

More information

Working with Mailings

Working with Mailings 10 Working with Mailings An Overview of the Mail Merge Process... 202 Step 1: Setting Up the Main Document... 204 Step 2: Creating a Data Source... 205 Create a data source... 205 Customize data source

More information

Handling Your Data in SPSS. Columns, and Labels, and Values... Oh My! The Structure of SPSS. You should think about SPSS as having three major parts.

Handling Your Data in SPSS. Columns, and Labels, and Values... Oh My! The Structure of SPSS. You should think about SPSS as having three major parts. Handling Your Data in SPSS Columns, and Labels, and Values... Oh My! You might think that simple intuition will guide you to a useful organization of your data. If you follow that path, you might find

More information

Helping shape your future

Helping shape your future www.pwc.com/pwcacademyme Helping shape your future Project Management Professional (PMP ) PwC s Academy 2016-2017 Contents Welcome to PwC s Academy 1 About Project Management Professional (PMP ) 2 Getting

More information

Depending on the computer you find yourself in front of, here s what you ll need to do to open SPSS.

Depending on the computer you find yourself in front of, here s what you ll need to do to open SPSS. 1 SPSS 13.0 for Windows Introductory Assignment Material covered: Creating a new SPSS data file, variable labels, value labels, saving data files, opening an existing SPSS data file, generating frequency

More information

SUM, AVERAGE, MEDIAN, MIN,

SUM, AVERAGE, MEDIAN, MIN, Lab 3 Activity Name Demonstration Notes Objective 12: Use the SUM, AVERAGE, MEDIAN, MIN, and MAX Functions 5.25 Using the SUM and AVERAGE Functions 5.26 Using the MEDIAN Function Start Excel. Open goaio_1e_08c_script_data.xlsx.

More information

Professor Program. Grading Scantron Exams

Professor Program. Grading Scantron Exams Grading Scantron Exams Grading scantrons consists of five parts: 1. Mechanically scanning the forms 2. Correcting scanning mistakes in the resulting scantron text file 3. Creating a student roster text

More information

Intro. Scheme Basics. scm> 5 5. scm>

Intro. Scheme Basics. scm> 5 5. scm> Intro Let s take some time to talk about LISP. It stands for LISt Processing a way of coding using only lists! It sounds pretty radical, and it is. There are lots of cool things to know about LISP; if

More information

Problem Solving through Programming In C Prof. Anupam Basu Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur

Problem Solving through Programming In C Prof. Anupam Basu Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Problem Solving through Programming In C Prof. Anupam Basu Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Lecture 15 Branching : IF ELSE Statement We are looking

More information

Text University of Bolton.

Text University of Bolton. Text University of Bolton. The screen shots used in this workbook are from copyrighted licensed works and the copyright for them is most likely owned by the publishers of the content. It is believed that

More information

Lesson Guides PRE-INTERMEDIATE

Lesson Guides PRE-INTERMEDIATE Lesson Guides PRE-INTERMEDIATE British Council 2018 The British Council is the United Kingdom s international organisation for cultural relations and educational opportunities. PRE-INTERMEDIATE LESSON

More information

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page Lesson 4: Auditing and Additional Formulas Return to the FastCourse Excel 2007 Level 3 book page Lesson Objectives After studying this lesson, you will be able to: Use 3-D cell references in formulas to

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTERMEDIATE MICROSOFT EXCEL 2016 Intermediate Microsoft Excel 2016 (EXC2016.2 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn joined

More information