2007 MICROSOFT EXCEL INTERMEDIATE

Slides:



Advertisements
Similar presentations
Lesson 3 Working with Formulas.
Advertisements

Intermediate Formulas & Functions Instructor: Rachel Baltus.
Excel The purpose of a spreadsheet is to solve problems involving numbers. A worksheet consists of columns and rows that intersect to form cells. Each.
Review Ch. 15 – Spreadsheet and Worksheet Basics © 2010, 2006 South-Western, Cengage Learning.
With Microsoft ® Excel 2010© 2011 Pearson Education, Inc. Publishing as Prentice Hall1 GO! with Microsoft ® Excel 2010 Chapter 1 Creating a Worksheet and.
 Microsoft Excel is an electronic spreadsheet.  As with a paper spreadsheet, you can use Excel to organize your data into rows and columns and to perform.
Microsoft Office XP Microsoft Excel
Pasewark & Pasewark 1 Excel Lesson 4 Entering Worksheet Formulas Microsoft Office 2007: Introductory.
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 1 1 Microsoft Office Excel 2003.
Collin College Excel Exam Review. True In Excel worksheets, rows are designated using numbers while columns are designated using letters.
Excel Lesson 4 Entering Worksheet Formulas
Chapter 5 Creating, Sorting, and Querying a Table
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
1 Excel Lesson 4 Entering Worksheet Formulas Microsoft Office 2010 Introductory Pasewark & Pasewark.
Excel Web App By: Ms. Fatima Shannag.
Tutorial 8: Working with Advanced Functions
COMPREHENSIVE Excel Tutorial 8 Developing an Excel Application.
FIRST COURSE Integration Tutorial 3 Integrating Word, Excel, Access, and PowerPoint.
Using a Spreadsheet Chapter 5.
COMPREHENSIVE Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering.
Excel Projects 5 & 6 Notes Mr. Ursone. Excel Project 5: Sorting a List  Sorting: Arranging records in a specific sequence  The Sort command is on the.
CHAPTER 13 Creating a Workbook Part 2. Learning Objectives Work with cells and ranges Work with formulas and functions Preview and print a workbook 2.
® Microsoft Office 2010 Excel Tutorial 2: Formatting a Workbook.
Learning Objectives What is a spreadsheet and what is the difference between a spreadsheet and a worksheet? Start Excel, open an existing spreadsheet,
Microsoft Office Excel 2013 ® ® Abdul Hameed Using Advanced Functions and Conditional Formatting.
Chapter 15: Spreadsheet and Worksheet Basics © 2010, 2006 South-Western, Cengage Learning.
Information Processing Notes for beginning our Excel Unit.
© 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.
A lesson approach © 2011 The McGraw-Hill Companies, Inc. All rights reserved. a lesson approach Microsoft® Excel 2010 © 2011 The McGraw-Hill Companies,
LOGO Chapter II Entering Excel Formulas and Formatting Data Friday, November 20, 2015.
Excel Web App By: Ms. Fatima Shannag.
Spreadsheets: Part I Creating a Worksheet in MS Excel
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
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.
Microsoft® Excel Create an Excel table. 1 Work with the Table Tools Design tab. 2 Sort and filter records in a table. 3 Identify structured references.
Microsoft Excel Prepared by the Academic Faculty Members of IT.
 The term “spreadsheet” covers a wide variety of elements useful for quantitative analysis of all kinds. Essentially, a spreadsheet is a simple tool.
Microsoft Excel 2007 Noris Bt. Ismail Faculty of Information and Communication Technology Tel : (Ext 8408) BCOMP0101.
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.
Excel Tutorial 8 Developing an Excel Application
MSAA PRESENTS: AN EXCEL TUTORIAL
GO! with Microsoft Office 2016
Contents Introduction Text functions Logical functions
Elena Lazarevska, City of Boulder
Chapter 2 Analytics on Spreadsheets
Using Advanced Functions and Conditional Formatting
Chapter 6 Modifying Cell Styles
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
Microsoft Excel VLOOKUP Deborah Trujillo Instructional Technology
Microsoft Excel.
Excel for EMIS A few of my favorite things
Microsoft Excel.
How To Use VLOOKUP In Microsoft Excel
Managing Multiple Worksheets and Workbooks
MS-Office It is a Software Package It contains some programs like
Creating a Workbook Part 2
Advanced Microsoft Excel
Lesson 4 Using Basic Formulas
Operate A Spreadsheet Application Advanced
Chapter 5 Microsoft Excel Window
Excel Lesson 4 Entering Worksheet Formulas
Excel Tips and Tricks Presented by: Tracee Baker, Business Analyst, TD Ameritrade July 21, /3/2019.
Learning Objectives: Creating a new Table Style
Intro to Excel CSCI-150.
Chapter 6 Modifying Cell Styles
MS Excel – Analyzing Data
Lesson 13 Working with Tables
Presentation transcript:

