Excel Basics Week 3.

Slides:



Advertisements
Similar presentations
Lesson 3 Working with Formulas.
Advertisements

Formulas, Ranges, and Functions. Formulas n Formulas perform operations such as addition, multiplication, and comparison on worksheet values. n Formulas.
Digital Communication Systems
Exploring Excel 1. Introduction to Microsoft Excel: What is a Spreadsheet? What else can Excel do? Excel is a spreadsheet program.
 Easy to create tables in Word  Advantages to using Excel › Use charts to represent data in graphic form › Import data from text or databases › Analyze.
Mr Shum Spreadsheets eBooklet. Key Words Key Word CellAn individual box on a spreadsheet RowCells going across in an horizontal line. All rows have a.
Spreadsheets Objective 6.02
MS Excel Relative and absolute addresses Name range Comments PivotTables Data Validation Data Auditing Tracing Conditional function IF IS functions Conditional.
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
Last Week: Excel 101 with Prof. Bliley: Workbooks, worksheets, rows, columns Cells: Text, Value, Formulas Formulas, Ranges OK? Survive Alive? Questions?
Microsoft Excel Diane M. Coyle Spring 2009 CS 105.
Introduction to Excel, Word and Powerpoint Developing Valuable Technology Skills! Shawn Koppenhoefer Training in Research in Reproductive Health/Sexual.
With Microsoft Excel 2007 Comprehensive 1e© 2008 Pearson Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Excel 2007 Comprehensive.
Instructions To use this template: –for each slide write the correct answer on the orange bar first –choose which option (A,B,C or D) and make sure you.
Formulas and Functions 1 Microsoft Office 2010 Excel Seminar Xander Jackson.
 What is a formula in Excel?  A formula is statement written by the user to be calculated. Formulas can be as simple or as complex as the user wants.
Exploring Excel 1. Introduction to Microsoft Excel: What is a Spreadsheet? What else can Excel do? Calculations – Inventory Lists.
SPREADSHEET BASICS SPREADSHEET BASICS What are the benefits of using a spreadsheet to solve a problem?
Spreadsheet Lesson 2 Class 8E. Lesson Objective To understand what a formula & function is. To understand the difference between formulas and functions.
Advanced Excel Microsoft Excel Excel - Overview Calculator Create budgets, analyze results Perform Financial Analysis Creating charts Organizing.
INTRODUCTION TO FORMULAS AND FUNCTIONS 1 Nolan Tomboulian Tomboulian.wikispaces.com.
Information Processing Notes for beginning our Excel Unit.
Unit 4, Lesson 4 Using Function Formulas. Objectives Understand function formulas. Understand function formulas. Use the Average and Sum functions. Use.
Equation Jeopardy Add Mixed Multiply/ Divide Fractions Q $100 Q $200 Q $300 Q $400 Q $500 Q $100 Q $200 Q $300 Q $400 Q $500 Final Jeopardy Subtract.
What is a spreadsheet? Spreadsheet Basics © All Rights Reserved
CS1100: Computer Science and Its Applications Building Flexible Models in Microsoft Excel Martin Schedlbauer, Ph.D.
Foundation Excel 2013 Gareth Johns & Paul Mugleston 1.
A spreadsheet is a programme which stores data in a grid. Many people use spread sheets as an online calculator instead of working lots of calculations.
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
Spreadsheets What is Excel?. Objectives 1. Identify the parts of the Excel Screen 2. Identify the functions of a spreadsheet 3. Identify how spreadsheets.
Customization, Calculations and Charts Myra Whittemore for Blackbaud, Inc. 09/16/2011.
Mathematical Formulas and Excel
Introduction to spreadsheets IT 8/9 Edmond Chin Microsoft Excel.
An electronic document that stores various types of data.
 The term “spreadsheet” covers a wide variety of elements useful for quantitative analysis of all kinds. Essentially, a spreadsheet is a simple tool.
COM: 111 Introduction to Computer Applications Department of Information & Communication Technology Panayiotis Christodoulou.
Pages Appendix B: Review of ExcelChapter 3 Market Trends & Analysis IBM 320 CAL POLY POMONA IBM320 Market Trends and Analysis Maha Ghosn.
Resource Review Excel formula basics Demonstrate how to enter manual formulas Examine some of the available functions and their usage Discuss the.
FUNCTIONS The parts of a function In order to work correctly, a function must be written a specific way, which is called the syntax. The basic syntax for.
Spreadsheet Calculations Formulas & Functions Computer Applications I.
Label the Spreadsheet A3Phone AB 1 Monthly Bills 2 BillAmount 3 Phone30 4 Electricity105 5 Water20 6 Satellite60 7 Totals:215 8 Average:
LESSON 3 Working with Functions, Formulas, and Charts.
MSAA PRESENTS: AN EXCEL TUTORIAL
Microsoft Excel.
Using Advanced Functions and Conditional Formatting
Introduction to Spreadsheets
Office tool for creating tables and charts
2-2 Translating Between Words and Math
Midterm Review.
2007 MICROSOFT EXCEL INTERMEDIATE
Understanding Spreadsheets
Knowing your math operation terms
Introduction to Spreadsheets 5.00
Introduction to Spreadsheets
Working with Formulas and Functions
Spreadsheets (Excel Tasks)
Microsoft Excel 101.
Microsoft Excel Excel Formulas and Functions
Digital Communication Systems
Digital Communication Systems
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Lesson 4: Introduction to Functions
Introduction to Spreadsheets
Spreadsheets Objective 6.02
Spreadsheets Objective 6.02
Working with Formulas and Functions
Introduction to Spreadsheet Terminology
Introduction to Spreadsheets
Lessons 3: Coffee Shop Inventory
Mathematical Formulas and Excel
Presentation transcript:

Excel Basics Week 3

Applications for this Course Numbers for Mac Google Sheets

Excel in the Real World Personal Budgets Project Planning/Budgeting Financial Forecasts Graphing Data Mail Merge for Marketing Campaigns To-Do Lists

Excel Terminology https://exceljet.net/keyboard-shortcuts

Excel Terminology Formula - User defined equation using numbers and/or cell references Function - Predefined equations in Excel that perform various operations on the inputs they are provided Macro – Custom user created functions using Visual Basic coding language https://exceljet.net/keyboard-shortcuts

Formulas Use Operators Arithmetic Operators Logic Operators + Add = 10 + 5 Result = 15 - Subtract = 10 – 5 Result = 5 * Multiply = 10 * 5 Result = 50 / Divide = 10 / 5 Result = 2 ^ Power = 10 ^ 5 Result = 100,000 ( ) Order of Operations = ((5 + 5) ^ 5) Result = 100,000 > Greater than = 10 > 5 Result = TRUE >= Greater than or Equal to = 10 >= 5 Result = TRUE = Equal to = 10 = 5 Result = FALSE <= Less than or Equal to = 10 <= 5 Result = FALSE < Less than = 10 < 5 Result = FALSE <> Not Equal to = 10 <> 5 Result = TRUE

Functions to Know Math Functions Logic/Conditional Functions =Sum(B1:B20) Adds together all numbers in range =Count(B1:B20) Counts all numeric values in range =CountA(B1:B20) Counts all non-empty cells in range =Average(B1:B20) Calculates average of numbers in range =SumProduct(B1:B20, C1:C20) Calculates sum of the range members multiplied =If ( 10 > 5, “Good”, “Bad”) Result = “Good” =And ( 10 >= 5, 4 > 10) Result = FALSE =Or ( 10 = 5, 4 = 4) Result = TRUE =CountIfs(Criteria Range, Criteria) =SumIfs(Numeric Range, Criteria Range, Criteria) =AverageIfs(Numeric Range, Criteria Range, Criteria)

Popular Keyboard Shortcuts

The Ribbon: Home

The Ribbon: Insert

The Ribbon: PivotTable Tools

Great Reference Sites https://www.google.com/ Honestly, if you havent googled it you arent trying very hard http://spreadsheets.about.com/od/a/ This site is a great source for Excel terminology https://exceljet.net/keyboard-shortcuts Over 200 keyboard shortcuts for both PC and Mac