Excel Tips and Tricks Presented by: Tracee Baker, Business Analyst, TD Ameritrade July 21, 2015 4/3/2019.

Slides:



Advertisements
Similar presentations
How to work with Pivot Tables Step by step instruction.
Advertisements

Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin TECHNOLOGY PLUG-IN T3 PROBLEM SOLVING USING EXCEL.
Excel: Pivot Tables Computer Information Technology Section 6-18.
Calling all Data Geeks! Corey McAfee October 24, 2014 Corey McAfee October 24, 2014.
Microsoft Excel 2010 Chapter 7
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.
Microsoft ® Office Excel ® 2007 Training Get started with PivotTable ® reports [Your company name] presents:
Microsoft ® Office Excel ® 2007 Training Get started with PivotTable ® reports Guangzhou Newelink Technology Co,. Ltd.
1 CA202 Spreadsheet Application Working with Database Data Lecture # 14.
MICROSOFT EXCEL – TRAINING FOR QC DIETETIC INTERNS Stephanie Brooks – Fall 2014.
ACOT Intro/Copyright Succeeding in Business with Microsoft Excel 2010.
LOGO Chapter V Formattings 1. LOGO Overview  Conditional formatting  Working with tables  Filtering  Sorting  Freeze panes  Pivot tables  How to.
Get started with PivotTable reports Make your data work for you Imagine an Excel worksheet of sales figures. It lays out thousands of rows of data about.
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)
COMPREHENSIVE Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering.
PIVOT TABLES AND CHARTS CS1100 Computer Science and its Applications CS1100Pivot tables and charts1.
DAY 9: EXCEL CHAPTER 6 Tazin Afrin September 17,
Microsoft Office Excel 2013 ® ® Abdul Hameed Using Advanced Functions and Conditional Formatting.
Excel: Pivot Tables Exploring Computer Science Lesson Supplemental.
Chapter 6 Creating, Sorting, and Querying a Table
1. 2 Word Processing Word Processing is writing words and sentences on the computer. It is easy to change or move text in a word document. People use.
Lesson 7 – Microsoft Excel 2010 Working with Tables, PivotTables, and PivotCharts.
Excel 2007 Part (3) Dr. Susan Al Naqshbandi
Chapter 12 Creating Formulas that Look Up Values Microsoft Excel 2003.
Spreadsheets What is Excel?. Objectives 1. Identify the parts of the Excel Screen 2. Identify the functions of a spreadsheet 3. Identify how spreadsheets.
RevisionRevision Function in Spreadsheet DATE Returns the serial number of a particular date. Syntax –DATE(year,month,day) year is a number from 1900.
Chapter 10: Working with Large Data Spreadsheet-Based Decision Support Systems Prof. Name Position (123) University Name.
By Martha Nelson Digital Learning Specialist Excel Pivot Tables.
VLOOKUP Function Tech Tuesday January 5, What is VLOOKUP? A Function in Excel (and also in Google Sheets) for finding specific information in.
Creating Interactive Reports Using Excel Pivot Tables
Problem Solving Using Excel
Chapter 2 Analytics on Spreadsheets
MSAA PRESENTS: AN EXCEL TUTORIAL
OCAN Productivity Series:
Contents Introduction Text functions Logical functions
Elena Lazarevska, City of Boulder
Chapter 2 Analytics on Spreadsheets
Chapter 6 Modifying Cell Styles
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
Excel IF Function.
EXCEL AS BUSINESS ANALYSIS TOOL
Exploring Computer Science Lesson Supplemental
2007 MICROSOFT EXCEL INTERMEDIATE
Analyzing Table Data.
VLOOKUP Finds an entry from a vertical array based on a criteria
Excel for EMIS A few of my favorite things
VLOOKUP Finds an entry from a vertical array based on a criteria
Microsoft FrontPage 2003 Illustrated Complete
How To Use VLOOKUP In Microsoft Excel
Managing Multiple Worksheets and Workbooks
Deep Dive Presented by Greg Creech MCAS-I and CompTIA CTT+
VLOOKUP functions Data Analysis.
Advanced Microsoft Excel
PivotTables in Excel (2007)
Operate A Spreadsheet Application Advanced
Going through the Big “D”
Working with Tables, PivotTables, and PivotCharts
Introduction to Computer Applications West Virginia University
Vlookup.
Prepared by: Arlene N. Baratang, Ph.D.
VLookup and HLookup in Microsoft Excel
Topic 8 – Pivot tables and Charts Lesson 1 – Pivot tables
Chapter 6 Lesson 5.
Pivot tables and charts
Spreadsheets Vlookups.
Excel Training FGFOA Annual Conference – January 16, 2019
Assignment resource Working with Excel Tables, PivotTables, and Pivot Charts Fairhurst pp The commands on these slides work with the Week 2 Excel.
Presentation transcript:

Excel Tips and Tricks Presented by: Tracee Baker, Business Analyst, TD Ameritrade July 21, 2015 4/3/2019

A Little Bit About Me Approximately eight years of experience in the Business Analysis roll Insurance Industry Financial Industry Approximately eleven years of business experience (Product Development) Analytic and Business Analysis background used during this time 4/3/2019

Housekeeping Items Have a tendency to talk fast, please let me know if I need to slow down Very casual presentation, so feel free to ask questions along the way I may not have all the answers to your questions – but I am pretty good at eventually figuring things out 4/3/2019

What We Will Review Today Sharing tools that I find useful in excel. VLOOKUP/HLOOKUP functions Different ways to identify data matches Pivot tables Inserting existing documents or pictures to an excel sheet 4/3/2019

