COMM 205 MIDTERM REVIEW SESSION BY KEVIN DHIR

Size: px
Start display at page:

Download "COMM 205 MIDTERM REVIEW SESSION BY KEVIN DHIR"

Transcription

1 COMM 205 MIDTERM REVIEW SESSION BY KEVIN DHIR

2 Page 1 of 19 TABLE OF CONTENT 1. TABLE OF CONTENTS 2. INTRODUCTION 3. IF & NESTED IFS 4. AND/OR 5. COUNTIFS, SUMIFS 6. VLOOKUP 7. LEFT, RIGHT, MID, & CONCAT 8. LEN, TRIM, REPLACE, SUBSTITUTE 9. FIND, SEARCH 10. STATA 11. TAB, SUM, GEN, BYSORT, GSORT 12. TAB, SUM, GEN, BYSORT, GSORT (continued) 13. MISSING VALUES 14. MERGING DATASETS 15. MERGING DATASETS (continued) 16. TOSTRING, DESTRING, BROWSEIF 17. EXCEL PRACTICE 18. STATA PRACTICE

3 Page 2 of 19 INTRODUCTION Kevin Dhir, Second Year in Combined Major Business & Computer Science o Stata is cool but has applications that most of you won t use in the future o Excel is dope and at the end of this course combined with what you learned last year in COMM290, you ll feel like a WIZARD o Did pretty well in COMM205 (86%) last semester This package is an overview of the content in the course, condensed into a twohour review session. You will not succeed by just attending this review session, but you will hopefully have a better understanding of the many functions! This review session is INTERACTIVE. Play around with Excel and Stata as we go! One of the keys to success for this exam is the cheat sheet. There are many small syntax tricks possible and the cheat sheet will save you from those. I ll be going over how to use formulas and commands together, interchangeably, the logic behind some things, how to approach certain questions, and providing you a few sample problems that I have generated. I ll have office hours on INSERT DATE AND TIME. Timeline 1. EXCEL Functions minute break 3. Stata Commands 4. Cheat Sheet Tips 5. Q&A, Sample Questions You will need to know the following Excel functions: IF, AND, OR, COUNTIFS, SUMIFS, VLOOKUP, CONCATENATE, LEN, TRIM, SUBSTITUTE, REPLACE, FIND, SEARCH You will need to know the following Stata commands: tab, sum, rename, browse, gen, drop[if], keep[if], bysort, duplicates tag, merge, egen, destring, tostring, browse if

4 Page 3 of 19 IF & NESTED IFS CHEATSHEET MATERIAL: Syntax: =IF(logical_test, [value_if_true], [value_if_false]) Logical Tests: = (equal to), <> (not equal to), < (less than), <= (less than or equal to) > (greater than), >= (greater than or equal to) IF is used to test for specific conditions and return either true or false The basic concept is quite clear, but when the real trickiness comes when they are NESTED. It helps to draw out a tree diagram to follow a nested IF function. For instance, assuming A1 contains GR: =IF(A1>55, CR, IF(A1<50, F, D )) SERIOUSLY, DRAW THE TREE. Strings within an IF are surrounded by quotation marks. Do not use quotation marks around cell references, formulas, or numerical values.

5 Page 4 of 19 AND, OR CHEAT SHEET MATERIAL: =AND(logical1,[logical2], ) =OR(logical1,[logical2], ) AND and OR are logical operators. For AND: For OR: If all logical tests are true, then AND will return TRUE. If ANY of the logical tests are true, then OR will return TRUE. THESE CAN BE USED IN COMBINATION WITH IF! So you can do IF-AND and IF- OR. REMEMBER THIS! Again, TREES ARE YOUR FRIENDS. Now you try! Recreate the below spreadsheet in Excel. I typed a formula using AND in C2, OR in D2, and a nested AND in E2. I then dragged it down. What three formulas did I use? Nesting these within an IF allows you to print certain strings or values based on the results, as opposed to true.

6 Page 5 of 19 COUNTIFS, SUMIFS CHEAT SHEET MATERIAL: =COUNTIFS(criteria_range1, criteria1, ) (up to 127) =SUMIFS(sum_range, criteria_range1, criteria1 ) (up to 127) In this course we only deal with COUNTIFS and SUMIFS. These are NOT the same as COUNTIF and SUMIF. Those only allow for a SINGLE criterion. These allow for between 1 and 127 criteria. You may have a question around this! Think of the criteria as an AND(). If, and only if, all the criteria are true, it will either count or add the value to the sum. The sum_range MUST be a numerical range. You can have your sum_range and your criteria_range be the same range. The two must have the same size and shape. COUNTIFS counts the number of times the criteria given evaluate to true. Criteria format does not NEED logical operator if you are just checking if it is equal to. But they can also be preceded by an equal sign (if they do, then quotation marks are required. Criteria constraints must be surrounded by, even if it is a logical operation on a numerical. THIS IS DIFFERENT THAN WITH REGULAR IF! For COUNTIFS, can have MULTIPLE Criteria Ranges but must be same size! EXAMPLE! D12 =SUMIFS(A11:A14,B11:B14,"BUCS") C14 =COUNTIFS(A11:A14,">90")

7 Page 6 of 19 VLOOKUP Open your eyes, VLOOKUP to the skies and see Freddie Mercury CHEAT SHEET MATERIAL: =VLOOKUP(lookup_value,table_array,col_index-num, [range_lookup]) VLOOKUP looks in the first column of the table_array for the lookup_value, then returns the value found within the column index number. Write a VLOOKUP function to get Stanley s Bank Account Balance. Write a VLOOKUP function to get Evan s Mark on Test. Write a VLOOKUP function to get the name of the student with balance of 888. Why should you NOT use column B as your lookup table? EXTRA: Write the string SNAKES in cell A8 using LEFT/RIGHT/CONCAT/MID TRAPS WITH VLOOKUP Looks up value in the FIRST column then uses col index RELATIVE to that. If using an approximate match, the first column of the table_array must be sorted in ascending order Each value in the first column must be unique, else it will just return the first one it comes across If looking up through a range, the range values must only be the lower bound of the range (e.g. Range: 90, Grade: A+ instead of Range , Grade A+

8 Page 7 of 19 LEFT, RIGHT, MID, CONCATENATE CHEAT SHEET MATERIAL: =LEFT(text,num_chars) =RIGHT(text,num_chars) =MID(text,start_num,num_chars) =CONCATENATE(text1,[text2],...) =text1&[text2] These three functions are used to manipulate text, and return substrings (text within text). NOTE: THE START_NUM OF MID IS INCLUSIVE. Cell A1 contains the string YR2MDHIR. The first three characters specify the student s year standing, the fourth specifies their gender, and the final characters are their last name. What will the following functions return? =LEFT(A1,3) =RIGHT(A1,5) =LEFT(RIGHT(A1,4),2) =MID(A1,3,1) =MID(A1,4,1) =LEFT(A1,500) =RIGHT(A1,500) =MID(A1,14,1) Concatenate allows you to join strings together. It can be used interchangeably with &. We want to rewrite the text to instead say DHIR YR2 M. Use LEFT, MID, and RIGHT to create substrings, then them together. If you wish to add spaces, simply and. This does not have to be referenced from a cell.

9 Page 8 of 19 LEN, TRIM, SUBSTITUTE, REPLACE CHEAT SHEET MATERIAL: =LEN(TEXT) =TRIM(TEXT) =SUBSTITUTE(text,old_text,new_text,[instance_num]) =REPLACE(old_text,start_num,num_chars,new_text) LEN returns the number of characters in a string, inclusive of blank characters (spaces). TRIM removes repeated blanks (spaces). Great for data cleaning to remove errors. WHY WOULD THIS HAPPEN!? THEY BOTH SAY KEVIN! SUBSTITUTE vs REPLACE. SUBSTITUTE is used when you know the specific string you are trying to swap out! What if we wanted to change M to say MALE? WHAT WENT WRONG IN B2?! We have to specify the INSTANCE! What would be written in C1? REPLACE is great for inserting strings into other strings, or replacing the text at a certain point in a string. Unlike SUBSTITUTE, it doesn t know exactly what it will replace, just where. Two big tricks! With SUBSTITUTE, you must know the instance number you are trying to replace. With REPLACE, you must pay careful attention to the start position and number of characters

10 Page 9 of 19 FIND, SEARCH CHEAT SHEET MATERIAL: =FIND(find_text,within_text,[start_num]) =SEARCH(find_text,within_text,[start_num]) SEARCH and FIND sound and look super similar, but have a few KEY differences. SIMILARITIES: Return position of find_text relative to start_num If start_num > within_text s length, returns #VALUE! If start_num is negative, returns #VALUE! If find_text is not found, returns #VALUE! Start_num is assumed to be 1 SEARCH Not CaSe SENSitiVE ALLOWS Wildcard Characters FIND CASE SENSITIVE NO WILDCARD CHARACTERS WILDCARDS? -> can be used to replace a single character, e.g. p?t will match with any three letter string beginning with a p and ending in a t (pet, pat, pot, pit, etc.) * -> can be used to replace any (including 0) number of characters, e.g p*t will match with poot, part, port, parrot, etc ~ -> if you are looking for a * or? in your find_text, you must precede it with a ~ to stop it from being treated as a wild card (e.g. to find the string who?, you would have to denote it who~? Otherwise it would match with whom, etc) USES FIND and SEARCH are usually used in combination with MID and REPLACE to give a starting point to replace a certain string or crop a certain string

11 Page 10 of 19 STATA THE STATA SECTION OF THE EXAM DEPENDS SO HEAVILY ON YOUR CHEAT SHEET. MAKE YOUR CHEAT SHEET YOUR BEST FRIEND. BASICS SYNTAX IS KEY I cannot stress enough. Your cheat sheet is going to be your BIBLE when it comes to syntax. EVEN if you think you know the syntax, I would strongly suggest you double check any commands you re asked to evaluate or write. That s a great place or way for them to pull a fast one. GENERAL SYNTAX: command varname(s) [if varname==value] [, options] EVERYTHING IN STATA IS CASE SENSITIVE. THIS INCLUDES COMMANDS, VARNAMES, ETC. The Log File Allows you to save the output of Stata without permanently editing your dataset. Must be initiated EVERY time you use Stata if you care about your results. The Do File Basically a macro. Allows you to complete multiple operations by opening just one file. Can save time and be used to avoid typos. Datasets Upon opening a dataset in Stata, the variables window will show you all the different columns in the dataset. The properties window will give you details about specific variables that you select, such as the # of observations. Let s explore a dataset

12 Page 11 of 19 TAB, SUM, GEN, EGEN, BYSORT, GSORT tabulate, tab, or ta produces a frequency distribution table for the variable. Mainly used for CATEGORICAL variables (discrete). Option: sort, defaults to descending, summ Frequency, Percent, Cumulative Frequency summarize, sum, or su produces number of observations, average(mean), standard deviation, max, and min value of a NUMERICAL variable. SYNTAX TRAP: Make sure you enclose any text string that s not a COMMAND or VARIABLE NAME in quotation marks, such as specific variable values ex. sum ch if loc== USA

13 Page 12 of 19 Combining tab and sum Allows user to see a frequency distribution table for each variable within a specific varname o E.g. tab loc, sum(emp) -> generates the frequency distribution table of employees for each location o Does NOT allow the use of the detail option generate, gen, or g creates a new variable in the dataset. Mainly used for simple math assignments using operators such as +, -, *, / Can gen things like the sum of two other variables, a constant, a string THERE ARE STRICT RULES ON THE VARIABLE NAMES POSSIBLE: CASE SENSITIVE, 32-CHARACTER LIMIT, FIRST CHARACTER CANNOT BE A NUMBER<CANNOT CONTAIN SPACES OR OTHER SPECIAL CHARACTERS SUCH AS * & % etc o If you want to use an already taken name, consider using the rename function. It has the SAME restrictions on naming. egen is a much more powerful generate that uses built in functions. Trust in the cheat sheet Trust in your mind. Most common functions: mean, median, max, min, count, total Generally used in combination with bysort, o For the purposes of COMM 205: Vertical? Use egen. Horizontal? Use gen. bysort is named in reverse. Think of it as sort-by! Sort your dataset by the given variable(s). Useful for breaking down a large dataset. For COMM205, only use egen&sum gsort sounds super cool like bysort, but in reality it s just the ability to sort in either ascending or descending order. sort by multiple variables effect if there exist duplicate values for the first var.. gsort -primarykey +randomvar will be the same as gsort primarykey-.

14 Page 13 of 19 MISSING VALUES Two types: Missing NUMBERS -> denoted by a period (.) in the cell o Though it may not be relevant to the exam, numbers are in black text while strings are in red text o Texts in blue are numerical variables that are disguised as strings (recall the _merge variable) o Numerical MVs are treated as positive infinity, so keep this mind when used with if greater than statements! Missing STRINGS -> denoted by a blank cell Count number of missing observations using summ if command o For numerical -> summ fyear if emp==. will show the number of missing observations in the dataset o For string-> summ fyear if tic== CLEAR, REPLACE, DROP, KEEP These four commands are used almost exclusively in combination with if. Replace o Changes the variable s value, usually based upon a condition such as if the value is not == a specific number, or if it is a missing value Clear o Removes the active / master dataset that is currently loaded into memory If you don t clear before opening another, it will simply open both together Drop/drop if o Deletes an entire column from your dataset (drop) or database, or drops certain rows based on the condition given (drop if) Keep/keep if o The complement of drop, often used to retain only non-missing values e.g. keep if emp!=. will then drop every row that is missing emp

15 Page 14 of 19 MERGING DATASETS duplicates checks if a value given in the first varlist listed contains any duplicates, then generates a new variable in which a numerical 0 or 1 is printed based upon if there was a duplicate or not o to check the number of duplicates tab the var you generated (usually tab) There are THREE types of merging. Familiarize yourself with the concept of a PRIMARY KEY -> unique variable or set of variables that can be used to identify an observation in a data set. One-to-One o Combines the datasets using one or more key variables to link the observations between the data sets o Both datasets have the same primary key o The variable names and variable types must be identical! One-to-Many o The primary key of the master dataset appears on multiple lines of the using dataset o E.G. master dataset = class list, contains var stu_num, using dataset = grades list, contains vars grade ass_num and stu_num. Many instances of stu_num in the using

16 Page 15 of 19 Many-to-One o The master dataset contains multiple observations containing the primary key of the using dataset Direct opposite of one-to -many SIX STEPS FOR MERGING TWO DATASETS Step 1: Determine the primary key (unique identifier) of the master dataset o This can be one or multiple variables Step 2: Determine the primary key of the using dataset o This is the dataset that is not currently loaded into your Stata Step 3: Determine which variables that you will be using to merge the two datasets o They must exist in both datasets in the exact same format (name and type), this INCLUDES CASING! Step 4: Is the primary key of the master dataset also the variable(s) you will be using to merge? Yes or No o If the primary key consists of multiple variables, then this is only yes if you are using ALL of said variables to merge Step 5: Is the primary key of the using dataset also the variable(s) you will be using to merge? Yes or No Step 6: Choose from the below o If Step 4 is YES and Step 5 is YES, it is 1:1 (Primary Key of Master & Using) o If Step 4 is YES and Step 5 is NO, it is 1:m (Primary Key of Master) o If Step 4 is NO and Step 5 is YES, it is m:1 (Primary Key of Using)

17 Page 16 of 19 TOSTRING, DESTRING, BROWSE IF tostring converts a numerical variable into a string variable o Can either convert the variable in place (using the replace option) or generate a new variable (using the generate option) o NOTE: numerical missing values, represented by a period, will be turned into the string. Instead of a blank! You can fix this using drop if. destring converts a string variable into a numerical variable (what a shock) o again, can either replace or generate a new variable o Doesn t have the same problem that tostring does with missing values o If the string isn t a number it ll simply put in a missing value browse if allows you to view specific observations based on a condition o Useful for analyzing data manually, identifying outliers etc. o Remember: missing numericals are considered to be positive infinity THAT S A WRAP! HERE ARE SOME PRACTICE PROBLEMS.

18 Page 17 of 19 EXCEL PRACTICE PROBLEMS Bob is an aspiring Sauder School of Business Student. He one day dreams of being a billionaire. He is attending a networking event, which has released the following information on its delegates. The actual spreadsheet has 500 values. Bob writes a command to calculate the number of delegates attending who have a net-worth greater than $2 million who are in the Tech field. What formula does he use? =COUNTIFS(B11:B15,">2000",C11:C15,"Tech") Bob really respects these fine gentlemen. He wishes to edit Column A to prefix each name with the string Mr.. What formula does he use? =REPLACE(A11,1,0,"Mr. ") Bob connected with a fellow named Suge Nathair. He wants to find out what field he is working in. He searches for his name in Column A, and wants the cell he writes the formula in to print out the field he is working in. What formula does he use? =VLOOKUP( Suge Nathair, A11:A500, 3, 0)

19 Page 18 of 19 STATA PRACTICE PROBLEMS Generate a new variable which will display the shareholder s equity of each firm. What formula would you use? gen sh_equity = asset/liability firm asset liability A 5 2 B 4 3 C 8 3 What command would you use to clean outliers from this dataset? You try to use tab and sum together, and write the command tab airport_name, sum (numberofpassengersinmillions) if year == Stata keeps giving you an error. How do you fix this? You want to sort the dataset in descending order of number of passengers and from oldest year to newest year. How would you do this?

COMM 205 MANAGEMENT INFO SYSTEMS 2016 FALL MIDTERM EXAM REVIEW SESSION BY LEAH ZHANG

COMM 205 MANAGEMENT INFO SYSTEMS 2016 FALL MIDTERM EXAM REVIEW SESSION BY LEAH ZHANG COMM 205 MANAGEMENT INFO SYSTEMS 2016 FALL MIDTERM EXAM REVIEW SESSION BY LEAH ZHANG TABLE OF CONTENT I. Introduction II. IF; nested IF; AND/OR; putting it all together III. COUNTIFS; SUMIFS IV. VLOOKUP

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

EXCEL WORKSHOP II ADVANCED FORMULAS AND FUNCTIONS IN EXCEL

EXCEL WORKSHOP II ADVANCED FORMULAS AND FUNCTIONS IN EXCEL EXCEL WORKSHOP II ADVANCED FORMULAS AND FUNCTIONS IN EXCEL Table of Contents Text Functions: Text to Columns, LEFT, RIGHT, MID, FIND, LEN Lookup Functions: VLOOKUP, INDEX and MATCH PivotTable Features:

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

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

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015 EXCEL AS BUSINESS ANALYSIS TOOL 10-May-2015 TOUCH POINTS Part A- Excel Shortcuts Part B: Useful Excel Functions Part C: Useful Excel Formulas Part D: Sheet and Cell Protection Part A: EXCEL SHORTCUTS EXCEL

More information

Understanding error messages

Understanding error messages Understanding error messages Excel may display error messages if your formulae or functions contain mistakes (note that it will not detect all errors in calculations). It is always worth checking the results

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

10 Ways To Efficiently Analyze Your Accounting Data in Excel

10 Ways To Efficiently Analyze Your Accounting Data in Excel 10 Ways To Efficiently Analyze Your Accounting Data in Excel Live Demonstration Investment advisory services are offered through CliftonLarsonAllen Wealth Advisors, LLC, an SEC-registered investment advisor.

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

Excel Formulas 2018 Cindy Kredo Page 1 of 23

Excel Formulas 2018 Cindy Kredo Page 1 of 23 Excel file: Excel_Formulas_BeyondIntro_Data.xlsx Lab One: Sumif, AverageIf and Countif Goal: On the Demographics tab add formulas in Cells C32, D32 and E32 using the above functions. Use the cross-hair

More information

WHEN SOFTWARE RESOURCES ARE LIMITED: EXCEL TIPS

WHEN SOFTWARE RESOURCES ARE LIMITED: EXCEL TIPS WHEN SOFTWARE RESOURCES ARE LIMITED: EXCEL TIPS A HANDOUT TO SUPPLEMENT SESSION W- 111 SRAI ANNUAL MEETING 2017 JUDY WILLIS ADMINISTRATOR OF GRADUATE RESEARCH ETHICS PROGRAMS SRAI ANNUAL MEETING OCTOBER

More information

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

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

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

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

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

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Chapter 10 Managing Numbers and Text Using Excel 1 Objectives Examine the Excel window and tools Enter and format

More information

BASIC EXCEL WORKSHOP 2017

BASIC EXCEL WORKSHOP 2017 BASIC EXCEL WORKSHOP 2017 Download the training materials at: www.nusbas.com/excel-2017 28 FEBRUARY 2017 NUS BUSINESS ANALYTICS SOCIETY (BAS) fb.com/nusbasociety nusbas.com WHAT WILL I BE LEARNING? 1.

More information

My Top 5 Formulas OutofhoursAdmin

My Top 5 Formulas OutofhoursAdmin CONTENTS INTRODUCTION... 2 MS OFFICE... 3 Which Version of Microsoft Office Do I Have?... 4 How To Customise Your Recent Files List... 5 How to recover an unsaved file in MS Office 2010... 7 TOP 5 FORMULAS...

More information

Streamlined Reporting with

Streamlined Reporting with Streamlined Reporting with Presentation by: Ryan Black, M.B.A. Business and Fiscal Officer Office of the Provost Wright State University, Dayton, Ohio Microsoft Excel offers one of the most powerful software

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

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

AS Computer Applications: Excel Functions

AS Computer Applications: Excel Functions AS Computer Applications: ABS Returns the absolute value of a number. The absolute value of a number is the number without its sign. ABS(number) Number is the real number of which you want the absolute

More information

Lesson 3: Logic and Reference Functions

Lesson 3: Logic and Reference Functions Lesson 3: Logic and Reference Functions This Video Excel Educator - Looking Back Lesson 1 Excel Basics Lesson 2 Formulas and Functions Excel Educator - Looking Ahead Lesson 3 - Logic & Reference Functions

More information

Vlookup and Sumif Formulas to assist summarizing queried data

Vlookup and Sumif Formulas to assist summarizing queried data Vlookup and Sumif Formulas to assist summarizing queried data When accessing data from Foundation through the MS Query tool, at times it is necessary to join multiple tables together to retrieve the required

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

Department of Language and Linguistics LG400. Computer Induction for Linguists. Class Handouts. Week 7. Working with data on MS Excel.

Department of Language and Linguistics LG400. Computer Induction for Linguists. Class Handouts. Week 7. Working with data on MS Excel. Department of Language and Linguistics LG400 Computer Induction for Linguists Class Handouts Week 7 Working with data on MS Excel by Mutsumi Ogawa mogawa@essex.ac.uk Session description Do you work with

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

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

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

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

2015 Vanderbilt University

2015 Vanderbilt University Excel Supplement 2015 Vanderbilt University Introduction This guide describes how to perform some basic data manipulation tasks in Microsoft Excel. Excel is spreadsheet software that is used to store information

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems Advanced Excel Presented By: Chad Jarvi, CPA President, Civic Systems IMFOA Conference April 11, 2019 3:15 pm 4:15 pm COPY AND PASTE... 4 USING THE RIBBON... 4 USING RIGHT CLICK... 4 USING CTRL-C AND CTRL-V...

More information

Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting

Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting Overview Basic Excel techniques can be used to analyze EMIS data from Student Information Systems (SISs), from the Data Collector and on ODE

More information

AGB 260: Agribusiness Data Literacy. Advanced Functions and Logic

AGB 260: Agribusiness Data Literacy. Advanced Functions and Logic AGB 260: Agribusiness Data Literacy Advanced Functions and Logic Useful Chapters in the Textbook Regarding this Lecture Chapter 11 Chapter 13 Chapter 14 Some of the other functions in this chapter are

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED EXCEL ADVANCED Overview OVERVIEW... 2 ADVANCED FORMULAS... 4 VIEW THE PROJECT... 4 Viewing Available Excel Functions... 5 Help with Functions... 6 TEXT FUNCTIONS... 7 Text Functions Used in this Section:...

More information

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with VLOOKUP vs. SUMIFS Battle of the Excel Heavyweights made with Table of Contents 1. What do we mean by Battle? 2. VLOOKUP: Range Lookups 3. SUMIFS: Overview 4. Multi-Column Lookup with VLOOKUP and SUMIFS

More information

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 Table of contents The use of range names 1 DESCRIPTION 1 TO DEFINE A NAME 2 USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 THE ROUND FUNCTION 7 THE SUMIF

More information

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns.

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns. Table of contents 1. Excel in English 2. Important information 3. LAYOUT 4. Format Painter 5. Format Painter 6. Fix columns 7. Fix columns 8. Create a grid 9. Create a grid 10. Create a numeric sequence

More information

3 Excel Tips for Marketing Efficiency

3 Excel Tips for Marketing Efficiency 3 Excel Tips for Marketing Efficiency 3 Excel Database Tips for Marketing Efficiency In these challenging times, companies continue to reduce staff to save money. Those who remain must do more. How to

More information

Spreadsheets for Geniuses

Spreadsheets for Geniuses Spreadsheets for Geniuses Introduction Spreadsheets make use of the great mathematical powers of the computer. Simply put: A Spreadsheet is a computerized ledger that can perform calculations on its data.

More information

2. In Video #6, we used Power Query to append multiple Text Files into a single Proper Data Set:

2. In Video #6, we used Power Query to append multiple Text Files into a single Proper Data Set: Data Analysis & Business Intelligence Made Easy with Excel Power Tools Excel Data Analysis Basics = E-DAB Notes for Video: E-DAB 07: Excel Data Analysis & BI Basics: Data Modeling: Excel Formulas, Power

More information

Excel for Data Visualization

Excel for Data Visualization Introduction to Excel for Data Visualization CHEAT SHEET CONTENT Basic data cleaning troubleshooting... 04 Three useful excel formulas... 05 INDEX MATCH VLOOKUP COUNTIF Why use INDEX MATCH?... 06 Why use

More information

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley Excel 2010 Functions 4/18/2011 Archdiocese of Chicago Mike Riley i VIDEO TUTORIALS AVAILABLE Almost 100,000 video tutorials are available from VTC. The available tutorials include Windows 7, GroupWise

More information

What is a VLOOKUP? Source

What is a VLOOKUP? Source VLOOKUP What is a VLOOKUP? VLOOKUP (short for vertical lookup ) is a function that is used to extract a particular value from a spreadsheet, given a unique identifier Let s say we wanted to know the weight

More information

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Week 9 Using lookup functions Microsoft Excel is essentially a spreadsheet tool, while Microsoft Access is a database tool.

More information

Lab Manual Excel Module

Lab Manual Excel Module Lab Manual Excel Module Lab 3: Conditionals and Lookup Tables Conditional functions One very useful set of built-in functions in Excel is conditional functions. As the name implies, these perform certain

More information

ICT IGCSE Practical Revision Presentation Spreadsheets. Columns. Rows. This is a range of cells. More than one cell has been selected.

ICT IGCSE Practical Revision Presentation Spreadsheets. Columns. Rows. This is a range of cells. More than one cell has been selected. Cell References Columns Rows Column Reference G Yellow Cell Reference B2 Green Cell Reference D3 This is a range of cells. More than one cell has been selected. G6:G11 From Row 6 To 11 A range will be

More information

Instructions on Adding Zeros to the Comtrade Data

Instructions on Adding Zeros to the Comtrade Data Instructions on Adding Zeros to the Comtrade Data Required: An excel spreadshheet with the commodity codes for all products you want included. In this exercise we will want all 4-digit SITC Revision 2

More information

Excel VLOOKUP. An EMIS Coordinator s Friend

Excel VLOOKUP. An EMIS Coordinator s Friend Excel VLOOKUP An EMIS Coordinator s Friend Vlookup, a function in excel, stands for Vertical Lookup. This function allows you to search a specific table of data, look for a match within the table of data

More information

ADVANCED MS EXCEL 2007 USEFUL FUNCTIONS & FORMULAS FOR DAILY USE

ADVANCED MS EXCEL 2007 USEFUL FUNCTIONS & FORMULAS FOR DAILY USE ADVANCED MS EXCEL 2007 USEFUL FUNCTIONS & FORMULAS FOR DAILY USE Objectives This workshop will explore the advanced functions available in Excel 2007 to facilitate your work. It will introduce the useful

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

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

MICROSOFT OFFICE APPLICATIONS

MICROSOFT OFFICE APPLICATIONS MICROSOFT OFFICE APPLICATIONS EXCEL 2016 : LOOKUP, VLOOKUP and HLOOKUP Instructor: Terry Nolan terry.nolan@outlook.com Friday, April 6, 2018 1 LOOKUP FUNCTIONS WHAT ARE LOOKUP FUNCTIONS USUALLY USED FOR?

More information

QUICK EXCEL TUTORIAL. The Very Basics

QUICK EXCEL TUTORIAL. The Very Basics QUICK EXCEL TUTORIAL The Very Basics You Are Here. Titles & Column Headers Merging Cells Text Alignment When we work on spread sheets we often need to have a title and/or header clearly visible. Merge

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

Though we re focusing on the newest version of Excel, most of what is covered applies to the other types of spreadsheets discussed in chapter four.

Though we re focusing on the newest version of Excel, most of what is covered applies to the other types of spreadsheets discussed in chapter four. Chapter 4 Working with Specialized Functions and Formulas in Excel In this tutorial, we will tackle the basic and most useful string functions journalists use when performing a variety of tasks such as

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

VLOOKUP() takes three mandatory parameters and one default/optional parameter:

VLOOKUP() takes three mandatory parameters and one default/optional parameter: Excel Lesson: Table Lookup Functions Topics Covered: VLookup() [Look across] HLookup() [Look down] Lookup() [Look almost anywhere] Related Functions (a list) We will not be examining all forms of these

More information

Excel: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: & 27097

Excel: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: & 27097 Excel: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: 27083 & 27097 Recording and Using Macros: Macros can be used to record steps

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

EXCELLING WITH ANALYSIS AND VISUALIZATION

EXCELLING WITH ANALYSIS AND VISUALIZATION EXCELLING WITH ANALYSIS AND VISUALIZATION A PRACTICAL GUIDE FOR DEALING WITH DATA Prepared by Ann K. Emery July 2016 Ann K. Emery 1 Welcome Hello there! In July 2016, I led two workshops Excel Basics for

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

Top 15 Excel Tutorials

Top 15 Excel Tutorials Top 15 Excel Tutorials Follow us: TeachExcel.com Contents How to Input, Edit, and Manage Formulas and Functions in Excel... 2 How to Quickly Find Data Anywhere in Excel... 8 How to use the Vlookup Function

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

ADD AND NAME WORKSHEETS

ADD AND NAME WORKSHEETS 1 INTERMEDIATE EXCEL While its primary function is to be a number cruncher, Excel is a versatile program that is used in a variety of ways. Because it easily organizes, manages, and displays information,

More information

Using Excel for a Gradebook: Advanced Gradebook Formulas

Using Excel for a Gradebook: Advanced Gradebook Formulas Using Excel for a Gradebook: Advanced Gradebook Formulas Objective 1: Review basic formula concepts. Review Basic Formula Concepts Entering a formula by hand: Always start with an equal sign, and click

More information

Section 6. Functions

Section 6. Functions Section 6 Functions By the end of this Section you should be able to: Use Logical Functions Use Date and Time Functions Use Lookup Functions Use Maths and Financial Functions Use Concatenate Nest Functions

More information

How to use the Vlookup function in Excel

How to use the Vlookup function in Excel How to use the Vlookup function in Excel The Vlookup function combined with the IF function would have to be some of the most used functions in all my Excel spreadsheets. The combination of these functions

More information

Excel Flash Fill. Excel Flash Fill Example

Excel Flash Fill. Excel Flash Fill Example 1 Excel Flash Fill Some of the most time consuming and irritating aspects of Excel are working with repetitive information. This included writing formulas, formatting, separating dates, and entering names

More information

1.a) Go to it should be accessible in all browsers

1.a) Go to  it should be accessible in all browsers ECO 445: International Trade Professor Jack Rossbach Instructions on doing the Least Traded Product Exercise with Excel Step 1 Download Data from Comtrade [This step is done for you] 1.a) Go to http://comtrade.un.org/db/dqquickquery.aspx