2007 MICROSOFT EXCEL INTERMEDIATE CONCEPTS Matthew Jordan Jordan@TCCSA.Net

CELL ADDRESSING RELATIVE ABSOLUTE MIXED

RELATIVE ADDRESSING A relative address in a formula will change when it is copied to another location on the worksheet. Example =d4 + e4

ABSOLUTE ADDRESSING An absolute address in a formula does not change when it is copied to another location on the worksheet. The “$” sign locks the row and column. Example =$d$4 + $e$4

MIXED ADDRESSING A mixed address in a formula allows a row or a column to change when it is copied to another location on the worksheet. The “$” sign locks the row or column. Example =$d4 + $e4

MULTI-DIMENSIONAL REFERENCES Formulas can span multiple worksheets within a workbook An ‘!’ in a reference separates a sheet name from a cell address Ex) =Config!A3

VLOOKUP Formula begins with an equal “=“ sign VLOOKUP searches for a value in the left-most column of a table, and then returns a value in the same row from a column specified in the table. Use Insert Function Dialog Box

VLOOKUP Example VLOOKUP(lookup_value,table,col_index_num,range_lookup) lookup_value - Refers to the cell that contains the value you want to look for. table_array - Refers to the range that contains both the data you are looking for, and the data you want to return. col_index_num - Refers to the column number within the table array range that houses the data you want returned. range_lookup - This value specifies whether you want VLOOKUP to find an exact match or an approximate match. If TRUE or omitted, an approximate or exact match can be returned. For this to work properly, the values in the first column of table_array must be placed in ascending sort order. If FALSE, VLOOKUP will find only an exact match.

LOGIC TESTING Performs an action based on the value of true or false If tests can be nested 64 levels deep Operators Example =If(A5=3,”OK”,”Error”) > = < >= <> <=

LOGIC CALCULATIONS SUMIF COUNTIF

SUMIF THE SUM CALCULATION IS PERFORMED BASED ON A LOGIC STATEMENT SUMIF(range,criteria,sum_range) EXAMPLE (=SUMIF(G4:G8,”>=30”,H4:H8)

COUNTIF THE COUNT CALCULATION IS PERFORMED BASED ON A LOGIC STATEMENT COUNTIF(range,criteria) EXAMPLE (=COUNTIF(h4:h8,”RETIRE”)

CONDITIONAL FORMATTING Conditional Formatting involves formatting based on a chosen condition Select the Home tab from the ribbon and Conditional Formatting from the Styles section STRESSED?

PASTE SPECIAL After copying data, you can use the Paste Special command (Home tab >> select paste dropdown arrow) to paste specific cell contents or attributes such as formulas, formats, or comments from the Clipboard into an Excel worksheet. 

PASTE SPECIAL Click this option To All Paste all cell contents and formatting Formulas Paste only the formulas as entered in the formula bar Values Paste only the values as displayed in the cells. Formats Paste only cell formatting Comments Paste only comments attached to the cell Validation Paste data validation rules for the copied cells to the paste area. All except borders Paste all cell contents and formatting applied to the copied cells except borders. Column widths Paste the width of one column or range of columns to another column or range of columns. Formulas and number formats Paste only formulas and number formatting options from the selected cells Values and number formats Paste only values and number formatting options from the selected cells.

PASTE SPECIAL Click this option To None Paste the contents of the copy area without a mathematical operation. Add Add the values in the copy area to the values in the paste area. Subtract Subtract the values in the copy area from the values in the paste area. . Multiply Multiply the values in the paste area by the values in the copy area. Divide Divide the values in the paste area by the values in the copy area.

MAIL MERGE Use mail merge when you want to create a set of documents that are essentially the same but where each document contains unique elements. We will work with MS Word and Excel.

MAIL MERGE Three Parts: Main Document – Consists of data that is the same for all documents and Data source Merge Fields Data Source – Unique data in each document Finished Set of Documents – Individual letters

Mail Merge Steps Select Document Type Select Starting Document Select Recipients Write your Letter Preview your Letters Complete the Merge