VLOOKUP and HLOOKUP Functions 4/3/2019

VLOOKUP Function/Formula VLOOKUP is a VERTICAL (column) search for a value. Using VLOOKUP is similar to looking up a person’s name in a telephone book to get a telephone number. VLOOKUP finds a value in one column, and returns its corresponding value on the same row in another column. 4/3/2019

HLOOKUP Function/Formula HLOOKUP is a HORIZONTAL (row) search for a value. HLOOKUP finds a value in one ROW and returns its corresponding value on the same column in another row. 4/3/2019

VLOOKUP Function/Formula – Exact Match VLOOKUP has 4 parameters What are you looking up? (lookup_value) Where are you looking it up? (table_array) What column has the result? (col_index_num) Close or exact match? (range_lookup) Exact match = FALSE Close match = TRUE or omitted =VLOOKUP(lookup_value, table_array, col_index_num, range_lookup) =VLOOKUP(A2, ‘KitData!$A$2:$C$16 , 3 , FALSE) 1 2 3 4/3/2019

VLOOKUP/HLOOKUP Function/Formula KEY THINGS TO KNOW If FALSE, formula will only find an exact match. In this case, the values in the first column of table_array do not need to be sorted. If there are two or more values in the first column of table_array that match the lookup_value, the first value found is used. If an exact match is not found, the error value #N/A is returned. Example: True =vlookup(lookup_value, table_array, col_index_num, false) If TRUE or omitted, an exact or approximate match is returned. If an exact match is not found, the next largest value that is less than lookup_value is returned. Example: True =vlookup(lookup_value, table_array, col_index_num, true) Example: Omitted =vlookup(lookup_value, table_array, col_index_num) NOTE: The values in the first column of table_array must be placed in ascending sort order; otherwise, VLOOKUP may not give the correct value. You can put the values in ascending order by choosing the Sort command from the Data menu and selecting Ascending. 4/3/2019

VLOOKUP/HLOOKUP Function/Formula KEY THINGS TO KNOW Use “$” in table array portion (F4) of formula to keep table data stagnant when you copy formula. These will automatically be included when your array is located in a different spreadsheet (aka workbook) =VLOOKUP(A2, ‘KitData!$A$2:$C$16 , 3 , FALSE) The first column of your table_array must be the column where you are looking for your lookup_value. 4/3/2019

VLOOKUP/HLOOKUP Function/Formula Let’s walk through a couple of live examples. 4/3/2019

Finding Data Matches 4/3/2019

Different Ways to Identify Data Matches MATCH Formula/Function Conditional Formatting 4/3/2019

MATCH Function/Formula MATCH has 3 parameters What are you looking up? (lookup_value) Where are you looking it up? (lookup_array) Close or exact match? (match_type) Less than <= 1 Exact match = 0 Greater than >= -1 Value returned is the relative position of that item in the target range. =MATCH(lookup_value, lookup_array, range_lookup) =MATCH(A2, $C$2:$C$16, 0) 4/3/2019

Conditional Formatting With your data set highlighted, from the ‘HOME’ ribbon simply click: Conditional Formatting Highlight Cell Rules Duplicate Values 4/3/2019

Conditional Formatting Duplicate Values Dialog Box Can find either the Duplicate or Unique values Select or set the formatting to highlight the similarities/differences 4/3/2019

Different Ways to Identify Data Matches Let’s walk through a couple of live examples. 4/3/2019

Pivot Tables 4/3/2019

Pivot Tables There are not as painful as you may think….. https://www.youtube.com/watch?v=n67RYI_0sc0 4/3/2019

Pivot Tables Pivot tables allow you to quickly summarize and analyze large amounts of data in lists and tables -- independent of the original data layout in your spreadsheet -- by dragging and dropping columns to different rows, columns, or summary positions. Among other functions, a pivot-table can automatically sort, count, total or give the average of the data stored in one table or spreadsheet, without having to write a single formula. 4/3/2019

Pivot Tables Select the data range that you wish to be included in your Pivot Table From your ‘INSERT’ ribbon click PivotTable. Within Create PivotTable Dialog Box - Select to place pivot table in either: New Worksheet Existing Worksheet (this will prompt you to select the location of the pivot table NOTE: All columns must have a header. 4/3/2019

Pivot Tables Select the data range that you with to be included in your Pivot Table From your ‘INSERT’ ribbon click PivotTable. Within Crate PivotTable Dialog Box - Select to place pivot table in either: New Worksheet Existing Worksheet (this will prompt you to select the location of the pivot table Drag and drop the fields to the Row Labels and Values boxes 4/3/2019

Pivot Tables Quickly and easily you have a table that illustrates the sum of sales by product. 4/3/2019

Pivot Tables To format your sales numbers simply: Right click within the column you wish to format Select Number Format Format Cells Dialog Box will allow you to set your preferred number format 4/3/2019

Pivot Tables Let’s walk through a couple of live examples. 4/3/2019

Inserting Existing Documents Into Excel 4/3/2019

Inserting Existing Documents Into Excel From your ‘INSERT’ ribbon click Object. 4/3/2019

Inserting Existing Documents Into Excel Within Object Dialog Box - Select Create From File. Select Browse… to choose the folder in which the document you wish to insert is located. Check the Display as Icon box Select OK 4/3/2019

Inserting Existing Documents Into Excel Let’s walk through a live example. 4/3/2019

Useful Links Keyboard Shortcuts Excel 2007 Excel 2010 Excel 2013 4/3/2019

Additional Questions ? 4/3/2019

Thank You! 4/3/2019