More information

CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions

CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions Objectives Create and manipulate a table Deleting duplicate records Delete sheets in a workbook Add calculated columns

More information

Excel Formulas Cheat Sheet

Excel Formulas Cheat Sheet Basic Formulas AVERAGE =AVERAGE(A2:A10) Returns a mathematical average of a given cell range COUNT =COUNT(A2:A10) Returns the count of the numbers in given cell range MAX =MAX(A2:A10) Finds the largest

More information

Excel Reports: Formulas or PivotTables

Excel Reports: Formulas or PivotTables Excel Reports: Formulas or PivotTables TABLE OF CONTENTS 1. Cover Page 2. The Great... 3. Formula-based Reports with SUMIFS 4. Pivot Tables 5. Comparison The great...is a success of little things that

More information

Excel Comics. Why read boring ebooks! Volume 1. Page 1 of 21

Excel Comics. Why read boring ebooks! Volume 1. Page 1 of 21 Excel Comics Why read boring ebooks! Volume 1 Page 1 of 21 Contents 1) VLOOKUP lifeblood of an Excel user!... 3 2) Battle of Nested IFs vs. VLOOKUP with TRUE (or 1) Who wins?... 4 3) 2-D VLOOKUP will give

More information

Excel 2016: Formulas & Functions

Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions Rylander Consulting www.rylanderconsulting.com sandy@rylanderconsulting.com 425.445.0064 ii Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions i Table of

