University of Southern California Marshall Information Services
|
|
|
- Darcy Owens
- 10 years ago
- Views:
Transcription
1 University of Southern California Marshall Information Services Determine Breakeven Price Using Excel - Using Goal Seek, Data Tables, Vlookup & Charts This guide covers how to determine breakeven price (or units) using the following tools: Use Goal Seek to Determine Breakeven Price (or Units). Build a Model to Determine Breakeven Price (or Units) using a Breakeven Calculation. Generate Multiple Breakeven Prices for Various Units using a One Variable Data Table. Use Vlookup() to Adjust Cost Per Unit as the Number of Units Changes. Create a Breakeven Chart Breakeven Analysis Using Goal Seek... 2 Goal Seek Exercise 1: Determine Breakeven Price if we Sell 100 Units... 3 Goal Seek Exercise 2: Determine Breakeven Units if Price is set at $ Calculate Multiple Breakeven Prices One Variable Data Table... 4 About using a One Variable Data Table to Return Breakeven Prices... 4 Breakeven Equations for Price and Units... 5 Equation for Breakeven Price... 5 Equation for Breakeven Units... 5 Price Breakeven Table Exercise Part 1: Building the New Model... 6 Structure of a One Variable Data Table... 7 Price Breakeven Table Exercise Part 2: Using the One Variable Data Table... 8 Breakeven Exercise Part 3: Display Prices and Revenues Optional Exercise: Find Breakeven Units when Prices Vary Exercise: Adjust Costs as Units change with VLookup() How Vlookup() Works Creating a Break Even Chart (Excel 2013) Part A: Create the Data for the Graph Part B: Create an XY Scatter Chart to Display the Lines Part C: Marking the Breakeven Point Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 1 of 19
2 Breakeven Analysis Using Goal Seek Breakeven is the point where your profit equals zero or in other words, when Total Sales Total Costs = 0. It is often helpful in determining the price you should charge for a new product or the number of units you must sell to breakeven. In these two exercises, we wish build a spreadsheet that shows what the Profit will be if we vary Price and Units Sold. We will then use Goal Seek to set Profit to 0 by changing either Price or Units Sold. 1. Create the "Breakeven_GoalSeek" sheet shown below. Given: Cost Per Unit is $15 (i.e. it costs us $15 to make each unit). Fixed Costs for the time period we are producing our units: $2000 Formulas: Revenue: Price * Units Sold =B5*B6 Variable Cost: Cost Per Unit * Units Sold =B8*B6 Total Costs: Variable Cost + Fixed Cost =B9+B10 Profit: Revenue Total Costs =B7-B11 3. Type some test values into Price (B5) and Units Sold (B6). Profit should update as you vary B5 & B6. Our goal is to keep one of these two cells constant and adjust the other until Profit goes to zero. Using Goal Seek to Set Profit to Zero The good news is that you don't have to keep typing in trial numbers until you arrive at one that sets Profit to zero; Goal Seek can do the algebra and find either the Price or Units Sold that will set Profit to zero for us. Note that for Goal Seek to accomplish this, there must be a mathematical relationship between Profit and Units Sold and Price. In other words, Profit must be a formula cell and Price and Units Sold must be data cells that are either directly or directly referenced by the Profit formula. If manually changing either Price or Units Sold does not change Profit then you cannot use Goal Seek. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 2 of 19
3 Goal Seek Exercise 1: Determine Breakeven Price if we Sell 100 Units If we produce (and sell) 100 units, what must price be to break even? a. In Price (B5) type 0 and in Units Sold (B6) type 100. b. Click in cell B12. c. From the menu click "Data" "What if Analysis Goal Seek " d. Set the following: Set Cell B12 To Value 0 By changing cell B5 e. Click "OK". At 100 Units you must set the Price to $35 to break even. Goal Seek Exercise 2: Determine Breakeven Units if Price is set at $20 If price is set at $20, how many units must we sell to break even? a. In Price (B5) type 20 and in Units Sold (B6) type 10 (or some other number). b. Click in cell B12. c. From the menu click "Data" "What if Analysis Goal Seek " d. Set the following: Set Cell B12 To Value 0 By changing cell B6 e. Click "OK". At a price of $20 you must sell 400 units to break even. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 3 of 19
4 Calculate Multiple Breakeven Prices One Variable Data Table In the previous exercises we determined a breakeven price based on a 100 units sold. In this section we will look at how to create a table of breakeven prices for various numbers of units sold. Specifically, we wish to build the table below. We wish to produce a list of breakeven Prices for the Units listed. For example, at 300 Units the breakeven price is $ About using a One Variable Data Table to Return Breakeven Prices To build our table of breakeven prices, we can no longer use Goal Seek; it can only return a single answer for profit and can only vary a single cell. We cannot use Solver either. While Solver can vary multiple cells, it too can only produce a single answer. The solution we will use is a One-Variable Data Table. It is designed to run multiple variables through an equation to produce a table of results. However, it does not have the algebraic capabilities that Goal Seek and Solver do data tables will run the variables you give them through an equation to return whatever the results turn out to be, but you cannot tell it what you want those results to be. Fortunately, we can get around this limitation using some simple algebra: a. We know that: Profit = Price * Units Fixed Costs Variable Costs b. We know that we want profit to be zero. c. All we have to do is solve the equation for Price (or Units depending on what you are solving for) and set Profit to zero. Because profit is zero in our equation, Price (or Units) is forced to return a number that makes profit equal zero. See the next page on how the Price breakeven and Units breakeven formulas are derived. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 4 of 19
5 Breakeven Equations for Price and Units The breakeven point is where you there is no profit and no loss. In other words, profit equals zero. The calculations below show you how to get breakeven Price and breakeven Units. Equation for Breakeven Price Our profit is: Gross Total Costs or more specifically for our example: Profit = Price Units Variable Cost Per Unit Units Fixed Costs We know breakeven occurs when Profit goes to zero so we will move Fixed Costs to the left and eliminate Profit by setting it to zero: Price Units = Variable Cost Per Unit Units Fixed Costs Multiplying through by -1: Price Units = Variable Cost Per Unit Units + Fixed Costs Dividing both sides by Units: Price = Variable Cost Per Unit Units Units + Fixed Costs Units Units cancel in the first part leaving the equation for getting the breakeven price at: Price = Variable Cost Per Unit + Fixed Costs Units Equation for Breakeven Price Equation for Breakeven Units Profit is: Gross Total Costs or more specifically for our example: Profit = Price Units Variable Cost Per Unit Units Fixed Costs We know breakeven occurs when Profit goes to zero so we will move Fixed Costs to the left and eliminate Profit from the equation by setting it to zero: Simplifying Fixed Costs = Price Units Variable Cost Per Unit * Units Fixed Costs = Units ( Price Variable Cost Per Unit) Solving for Units, the equation to get breakeven for units is: Units = Fixed Costs (Price Variable Cost Per Unit) Equation for Breakeven Units Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 5 of 19
6 Price Breakeven Table Exercise Part 1: Building the New Model Our first step is to adjust our spreadsheet as follows: Set Units to any constant we desire (50 for example). Set Price to our breakeven equation for Price. 1. Make a copy of the "Breakeven_GoalSeek" sheet: Hold down the Control key and drag the sheet's tab to the right to copy it. 2. Rename the new sheet to "Breakeven_Prices " by double clicking the tab's name, typing the new name, and pressing enter. 3. In B5 (Price) type: =B8+(B10/B6) i.e. Cost Per Unit + (Fixed Costs / Units Sold) 4. In B6 (Units Sold) type: In B12 (Profit) type: 0 (Or type = B7-B11. We removed any reference to B12 from other equations so it doesn't really matter what is here.) 3. Type any positive number (greater than zero) for Units Sold (B6). Price (B5) should instantly show you the price you need to charge to breakeven for the number of units entered. Now that we have created a model that allows us to type in different Units and always returns Prices that keeps Profit at zero, we can create a one variable data table. We will give it a list of different possible Units and it will return breakeven prices for those units. See the next page on how to structure a one-variable data table. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 6 of 19
7 Structure of a One Variable Data Table Excel's One Variable and Two Variable Data Tables allow you to produce a table of results by varying one or two of a calculation's inputs. For example, if we provide a list of different Units, a One Variable Data Tables can produce the Breakeven Price for each unit. Data Tables require a very specific structure to be used correctly. The structure of a one variable data table is shown below. Formula Whose Results You wish to Generate This cell must contain either the formula whose results you wish to display or a link to the cell containing the formula whose results you wish to display. In this example, we wish to produce different Prices based on Units sold. Our calculation to get the Breakeven Price is =B8+(B10/B6) and is in B5. So, the area indicated (Formula to Test) either needs to repeat that formula or reference B5 (i.e. =B5). Variable List This is a list of the different values you wish to substitute into the formula. In this example the area will contain Units. Each one of these values will be substituted into the "Formula to Test" one by one to produce the results. This is where the results of the formula will appear. (Optional) Use these columns to test other formulas. For example, "Revenue" also changes as we change Units Sold so we could also output a list of revenues. Note that for this to work, there must be a mathematical relationship between Units and Price. For example, if manually typing different units in B6 does not change price (B5) then a One Variable Data Table can't help you. All the data table is really doing is substituting each variable one by one into B6 to produce a table of different prices for each unit substituted in. (See the next page for Price Breakeven Table Exercise Part 2: Using the One Variable Data Table) Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 7 of 19
8 Price Breakeven Table Exercise Part 2: Using the One Variable Data Table We will now create a table of breakeven Prices given a series of Units. 1. On the "Breakeven_Prices" tab, create the structure shown in columns D & E. 2. In E5 type: =B5 (This is the formula used to generate our prices.) 3. In D6:D15, type the units you would like to find breakeven Prices for. (These are our column variables and will be substituted into B6 one at a time to produce our table of prices.) 4. Highlight the range D5:E15 as indicated. 5. From the menu, click the "Data" tab then "What-If Analysis" then "Data Table ". Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 8 of 19
9 This is a One-Variable Data Table so we only have a Column Input Cell. Row Input Cell will be left blank. The Column Input Cell is the cell that you want your column of variables (i.e. "Units") to be substituted into to generate the prices. In this case, we wish to substitute our column of UNITS (D6:D15) into cell B6. 6. Select B6 (Units Sold) as the "Column Input Cell". 7. Click "OK". Excel should produce a column of breakeven prices for each corresponding unit. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 9 of 19
10 Breakeven Exercise Part 3: Display Prices and Revenues A one variable data table can display the results for more than one formula as long as both formulas are affected by the same variable. We will modify our data table to also include Revenues. 1. In F5 type: =B7 (B7 contains the formula for Revenue. Referencing it here tells the table to generate results for Revenue for the various Units.) 2. Highlight D3:F From the menu, click the "Data" tab then "What-If Analysis" "Data Table ". 4. Set the "Column Input Cell" to B6. 5. Click "OK". Excel should have also produced a column of revenues that correspond to the number of units being sold. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 10 of 19
11 Optional Exercise: Find Breakeven Units when Prices Vary In our previous data table exercise, we varied units to produce a series of breakeven prices. You can also vary prices to see what your breakeven units will be. 1. Copy the previous exercise to a new sheet and name the new sheet "Breakeven_Units". 2. Make the edits shown below. 3. In B5 type a constant price such as In E5 type =B6 5. In B6 type our breakeven formula for Units: =B10/(B5-B8) 6. Type the prices shown. 7. Highlight D5:E15 8. From the menu click the "Data" tab and then click "What-If Analysis" "Data Table". 9. Set the Column Input Cell to B Click "OK". Excel should produce a table of breakeven units for the various prices given. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 11 of 19
12 Exercise: Adjust Costs as Units change with VLookup() 1. Go to the "Breakeven_Prices" sheet. 2. Type the data shown in H3:J13 In our previous examples, varied Units Sold to see what our breakeven prices would be. In our equations, Cost Per Unit was held constant at $15 and Fixed Cost was held constant at $2000 regardless of the number of units sold. In reality however, both of these numbers would probably change as volume changes. Cost Per Unit As units increase, this cost will probably go down as you realize economies of scale. For example, your suppliers of raw materials might give you price breaks when you purchase in greater volume. Fixed Costs Fixed costs include things that don't change as production changes. For example, mortgage payments, lease payments, salaries, etc. However, for the purpose of our model, once units hits a certain point, will have to purchase or lease more buildings and hire more employees so for our model, Fixed Costs will go up as Units increase. This is the table we will use to lookup the Cost Per Unit and Fixed Costs associated with the number of Units sold. (We are assuming we sell everything we make.) Vlookup() will look for the units we give it in the "Units" column. When selecting the bracket, Vlookup() grabs the largest value it finds in the Units column that is less than or equal to what we are looking for. For example: If we are looking for 9,000 units, 5,000 is the largest number in the Units column that is less than or equal to 9,000 so it will use the costs in row 6 (14.25 and 2000). If we are looking for 50 units, 1 is the largest number in the Units column that is less than or equal to 50 so it will use the costs in row 4 (15 and 2000). When using Vlookup(), you must construct your table with how vlookup() searches in mind. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 12 of 19
13 Lookup Value Item to Return Item to Return 3. In B8 type: =Vlookup(B6,H4:J13,2,True) 4. In B10 type: =Vlookup(B6,H4:J13,3,True) 5. Try typing different Units in B6 to test your Vlookup()s. Cost Per Unit and Fixed Costs should update accordingly. 6. Regenerate your One Variable Data Table to output the new breakeven prices. How Vlookup() Works Vlookup() allows you to return data that is associated with a lookup value. In this example we searched our table for Units Sold (Lookup Value) and returned the Cost Per Unit and Fixed Costs associated with the units we were looking for. Col #1 Col #2 Col #3 The Lookup value must be to the left of the item you are returning and for approximate matches they must be sorted. The syntax of Vlookup() is as follows. =Vlookup(Lookup Value, Table to Search, Item to Return by Column #, Match Type) This is the value you wish to search by. In this example, we searched by Units Sold. Your lookup value must be to the left of what you are returning. This is the range of the table you are searching. It must include the column of your lookup values and the values you are returning. In this example it is H4:J13 This is the column number (counting within the table from left to right) containing the value associated with the item you are looking for. In this example, to return Cost Per Unit we put a 2; to return Fixed Costs we put a 3. Match Type is either True or False and specifies whether you want an exact match (False) or an approximate match (True). Use an exact match (False) when searching by ID numbers or names. Use approximate match (True) when working with number ranges. Approximate match finds the largest number that is less than or equal to what you are looking for. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 13 of 19
14 Creating a Break Even Chart (Excel 2013) Graphically, breakeven occurs when Total Costs intersects Revenue. In the image to the right, we are holding Price constant at $20 and plotting Fixed Costs, Total Costs, and Revenue. As indicated by the graph, breakeven occurs at 400 Units. At this point, both Total Cost and Revenue are $8,000. We will create the chart as follows: A. Use a One-Variable Data Table to generate Total Costs and Revenues when holding price constant at $20 and varying Units. B. Create an XY Scatter Chart to display the lines. C. Create a 4th series that consists of a single data point (Breakeven). Part A: Create the Data for the Graph 1. Create the spreadsheet shown below (or copy the "Breakeven_GoalSeek" sheet we created earlier). It simply calculates what Profit, Revenue, Variable Costs and Total Costs would be if you vary Price or Units. Type formulas where indicated; other values are constants. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 14 of 19
15 2. Create what is shown in columns E through H. This is to generate values for our one variable data table. (All values are static except for the two formulas indicated in F5 and G5.) These are static numbers. These are static numbers. 3. To generate the One-Variable Data Table, follow the steps below: 3a. Highlight the range E5:G16 3b. Click "Data" then "What-If Analysis" then "Data Table. 3c. Set the "Column input cell" to $B$6 then click "OK". Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 15 of 19
16 These values should have been generated. Note that they will update if you change Price (B5). Part B: Create an XY Scatter Chart to Display the Lines When highlighting to create an XY Scatter Chart as we are doing below, Excel will assume that the left most column is for all X data points for all lines. The multiple columns to the right will each be a separate line and contain the Y data points. 1. Highlight E4:H4 (These will become our legend). 2. Hold down the Control key on your keyboard and highlight E6:H6 (These will become our data points). 3. From the menu click "Insert" then "XY Scatter" then "Scatter with Straight Lines". You should now have a XY Scatter chart similar to the one shown here. Note that if you change Price (B5), the date table and the chart will update. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 16 of 19
17 Part C: Marking the Breakeven Point We wish to mark the breakeven point on our chart. We could use Excel's drawing tools to annotate it but that would not update should we change the price we are charging. Instead, we will add a 4 th series that contains just one data point. To make the data point dynamic, we will base its X value on the breakeven calculation for Units: BE Units = Fixed Costs / (Price Variable Cost) To get the corresponding Y value: BE Units * Price 1. In B14 type: =B10/(B5-B8) 2. In B15 type: =B5*B14 3. Click your chart to make the chart tools appear on the menu. 4. Click the "Design" tab then the "Select Data" button. 5. Click the "Add" button to add a 4 th series to the chart. 6. Set the "Series X Values" to cell B Set the "Series Y Values" to cell B Click "OK". 9. Click "OK" again. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 17 of 19
18 You may have noticed that the data point is not visible on your chart. We must now give it some color. 10. Click the chart to activate the Chart Tools. 11. Click the "Format" tab under Chart Tools. 12. Click the "Chart Elements" drop down (located in the upper left). 13. Select "Series 4" from the list of chart elements. Your Series 4 data point should now be selected. 14. Click "Format Selection". 15. Click "Line & Fill". 16. Click "Marker". 17. Expand "Marker Options". a. Select "Built-in" b. Specify a "Type" and "Size". 18. Expand "Fill". a. Select "Solid Fill" b. Specify a "Color" 19. Expand "Border". a. Select "No Line". 20. Select "Series4" in the legend and press your delete key. Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 18 of 19
19 21. To label the Breakeven point: a. Right click the data point. b. Click "Add Data Labels". c. Click "Add Data Callouts". 21. Change the "Price" in cell B5 and the chart should adjust accordingly. (Note that changing Units Sold has no effect on our chart. It was designed to only be affected by changes in Price.) Marshall School of Business - USC Excel_BreakEven_Analysis.docx Wayne Wilmeth 4/10/14 Page 19 of 19
Introduction to Data Tables. Data Table Exercises
Tools for Excel Modeling Introduction to Data Tables and Data Table Exercises EXCEL REVIEW 2000-2001 Data Tables are among the most useful of Excel s tools for analyzing data in spreadsheet models. Some
EXCEL Tutorial: How to use EXCEL for Graphs and Calculations.
EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. Excel is powerful tool and can make your life easier if you are proficient in using it. You will need to use Excel to complete most of your
Tools for Excel Modeling. Introduction to Excel2007 Data Tables and Data Table Exercises
Tools for Excel Modeling Introduction to Excel2007 Data Tables and Data Table Exercises EXCEL REVIEW 2009-2010 Preface Data Tables are among the most useful of Excel s tools for analyzing data in spreadsheet
Graphing Parabolas With Microsoft Excel
Graphing Parabolas With Microsoft Excel Mr. Clausen Algebra 2 California State Standard for Algebra 2 #10.0: Students graph quadratic functions and determine the maxima, minima, and zeros of the function.
A Guide to Using Excel in Physics Lab
A Guide to Using Excel in Physics Lab Excel has the potential to be a very useful program that will save you lots of time. Excel is especially useful for making repetitious calculations on large data sets.
sensitivity analysis. Using Excel 2.1 MANUAL WHAT-IF ANALYSIS 2.2 THRESHOLD VALUES
Sensitivity Analysis Using Excel The main goal of sensitivity analysis is to gain insight into which assumptions are critical, i.e., which assumptions affect choice. The process involves various ways of
Excel Guide for Finite Mathematics and Applied Calculus
Excel Guide for Finite Mathematics and Applied Calculus Revathi Narasimhan Kean University A technology guide to accompany Mathematical Applications, 6 th Edition Applied Calculus, 2 nd Edition Calculus:
Summary of important mathematical operations and formulas (from first tutorial):
EXCEL Intermediate Tutorial Summary of important mathematical operations and formulas (from first tutorial): Operation Key Addition + Subtraction - Multiplication * Division / Exponential ^ To enter a
USC Marshall School of Business Marshall Information Services
USC Marshall School of Business Marshall Information Services Excel Dashboards and Reports The goal of this workshop is to create a dynamic "dashboard" or "Report". A partial image of what we will be creating
Preface of Excel Guide
Preface of Excel Guide The use of spreadsheets in a course designed primarily for business and social science majors can enhance the understanding of the underlying mathematical concepts. In addition,
How to make a line graph using Excel 2007
How to make a line graph using Excel 2007 Format your data sheet Make sure you have a title and each column of data has a title. If you are entering data by hand, use time or the independent variable in
Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540
To complete this technology assignment, you should already have created a scatter plot for your data on your calculator and/or in Excel. You could do this with any two columns of data, but for demonstration
Performing Simple Calculations Using the Status Bar
Excel Formulas Performing Simple Calculations Using the Status Bar If you need to see a simple calculation, such as a total, but do not need it to be a part of your spreadsheet, all you need is your Status
Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information.
Excel Tutorial Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information. Working with Data Entering and Formatting Data Before entering data
Plots, Curve-Fitting, and Data Modeling in Microsoft Excel
Plots, Curve-Fitting, and Data Modeling in Microsoft Excel This handout offers some tips on making nice plots of data collected in your lab experiments, as well as instruction on how to use the built-in
Creating A Grade Sheet With Microsoft Excel
Creating A Grade Sheet With Microsoft Excel Microsoft Excel serves as an excellent tool for tracking grades in your course. But its power is not limited to its ability to organize information in rows and
Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different)
Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different) Spreadsheets are computer programs that allow the user to enter and manipulate numbers. They are capable
Plotting Data with Microsoft Excel
Plotting Data with Microsoft Excel Here is an example of an attempt to plot parametric data in a scientifically meaningful way, using Microsoft Excel. This example describes an experience using the Office
USC Marshall School of Business Academic Information Services. Excel 2007 Qualtrics Survey Analysis
USC Marshall School of Business Academic Information Services Excel 2007 Qualtrics Survey Analysis DESCRIPTION OF EXCEL ANALYSIS TOOLS AVAILABLE... 3 Summary of Tools Available and their Properties...
Quickstart for Desktop Version
Quickstart for Desktop Version What is GeoGebra? Dynamic Mathematics Software in one easy-to-use package For learning and teaching at all levels of education Joins interactive 2D and 3D geometry, algebra,
How to Excel with CUFS Part 2 Excel 2010
How to Excel with CUFS Part 2 Excel 2010 Course Manual Finance Training Contents 1. Working with multiple worksheets 1.1 Inserting new worksheets 3 1.2 Deleting sheets 3 1.3 Moving and copying Excel worksheets
Designed by Jason Wagner, Course Web Programmer, Office of e-learning ZPRELIMINARY INFORMATION... 1 LOADING THE INITIAL REPORT... 1 OUR EXAMPLE...
Excel & Cognos Designed by Jason Wagner, Course Web Programmer, Office of e-learning ZPRELIMINARY INFORMATION... 1 LOADING THE INITIAL REPORT... 1 OUR EXAMPLE... 2 DEFINED NAMES... 2 BUILDING THE DASHBOARD:
This activity will show you how to draw graphs of algebraic functions in Excel.
This activity will show you how to draw graphs of algebraic functions in Excel. Open a new Excel workbook. This is Excel in Office 2007. You may not have used this version before but it is very much the
Notes on Excel Forecasting Tools. Data Table, Scenario Manager, Goal Seek, & Solver
Notes on Excel Forecasting Tools Data Table, Scenario Manager, Goal Seek, & Solver 2001-2002 1 Contents Overview...1 Data Table Scenario Manager Goal Seek Solver Examples Data Table...2 Scenario Manager...8
Market Pricing Override
Market Pricing Override MARKET PRICING OVERRIDE Market Pricing: Copy Override Market price overrides can be copied from one match year to another Market Price Override can be accessed from the Job Matches
Excel Tutorial. Bio 150B Excel Tutorial 1
Bio 15B Excel Tutorial 1 Excel Tutorial As part of your laboratory write-ups and reports during this semester you will be required to collect and present data in an appropriate format. To organize and
Getting Started with Excel 2008. Table of Contents
Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...
ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0
European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes
The Center for Teaching, Learning, & Technology
The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston
Microsoft Excel - XP Intermediate
Microsoft Excel - XP Intermediate Financial Functions Goal Seeking Variable Tables IF Statements AND & OR Functions Mathematical Operations Between Separate Sheets Mathematical Operations Between Separate
Microsoft Excel 2010 Part 3: Advanced Excel
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting
To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.
EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet
Graphing in excel on the Mac
Graphing in excel on the Mac Quick Reference for people who just need a reminder The easiest thing is to have a single series, with y data in the column to the left of the x- data. Select the data and
Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP
Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD
Intro to Excel spreadsheets
Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using
Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11
Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11 TASK 4: ADD TOTAL LABEL AND FORMULA FOR FREQUENCY... 12 TASK 5: MODIFICATIONS TO THE HISTOGRAM...
MARS STUDENT IMAGING PROJECT
MARS STUDENT IMAGING PROJECT Data Analysis Practice Guide Mars Education Program Arizona State University Data Analysis Practice Guide This set of activities is designed to help you organize data you collect
Excel for Data Cleaning and Management
Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS
Creating a Gradebook in Excel
Creating a Spreadsheet Gradebook 1 Creating a Gradebook in Excel Spreadsheets are a great tool for creating gradebooks. With a little bit of work, you can create a customized gradebook that will provide
EXCEL EXERCISE #8: Consolidating and Linking Spreadsheets
EXCEL EXERCISE #: Consolidating and Linking Spreadsheets. Enter the following information onto Sheet. Double click on the tab for the worksheet and rename it: East. (It represents sales in $000.) 0 Record
Excel Database Management Microsoft Excel 2003
Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may
Excel Reporting with 1010data
Excel Reporting with 1010data (212) 405.1010 [email protected] Follow: @1010data www.1010data.com Excel Reporting with 1010data Contents 2 Contents Overview... 3 Start with a 1010data query... 5 Running
1. Go to your programs menu and click on Microsoft Excel.
Elementary Statistics Computer Assignment 1 Using Microsoft EXCEL 2003, follow the steps below. For Microsoft EXCEL 2007 instructions, go to the next page. For Microsoft 2010 and 2007 instructions with
Produce Spreadsheets Excel 2010
ISBN: 978-1-921885-15-0 Produce Spreadsheets Excel 2010 BSBITU304A Software Publications Writing Team Produce Spreadsheets Supporting BSBITU304A Produce Spreadsheets in the Business Services Training Package.
SPSS: Getting Started. For Windows
For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering
MICROSOFT EXCEL STEP BY STEP GUIDE
IGCSE ICT SECTION 14 DATA ANALYSIS MICROSOFT EXCEL STEP BY STEP GUIDE Mark Nicholls ICT Lounge Data Analysis Self Study Guide Contents Learning Outcomes Page 3 What is a Data Model?... Page 4 Spreadsheet
Sales Person Commission
Sales Person Commission Table of Contents INTRODUCTION...1 Technical Support...1 Overview...2 GETTING STARTED...3 Adding New Salespersons...3 Commission Rates...7 Viewing a Salesperson's Invoices or Proposals...11
In-Depth Guide Advanced Spreadsheet Techniques
In-Depth Guide Advanced Spreadsheet Techniques Learning Objectives By reading and completing the activities in this chapter, you will be able to: Create PivotTables using Microsoft Excel Create scenarios
Analyzing Data Using Excel
Analyzing Data Using Excel What you will do: Create a spreadsheet Use formulas and basic formatting Import text files Save worksheets as web pages Add interactivity to web worksheets Use pivot tables Create
EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002
EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables
Scientific Graphing in Excel 2010
Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.
Microsoft Excel Tips & Tricks
Microsoft Excel Tips & Tricks Collaborative Programs Research & Evaluation TABLE OF CONTENTS Introduction page 2 Useful Functions page 2 Getting Started with Formulas page 2 Nested Formulas page 3 Copying
Interactive Excel Spreadsheets:
Interactive Excel Spreadsheets: Constructing Visualization Tools to Enhance Your Learner-centered Math and Science Classroom Scott A. Sinex Department of Physical Sciences and Engineering Prince George
STC: Descriptive Statistics in Excel 2013. Running Descriptive and Correlational Analysis in Excel 2013
Running Descriptive and Correlational Analysis in Excel 2013 Tips for coding a survey Use short phrases for your data table headers to keep your worksheet neat, you can always edit the labels in tables
Microsoft Excel 2010 Training. Use Excel tables to manage information
Microsoft Excel 2010 Training Use Excel tables to manage information Overview: Help with data management In this course, you ll learn how to manage information by using tables in Excel. Tables make it
APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by
APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by internal auditors around the world in their day-to-day
Excel 2010: Create your first spreadsheet
Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column
Course 2000020 Advanced Life Science 7th Grade Curriculum Extension
Course 2000020 Advanced Life Science 7th Grade Curriculum Extension Laboratory investigations which include the use of scientific inquiry, research, measurement, problem solving, laboratory apparatus and
Excel Add-ins Quick Start Guide
Excel Add-ins Quick Start Guide Contents Bloomberg - Excel Add-In... 2 Datastream - Excel Add-in... 9 FactSet - Excel Add-in... 13 Thomson Reuters Eikon - Excel Add-in... 19 Bloomberg - Excel Add-In Bloomberg
Lab 11: Budgeting with Excel
Lab 11: Budgeting with Excel This lab exercise will have you track credit card bills over a period of three months. You will determine those months in which a budget was met for various categories. You
Introduction to Excel
Introduction to Excel This material has been reprinted, with permission, from the Excel Tutorial on the TRIO program webpage of the University of South Dakota. A series of "screencast" videos covering
Using Excel for Statistical Analysis
2010 Using Excel for Statistical Analysis Microsoft Excel is spreadsheet software that is used to store information in columns and rows, which can then be organized and/or processed. Excel is a powerful
Estimating a market model: Step-by-step Prepared by Pamela Peterson Drake Florida Atlantic University
Estimating a market model: Step-by-step Prepared by Pamela Peterson Drake Florida Atlantic University The purpose of this document is to guide you through the process of estimating a market model for the
Costing and Break-Even Analysis
W J E C B U S I N E S S S T U D I E S A L E V E L R E S O U R C E S. 28 Spec. Issue 2 Sept 212 Page 1 Costing and Break-Even Analysis Specification Requirements- Classify costs: fixed, variable and semi-variable.
0 Introduction to Data Analysis Using an Excel Spreadsheet
Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do
Module 4 (Effect of Alcohol on Worms): Data Analysis
Module 4 (Effect of Alcohol on Worms): Data Analysis Michael Dunn Capuchino High School Introduction In this exercise, you will first process the timelapse data you collected. Then, you will cull (remove)
One-Way ANOVA using SPSS 11.0. SPSS ANOVA procedures found in the Compare Means analyses. Specifically, we demonstrate
1 One-Way ANOVA using SPSS 11.0 This section covers steps for testing the difference between three or more group means using the SPSS ANOVA procedures found in the Compare Means analyses. Specifically,
Using Microsoft Excel to Plot and Analyze Kinetic Data
Entering and Formatting Data Using Microsoft Excel to Plot and Analyze Kinetic Data Open Excel. Set up the spreadsheet page (Sheet 1) so that anyone who reads it will understand the page (Figure 1). Type
Assignment 1 supplement: Using Microsoft Excel
Derivative Securities, Fall Semester, 2009 http://www.math.nyu.edu/faculty/goodman/teaching/teaching.html Assignment 1 supplement: Using Microsoft Excel There are many helpful web sites and books on the
Lesson 4.3: Using the VLOOKUP Function
Lesson 4.3: Using the VLOOKUP Function Excel 2003 provides two lookup functions that you can use to quickly retrieve information from a table. The functions are called HLOOKUP (horizontal lookup) and VLOOKUP
Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18
Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not
Data representation and analysis in Excel
Page 1 Data representation and analysis in Excel Let s Get Started! This course will teach you how to analyze data and make charts in Excel so that the data may be represented in a visual way that reflects
EXCEL SPREADSHEET MANUAL
EXCEL SPREADSHEET MANUAL to accompany MATHEMATICS WITH APPLICATIONS, EIGHTH EDITION and MATHEMATICS WITH APPLICATIONS, FINITE VERSION, EIGHTH EDITION LIAL HUNGERFORD Paula Grafton Young Salem College J.
Excel 2007 Basic knowledge
Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft
Probability Distributions
CHAPTER 5 Probability Distributions CHAPTER OUTLINE 5.1 Probability Distribution of a Discrete Random Variable 5.2 Mean and Standard Deviation of a Probability Distribution 5.3 The Binomial Distribution
Assignment objectives:
Assignment objectives: Regression Pivot table Exercise #1- Simple Linear Regression Often the relationship between two variables, Y and X, can be adequately represented by a simple linear equation of the
Exam Name: Excel 2010 Exam Type: Microsoft Exam Code: 77-882 Certification Microsoft Office Specialist (MOS) Total Questions: 26
Question: 1 You work as a Sales Manager for Rainbow Inc. Your responsibility includes preparing sales report of the Sales department. You use Microsoft Excel 2010 to prepare sales reports. You have created
How To Use Excel With A Calculator
Functions & Data Analysis Tools Academic Computing Services www.ku.edu/acs Abstract: This workshop focuses on the functions and data analysis tools of Microsoft Excel. Topics included are the function
Monthly Payroll to Finance Reconciliation Report: Access and Instructions
Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining
Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions
2010 Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions This document describes how to perform some basic statistical procedures in Microsoft Excel. Microsoft Excel is spreadsheet
Dealing with Data in Excel 2010
Dealing with Data in Excel 2010 Excel provides the ability to do computations and graphing of data. Here we provide the basics and some advanced capabilities available in Excel that are useful for dealing
NAVIGATION TIPS. Special Tabs
rp`=j~êëü~ää=påüççä=çñ=_ìëáåéëë Academic Information Services Excel 2007 Cheat Sheet Find Excel 2003 Commands in Excel 2007 Use this handout to find where Excel 2003 commands are located in Excel 2007.
Microsoft Excel Basics
COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are
Data Analysis Tools. Tools for Summarizing Data
Data Analysis Tools This section of the notes is meant to introduce you to many of the tools that are provided by Excel under the Tools/Data Analysis menu item. If your computer does not have that tool
Appendix 2.1 Tabular and Graphical Methods Using Excel
Appendix 2.1 Tabular and Graphical Methods Using Excel 1 Appendix 2.1 Tabular and Graphical Methods Using Excel The instructions in this section begin by describing the entry of data into an Excel spreadsheet.
Overview What is a PivotTable? Benefits
Overview What is a PivotTable? Benefits Create a PivotTable Select Row & Column labels & Values Filtering & Sorting Calculations Data Details Refresh Data Design options Create a PivotChart Slicers Charts
Math 1314 Lesson 8 Business Applications: Break Even Analysis, Equilibrium Quantity/Price
Math 1314 Lesson 8 Business Applications: Break Even Analysis, Equilibrium Quantity/Price Three functions of importance in business are cost functions, revenue functions and profit functions. Cost functions
Microsoft Excel 2010 Pivot Tables
Microsoft Excel 2010 Pivot Tables Email: [email protected] Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Pivot Tables 1.5 hours Topics include data groupings, pivot tables, pivot
Solving Linear Programs in Excel
Notes for AGEC 622 Bruce McCarl Regents Professor of Agricultural Economics Texas A&M University Thanks to Michael Lau for his efforts to prepare the earlier copies of this. 1 http://ageco.tamu.edu/faculty/mccarl/622class/
How to Use a Data Spreadsheet: Excel
How to Use a Data Spreadsheet: Excel One does not necessarily have special statistical software to perform statistical analyses. Microsoft Office Excel can be used to run statistical procedures. Although
Excel Spreadsheet Activity Redo #1
Excel Spreadsheet Activity Redo #1 Melissa Ebling 11/9/06 Directions: Please follow all directions in this packet. This assignment will consist of your tracking ten different stocks over a period of a
Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: [email protected]
M o s t U s e f u l E x c e l C o m m a n d s Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: [email protected] Computer Training YOU Can Understand! Most Useful Excel Commands
Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering
Engineering Problem Solving and Excel EGN 1006 Introduction to Engineering Mathematical Solution Procedures Commonly Used in Engineering Analysis Data Analysis Techniques (Statistics) Curve Fitting techniques
Exploring Relationships between Highest Level of Education and Income using Corel Quattro Pro
Exploring Relationships between Highest Level of Education and Income using Corel Quattro Pro Created by Michael Lieff ([email protected]) Faculty of Education, Queen s University While on practicum at Statistics
UCINET Quick Start Guide
UCINET Quick Start Guide This guide provides a quick introduction to UCINET. It assumes that the software has been installed with the data in the folder C:\Program Files\Analytic Technologies\Ucinet 6\DataFiles
Drawing a histogram using Excel
Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to
Integrating Spreadsheet Templates and Data Analysis into Fluid Power Instruction
Volume 16, Number 4 - August 2000 to October 2000 Integrating Spreadsheet Templates and Data Analysis into Fluid Power Instruction By Dr. Bruce Marsh KEYWORD SEARCH Curriculum Fluid Power Teaching Methods
Petrel TIPS&TRICKS from SCM
Petrel TIPS&TRICKS from SCM Maps: Knowledge Worth Sharing Map Annotation A map is a graphic representation of some part of the earth. In our industry, it may represent either the surface or sub surface;
TIPS FOR DOING STATISTICS IN EXCEL
TIPS FOR DOING STATISTICS IN EXCEL Before you begin, make sure that you have the DATA ANALYSIS pack running on your machine. It comes with Excel. Here s how to check if you have it, and what to do if you
Getting Started with Access 2007
Getting Started with Access 2007 1 A database is an organized collection of information about a subject. Examples of databases include an address book, the telephone book, or a filing cabinet full of documents
