Lesson 2 - Multi-Dimensional References

Slides:



Advertisements
Similar presentations
Functions S S T : S P R E A D S H E E T S SST 5 Spreadsheet 5 Function.
Advertisements

Introduction to Powerschool and Excel Jared Schatz Staff Accountant (509)
Press Esc to Exit ©2011 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in.
Enhancing FRx Reports by Integrating Spreadsheet Data Elisa R. Vick
CTS130 Spreadsheet Lesson 20 Data Consolidation. Consolidation is a process in which data from multiple worksheets or workbooks is combined and summarized.
Microsoft Excel 2010 ® ® Tutorial 6: Managing Multiple Worksheets and Workbooks.
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 1 1 Microsoft Office Excel 2003.
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 6 1 Microsoft Office Excel 2003 Tutorial 6 – Working With Multiple Worksheets.
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 2 1 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
1 CS110: Lecture 2 Spreadsheets Prepared by Fred Annexstein University of Cincinnati CC Some rights reserved Today’s Topics Basics of Excel Spreadsheets.
VLOOKUP Better if we have more than two options to select from Corresponding letter grade of numeric grade Must have an accompanying lookup table VLOOKUP(x,y,z)‏
Referring to Cells in Other Worksheets and Workbooks Referring to Cells in Different Worksheets and Workbooks, Slide 1Copyright © 2004, Jim Schwab, University.
1 Excel Lesson 4 Entering Worksheet Formulas Microsoft Office 2010 Introductory Pasewark & Pasewark.
1 After completing this lesson, you will be able to: Format numeric data. Adjust the size of rows and columns. Align cell content. Create and apply conditional.
ACOT Intro/Copyright Succeeding in Business with Microsoft Excel 2010.
Common formulas An Excel formula always begins with an equal sign (=). Create a formula by combining numbers, cell references, arithmetic operators, and/or.
CHAPTER 13 Creating a Workbook Part 1. Learning Objectives Understand spreadsheets and Excel Enter data in cells Edit cell content Work with columns and.
Using Advanced Formatting and Analysis Tools. 2 Working with Grouped Worksheets: Grouping Worksheets  Data is entered simultaneously on all worksheets.
PIVOT TABLES AND CHARTS CS1100 Computer Science and its Applications CS1100Pivot tables and charts1.
With Microsoft ® Excel e© 2013 Pearson Education, Inc. Publishing as Prentice Hall1 Excel 2010 Chapter 10 Using Functions, Creating Tables, and Managing.
Excel Project 2 Formulas, Functions, and Formatting.
Course ILT Spreadsheet structure Unit objectives Enter labels and values; select a range; replace cell contents; undo or redo actions; and move, copy or.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. WORD 2007 M I C R O S O F T ® THE PROFESSIONAL APPROACH S E R I E S Lesson 15 Advanced Tables.
Unit 5 Spreadsheets 5.07 AutoSum Button, Absolute/Relative Cell Reference.
Formatting WorksheetsFormatting Worksheets Lesson 7.
XP 1 Microsoft Office Excel 2003 Working With Formulas and Functions.
Page Designer Storyboard J. A. Fitzpatrick December 2004.
XP 1 ﴀ New Perspectives on Microsoft Office 2003, Premium Edition Excel Tutorial 2 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
1 CA202 Spreadsheet Application Focusing on Specific Data using Filters Lecture # 5.
Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition Lesson 18 Getting Started with Excel Essentials 1 Morrison / Wells / Ruffolo.
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.
Lesson 12: Working with Multiple Worksheets. Contents.
Exploring Office Grauer and Barber 1 Committed to Shaping the Next Generation of IT Experts. Chapter 1 – Introduction to Excel: What is a Spreadsheet?
Creating a Workbook Part 1
Spreadsheet Engineering
MSAA PRESENTS: AN EXCEL TUTORIAL
Formulas, Functions, and other Useful Features
Chapter 2 Using Spreadsheets.
Editing an Excel Worksheet
Formatting a Worksheet
2007 MICROSOFT EXCEL INTERMEDIATE
Tutorial 6: Managing Multiple Worksheets and Workbooks
Lessons Vocabulary Excel 2016.
After completing this lesson, you will be able to:
Unit 42 : Spreadsheet Modelling
Advanced Excel Functions Grouping Worksheets
Statistical Fundamentals: Using Microsoft Excel for Univariate and Bivariate Analysis Alfred P. Rovai Getting Started PowerPoint Prepared by Alfred P.
ITEC 1001 Test 3 Review 11/8/2018.
Statistical Analysis with Excel
Lesson 4 Using Basic Formulas
Statistical Analysis with Excel
Lesson 18 Getting Started with Excel Essentials
Excel Formulas, Macros & More
After completing this lesson, you will be able to:
Absolute and Relative cell referencing
Vlookup.
Spreadsheet/Worksheet
Lesson 20 Creating Formulas and Charting Data
Navya Thum January 23, 2013 Day 3: MICROSOFT EXCEL Navya Thum January 23, 2013.
Topic 5 – Table Lookup Lesson 3 - Advanced Lookup
Topic 2 Lesson 1 –Excel Basics
Lesson 1 - Automating Tasks
Lesson 2: Cell References
Lesson 1 - Visualizing Dependencies
Intro to Excel CSCI-150.
Using Formulas.
Mathematical Formulas and Excel
Lessons 1 & 2: A Pancake Recipe
Exploring Microsoft Excel 2003
Presentation transcript:

Lesson 2 - Multi-Dimensional References Topic 4: Referencing Lesson 2 - Multi-Dimensional References

Lesson Objectives Upon completion of this lesson, you will be able to: reference cells across worksheets and files define 3D cell ranges transpose cell ranges use MATCH and OFFSET to build more flexible models

Referencing Cells Formulas and functions generally contain references to cells containing values. References can be: 2D references with column and row, e.g., C11, or KK32 3D references with column, row, and worksheet, e.g., Categories!C3 4D references with column, row, worksheet, and file, e.g., [Budgets]Categories!C4

Cell Reference Format Each cell reference uses this canonical format: To reference a range across cells in the same worksheet: To reference the same cell across multiple worksheets: =[FileName]Worksheet!Cell =[FileName]Worksheet!StartCell:EndCell =[FileName]Worksheet1:WorkSheetN!Cell

File Path Names Be sure to only use the file name in your file reference rather than the full path, i.e., do this [otherFile.xlsx]Worksheet!B4 instead of ["c:\users\martin.s\otherFile.xlsx"]Worksheet!B4 The reason is that otherwise if your files are moved to a different folder, the reference will no longer work. Of course, if the file is always in the same folder then an absolute path reference is appropriate.

Entering Multi-Dimensional References A multi-dimensional reference can be typed in using the format shown or selected: in the cell into which the reference should be placed, enter = open the file and/or worksheet click on the cell or range to be referenced and press ENTER

Transposing Cell Ranges Often a worksheet is in the "wrong" layout and columns should be in rows and vice versa. To "transpose" rows into columns and vice versa, copy the cells and then do a "Paste Special" with Transpose.

CS Principle The OFFSET Function The OFFSET function returns a range of cells that is "offset" a specified number of rows and columns from a starting cell. Combining OFFSET with MATCH can help build more flexible models. =OFFSET(reference, rows, columns, [ height][, width]) reference -- starting cell rows -- number of rows from the starting cell columns -- number of columns from the starting cell height -- the height of the range number of rows width -- the width of the range number of columns B4:B6 are literal strings. =OFFSET(A2,3,1) Returned by OFFSET(A2,3,1) Computer Science Application: This is a "relative" pointer reference to memory.

The MATCH Function The MATCH function looks up a value in a cell range and returns the relative position of the value within the range. Computer Science Application: This is a "binary search" and the lookup range must be sorted unless you specify a match type of 0. =MATCH(B7,A1:A5,0)

An Example: Flexible Modeling B1 is changing, B2 must reflect that change. =SUM(OFFSET(A5,MATCH(B1,A6:A12,0),1,1,4))

Dependencies Visualized

Restricting Input with Dropdown Lists To avoid data entry errors, use dropdown lists: create a named range of the values in the dropdown list select the cell in which the dropdown should appear navigate to Data | Data Validation select List from the Allow list enter = and the named range

Lesson Summary In this lesson you learned how to: create 3D and 4D cell ranges transpose cell ranges work with relative cell references

Questions?