More information

1. Two types of sheets used in a workbook- chart sheets and worksheets

1. Two types of sheets used in a workbook- chart sheets and worksheets Quick Check Answers Session 1.1 1. Two types of sheets used in a workbook- chart sheets and worksheets 2. Identify the active cell- The active cell is surrounded by a thick border and its cell reference

More information

1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation.

1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. Excel Primer for Risk Management Course 1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. 2. VLOOKUP The VLOOKUP function syntax

More information

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES Chapter 1 : Examples of commonly used formulas - Office Support A collection of useful Excel formulas for sums and counts, dates and times, text manipularion, conditional formatting, percentages, Excel

More information

Excel 2. Module 2 Formulas & Functions

Excel 2. Module 2 Formulas & Functions Excel 2 Module 2 Formulas & Functions Revised 1/1/17 People s Resource Center Module Overview This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this lesson

More information

EMIS - Excel Reference Guide

EMIS - Excel Reference Guide EMIS - Excel Reference Guide Create Source Data Files Create a Source Data File from your Student Software program. Current Year (valid as of the day pulled) Previous Year (used when reviewing data that

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

Excel Format cells Number Percentage (.20 not 20) Special (Zip, Phone) Font

Excel Format cells Number Percentage (.20 not 20) Special (Zip, Phone) Font Excel 2013 Shortcuts My favorites: Ctrl+C copy (C=Copy) Ctrl+X cut (x is the shape of scissors) Ctrl+V paste (v is the shape of the tip of a glue bottle) Ctrl+A - or the corner of worksheet Ctrl+Home Goes

More information

Homework 1 Excel Basics

Homework 1 Excel Basics Homework 1 Excel Basics Excel is a software program that is used to organize information, perform calculations, and create visual displays of the information. When you start up Excel, you will see the

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

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

Getting the Most from your Microsoft Excel

Getting the Most from your Microsoft Excel Getting the Most from your Microsoft Excel Anne Del Pizzo PATHS, LLC What we will cover What s new in 2007/2010 Conditional formatting Sparklines Pivot Table Slicers Functions Macros Pivot Tables 1 What

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

All Excel Topics Page 1 of 11

All Excel Topics Page 1 of 11 All Excel Topics Page 1 of 11 All Excel Topics All of the Excel topics covered during training are listed below. Pick relevant topics and tailor a course to meet your needs. Select a topic to find out

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

Excel Tips. Contents. By Dick Evans

Excel Tips. Contents. By Dick Evans Excel Tips By Dick Evans Contents Pasting Data into an Excel Worksheet... 2 Divide by Zero Errors... 2 Creating a Dropdown List... 2 Using the Built In Dropdown List... 3 Entering Data with Forms... 4

More information

Microsoft Access Illustrated. Unit B: Building and Using Queries

Microsoft Access Illustrated. Unit B: Building and Using Queries Microsoft Access 2010- Illustrated Unit B: Building and Using Queries Objectives Use the Query Wizard Work with data in a query Use Query Design View Sort and find data (continued) Microsoft Office 2010-Illustrated

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX394 EX407 Data Validation Pages EX410 EX419 VLOOKUP Pages EX176 EX179 EX489 EX500 IF Pages EX172 EX176 EX466 EX489

More information

Learn Ninja-Like Spreadsheet Skills with LESSON 9. Math, Step by Step

Learn Ninja-Like Spreadsheet Skills with LESSON 9. Math, Step by Step EXCELL MASTERY Learn Ninja-Like Spreadsheet Skills with LESSON 9 Doing Math, Step by Step It s Elementary, My Dear Ninja There is a scene in the short story The Crooked Man, where Sherlock Holmes accurately

More information

Key concepts through Excel Basic videos 01 to 25

Key concepts through Excel Basic videos 01 to 25 Key concepts through Excel Basic videos 01 to 25 1) Row and Colum make up Cell 2) All Cells = Worksheet = Sheet 3) Name of Sheet is in Sheet Tab 4) All Worksheets = Workbook File 5) Default Alignment In

More information

Attending delegates will be presented with a Certificate of Attendance upon completion of training.

Attending delegates will be presented with a Certificate of Attendance upon completion of training. Excel Core 2013 This beginners Microsoft Excel course will introduce you to the basic skills needed to use Excel. It starts with the key skills of how to create Excel workbooks and worksheets and navigate

More information

MS Excel How To Use VLOOKUP In Microsoft Excel

MS Excel How To Use VLOOKUP In Microsoft Excel MS Excel 2013 How To Use VLOOKUP In Microsoft Excel Use VLOOKUP function to find data you don t know in a large Excel spreadsheet, by entering a data you know VLOOKUP function contains of arguments in

More information

Introduction to Stata - Session 2

Introduction to Stata - Session 2 Introduction to Stata - Session 2 Siv-Elisabeth Skjelbred ECON 3150/4150, UiO January 26, 2016 1 / 29 Before we start Download auto.dta, auto.csv from course home page and save to your stata course folder.

More information