Tiffany Lau Emily Nguyen David Mangold Xiang Zhang

Slides:



Advertisements
Similar presentations
Cell Referencing Absolute Reference: A reference that does not change when copied. It is specified with a dollar sign in front of both the row and column.
Advertisements

Pradeep Velugoti Lakshman Tallam.  Type in the month name “January” in any cell say A1.  Now drag the fill handle to the right to select the range (Do.
Spreadsheet Review Computer Systems Test 50 Points: T/F; MC; Fill in; Loan Am.
MIS: Chapter 14 Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS (Separate ppt on REACH.louisville.edu) All.
BUS1MIS Management Information Systems Semester 1, 2012 Excel: Business Problem Solving Week 4 Lecture 2.
Pre-defined System Functions Simple IF & VLOOKUP.
Tutorial 7: Using Advanced Functions and Conditional Formatting
Uses for Truth Tables Determine the truth conditions for any compound statementDetermine the truth conditions for any compound statement Determine whether.
Pradeep Velugoti Lakshman Tallam.  Type in the month name “January” in any cell say A1.  Now drag the fill handle to the right to select the range (Do.
Table LookUp. Data Table (File, List) A collection of records and each record contains fields. Lookup example: – Given EmpID, retrieve salary.
1 CA202 Spreadsheet Application Working with Database Data Lecture # 14.
CS1100: Computer Science and Its Applications Table Lookup and Error Processing Martin Schedlbauer, Ph.D.
Tutorial 8: Working with Advanced Functions
Chapter 6 Advanced Functions Copyright 2005 Radian Publishing Co.
LOGO Chapter VI Advanced Functions 1. LOGO Overview  INTRODUCTION  NESTED FUNCTIONS  LOOKUP  VLOOKUP  COUNTIF  SUMIF  IF  ROUND  THE PMT, IPMT.
Advanced Spreadsheet Skills for Game Designers
1 Use a cell value as a KEY to a table to find and return a specific element to another cell or use in a calculation.
Welcome to Quiz Game By S.2B Hung Chun Ho (15). Question No. 1  How to add up the data?
REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
Unit 2 – Spreadsheets Spreadsheets Vlookups.
# 1# 1 Error Messages, VLookup, Practical Tips What use is VLookup? How do you error check in Excel? CS 105 Spring 2010.
Computer Science 1000 Spreadsheets V Permission to redistribute or use these slides is strictly prohibited without permission.
REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
More Spreadsheets Range Formulas & Empty Cells Logical Functions Lookup Functions.
Chapter 12 Creating Formulas that Look Up Values Microsoft Excel 2003.
Project 2 Completing a Three Dimensional Workspace Using Logical and Lookup Functions Jason C. H. Chen, Ph.D. Professor of Management Information Systems.
Intermediate Excel 2013 Gareth Johns IT Skills Development Advisor.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Lookup Functions VLOOKUP and HLOOKUP. VLOOKUP  VLOOKUP(lookup_value,table_array,c ol_index_num,range_lookup)  Range_lookup argument If an exact match.
1 CSE 2337 Chapter 5 Retrieving Data with Lookups.
RevisionRevision Function in Spreadsheet DATE Returns the serial number of a particular date. Syntax –DATE(year,month,day) year is a number from 1900.
CIS 300- Professor Im Test #2. MICROSOFT ® EXCEL ® LOOKUP FUNCTIONS Syntax: =VLOOKUP(lookup_value,table_array,col_index_num,[range_lookup]) Arguments:
LOOKUP FUNCTIONS Excel Lesson 10. LOOKUP FUNCTIONS Allow the user to find data in other cells in the spreadsheet and place them in the current cell VLOOKUP:
VBA Programming for Excel Review Excel Objects Excel Methods Identifying Specific Cells Review Functions for Excel Custom Menus.
Excel Tips and Tricks Leda Voigt Green River College.
OV Copyright © 2011 Element K Content LLC. All rights reserved. Calculating Data with Advanced Formulas  Apply Cell and Range Names  Calculate.
VLOOKUP Function Tech Tuesday January 5, What is VLOOKUP? A Function in Excel (and also in Google Sheets) for finding specific information in.
MS-EXCEL PART 3. Use data validation in Excel to make sure that users enter certain values into a cell. Data Validation Example In this example, we restrict.
CIS300 Test 3 Review Reinhardt. © 2009 Dale McIntosh. All Rights Reserved. Slides are Available at: uter/cistestreviews.html.
V- Look Up. Lookup Tables Often, we need to retrieve data that is stored in a table For example, consider these metals and their properties: Metal Modulus.
DEVRY BIS 155 W EEK 1 Q UIZ D ATA A NALYSIS WITH S PREADSHEETS WITH L AB Check this A+ tutorial guideline at
David Mangold Xiang Zhang Tiffany Lau Emily Nguyen
Relative, Absolute, & Mixed References
Microsoft Excel VLOOKUP Deborah Trujillo Instructional Technology
2007 MICROSOFT EXCEL INTERMEDIATE
Analyzing Table Data.
VLOOKUP Finds an entry from a vertical array based on a criteria
CS1100: Computer Science and Its Applications
Yang Song Rick Jantz Jihye Chun Kyungjin Lee
VLOOKUP Finds an entry from a vertical array based on a criteria
How To Use VLOOKUP In Microsoft Excel
Excel: VLOOKUP.
VLOOKUP functions Data Analysis.
ITI 305 MS Excel Level III 11/20/2018
MS Excel 2016 Level III 12/6/2018 Copyright © Carl M. Burnett.
MIS2502: Data Analytics ICA #4. ETL - Excel Basics
Vlookup.
MIS2502: Data Analytics ETL - Excel Basics
VLookup and HLookup in Microsoft Excel
V- Look Up.
MS Excel 2016 Level III Montgomery County Government (MCG)
Excel Tips and Tricks Presented by: Tracee Baker, Business Analyst, TD Ameritrade July 21, /3/2019.
Topic 5 – Table Lookup Lesson 3 - Advanced Lookup
Aniko Balogh CEU Computer & Statistics Center
REACH CRC Professor Manni
Create a nested v look up
Lesson 5 Topic 1 – Table Lookup and Error Handling
Spreadsheets Vlookups.
VBA Programming for Excel
Presentation transcript:

Tiffany Lau Emily Nguyen David Mangold Xiang Zhang VLookUp, Match, Offset Tiffany Lau Emily Nguyen David Mangold Xiang Zhang

VLOOKUP Use: Formula: “Looks up” and displays the value of a cell =Vlookup(“Value”, Parameters, Column, False/True) False: Exact search True: Approximate search

VLOOKUP

MATCH Use: Formula: Displays the row where a value can be found =Match(“#”, Parameters, [1, 0, or -1]) = Match (“Value*/?”, Column, 0) 1: Largest value </= input value 0: Exact value -1: Smallest value >/= input value

MATCH

MATCH

OFFSET Use: Displays a cell value at the intersection of a column and row input Formula: =Offset(Corner Cell Reference, Row, Column) Row: Row # - Cell Reference Row # Column: Column # - Cell Reference Column #

OFFSET