MIS2502: Data Analytics ETL - Excel Basics

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

1. Write an Excel text function in cell Company Data!A4, which may be copied down, to string together the first and last name with only the first letter.
MIS: Chapter 14 Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS (Separate ppt on REACH.louisville.edu) All.
Pre-defined System Functions Simple IF & VLOOKUP.
Calling all Data Geeks! Corey McAfee October 24, 2014 Corey McAfee October 24, 2014.
Tutorial 7: Using Advanced Functions and Conditional Formatting
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.
1 CA202 Spreadsheet Application Working with Database Data Lecture # 14.
Turning Numbers Into Knowledge Nate Moore MBA, CPA, CMPE.
Tutorial 8: Working with Advanced Functions
Spreadsheets Objective 6.02
1CP102_module 3: spreadsheet2 More features in Excel Selection: a cell, a range, multiple ranges Name a range: to give name to a selected range or multiple.
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
Chapter 6 Advanced Functions Copyright 2005 Radian Publishing Co.
ADVANCED EXCEL FORMULAS 1 Lesson 8. Named Ranges Name a cell or a range of cells Can make formulas easy to understand =SUM(Sales) instead of =SUM(A2:A16)
Computer Science 1000 Spreadsheets II Permission to redistribute these slides is strictly prohibited without permission.
EXCEL FUNCTIONS MIS THE BASICS  LEFT(), RIGHT(), MID()  Keep X characters from string  CONCATENATE()  Join two strings together  TRIM()  Drop.
COMPREHENSIVE Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering.
Relational Lists.txt Excel can import multiple file types.txt Excel can import multiple file types.
Spreadsheet Formulae Some Common Functions =IF(condition, true, false) Returns one value if a condition you specify evaluates to TRUE and another value.
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.
Unit 9: Assignment 1 Figure 1, Spreadsheet. Matt Pratley
Powerpoint Templates Page 1 Powerpoint Templates MS Excel Functions.
REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
Unit 2 – Spreadsheets Spreadsheets Vlookups.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
Advanced TechShop D.A. Whatley. Agenda IF, THEN, and AND formulas VLOOKUP.
REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
Chapter 12 Creating Formulas that Look Up Values Microsoft Excel 2003.
Spreadsheets COE 201- Computer Proficiency. Basic Interface Excel Book = Word Document Every book can contain up to 255 different sheets.
Advanced TechShop D.A. Whatley. Agenda IF, THEN, and AND formulas VLOOKUP Recording/Implementing Macros.
DECISIONS AND FUNCTIONS Module 4.2. DECISIONS AND FUNCTIONS Module 4.2.
Intermediate Excel 2013 Gareth Johns IT Skills Development Advisor.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
RevisionRevision Function in Spreadsheet DATE Returns the serial number of a particular date. Syntax –DATE(year,month,day) year is a number from 1900.
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:
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.
VLOOKUP HLOOKUP INDEX + MATCH
MSAA PRESENTS: AN EXCEL TUTORIAL
Contents Introduction Text functions Logical functions
Elena Lazarevska, City of Boulder
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
Microsoft Excel VLOOKUP Deborah Trujillo Instructional Technology
Excel IF Function.
2007 MICROSOFT EXCEL INTERMEDIATE
VLOOKUP Finds an entry from a vertical array based on a criteria
Excel for EMIS A few of my favorite things
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
Welcome! Open Firefox Go to: usability-sf.
VLOOKUP functions Data Analysis.
ITI 305 MS Excel Level III 11/20/2018
Introduction to the Case
MS Excel 2016 Level III 12/6/2018 Copyright © Carl M. Burnett.
MIS2502: Data Analytics ICA #4. ETL - Excel Basics
Excel: Formulas & Functions III Participation Project
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
VLookup and HLookup in Microsoft Excel
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.
REACH CRC Professor Manni
Spreadsheets Objective 6.02
Lesson 5 Topic 1 – Table Lookup and Error Handling
Spreadsheets Objective 6.02
Spreadsheets Vlookups.
in Excel Instructor: Zhe He Department of Computer Science
Advanced Topics in Excel for School Assessment Coordinators
Presentation transcript:

MIS2502: Data Analytics ETL - Excel Basics

Excel References Many Excel formulas refer to cells or ranges of cells. For example, the simple formula =A1+B1 refers to cells A1 and B1 There are two types of cell references: relative and absolute. Relative and absolute references behave differently when copied and filled to other cells.

Relative Reference When copied across multiple cells, they change based on the relative position of rows and columns. By default, all cell references are relative references. Example:

Absolute Reference When copied across multiple cells, cell references remain constant Example:

Mixing Relative and Absolute References Using absolute referencing for the column and relative referencing for the row: Using relative referencing for the column and absolute referencing for the row:

Basic Functions Return the number of characters in a text string LEN() Return a specific number of characters from a text string LEFT(), RIGHT(), MID() Join two text strings together CONCATENATE() Check if a condition is met IF()

LEN() =LEN(value) Example… returns the number of characters contained in a string value Example… LEN(123) and LEN(“DOG”) both return 3.

LEFT(), RIGHT() or MID() Returns n characters from the start of a string value Example: LEFT(“HELLO”, 2) will return “HE”. =LEFT(value, n) Returns n characters from the end of a string value Example: RIGHT(“HELLO”, 2) will return “LO”. =RIGHT(value, n) Returns n characters from the middle of the text string given the index of first character to start at Example: MID("HELLO",2,3) will return “ELL” =MID(value, start_index, n)

CONCATENATE() =CONCATENATE(value1, value2…) Example… Combines two or more string values or data in cells Example… CONCATENATE(A2, “, HELLO”) will append the string “, HELLO” to the end of whatever is in cell A2. Like this:

IF() =IF(condition, value_if_true, value_if_false) Example… condition = conditional statement (e.g., A2 > 3, C5 = “text”) value_if_true = value to return if condition is met value_if_false = value to return if condition is not met Example… IF(4 > 5, “red”, “yellow”) would give you a result of yellow

VLOOKUP() Match values and get associated fields Similar to SQL joins =VLOOKUP(lookup_value, table_array, column_index, range_lookup) lookup_value = value that you’re looking for table_array = the table where you’re going to do your search (e.g., A2:E5) column_index = column number to return from matched record range_lookup = TRUE for approximate matches and FALSE for exact matches

VLOOKUP() =VLOOKUP(lookup_value, table_array, column_index, range_lookup) Example Hourly Pay Sales Team Hours Worked with Vlookup Functions: Sales Team Hours Worked with Vlookup Results: