PSCM_ Data Analytics

Size: px
Start display at page:

Download "PSCM_ Data Analytics"

Transcription

1 PSCM_ Data Analytics Excel Functions and Simulation Sang Jo Kim July 4, 2015 * Reference - Business Analytics: Methods, Models, and Decisions (1 st edition, James R. Evans, Pearson)

2 Contents Excel PivotTable and PivotChart Excel vlookup() Monte Carlo Simulation

3 Excel Menu: Insert - Tables - PivotTable Then, follow wizard steps. PivotTables allow: Exploring Data Using PivotTables Quick creation of cross tabulations Numerous custom-made summary tables and charts

4 * PivotTable and vlookup.xlsx - The data table must have column titles. 3-4

5 Exploring Data Using PivotTables PivotTable Field List Select the fields for: Report Filter Column Labels Row Labels Σ Values Or, before choosing PivotTable, you can select a cell in the data and let Excel prepare a default PivotTable.

6 First Mission using PivotTable

7 2 nd Mission using PivotTable 3 rd Mission using PivotTable 7

8 PivotChart Click the PivotTable you created Choose Option PivotChart from the menu Book DVD East North South West 8

9 vlookup() Database Search (range_lookup = FALSE) VLOOKUP(lookup_value,table_array,col_index_num,range_lookup) lookup_value: The value you want to lookup table_array: The range of cells that VLOOKUP will search for the Lookup_value and the return value. The first column in the cell range must contain the Lookup_value. col_index_num: The column number (starting with 1 for the left-most column of table_array) that contains the return value. range_lookup (optional) FALSE: searches for the exact value in the first column. TRUE: assumes the first column in the table is sorted either numerically or alphabetically, and will then search for the closest value. This is the default method if you don't specify one. 9

10 vlookup() Database Search (range_lookup = TRUE) * Returns the closest number smaller than the value * The first column should be sorted! 10

11 Monte Carlo Simulation Simulation and Risk Analysis Spreadsheet Models with Random Variables Monte Carlo Simulation Using Risk Solver Newsvendor Model

12 Monte Carlo Simulation Origin The modern version of the Monte Carlo method was invented in the late 1940s by Stanislaw Ulam, while he was working on nuclear weapons projects at the Los Alamos National Laboratory. It was named by Nicholas Metropolis, after the Monte Carlo Casino (in Monaco), where Ulam's uncle often gambled. Immediately after Ulam's breakthrough, John von Neumann understood its importance and programmed the ENIAC computer to carry out Monte Carlo calculations. Typical procedure Define a domain of possible inputs. Generate inputs randomly from a probability distribution over the domain. Perform a deterministic computation on the inputs. Aggregate the results. * Source: Wikipedia

13 Spreadsheet Models with Random Variables * Monte Carlo Simulation.xlsx Outsourcing Decision Model Base model: What if the Production volume (Demand) = 1,500?

14 Spreadsheet Models with Random Variables * Monte Carlo Simulation.xlsx Outsourcing Decision Model Suppose production volume is uncertain ~ N(1000,100 2 ) Replace cell B12 (Prod. volume) with =ROUND(NORM.INV(RAND(),1000,100),0) * Press F9 to recalculate =ROUND(NORM.INV(RAND(),1000,100,true),0)

15 Spreadsheet Models with Random Variables Outsourcing Decision Model: Simulation solely using standard Excel functions * Limitation: How many trials would be sufficient? Law of Large Numbers!

16 Law of Large Numbers The Law: The average of the results obtained from a large number of trials should be close to the expected value, and will tend to become closer as more trials are performed. (ex) Die casting SJ: Bets on {1,2} SP: Bets on {3,4,5,6} Who will win from a die casting? (ex) Newsvendor problem We are maximizing the expected profit The expected profit for a given ordering quantity can be closely achieved only after a Large Number of trials!

17 Monte Carlo Simulation Using Risk Solver Steps for Simulating with the Risk Solver Platform 1. Develop a spreadsheet model. (Deterministic) 2. Determine probability distributions for uncertain input variables. 3. Identify output variables you want to predict. 4. Choose the number of trials and replications. 5. Run the simulation. 6. Interpret the results.

18 Monte Carlo Simulation Using Risk Solver Using Risk Solver Platform Probability Distribution Functions For the Outsourcing Decision Model, assume that two inputs are uncertain demand and unit cost. Demand (production volume) is normally distributed with a mean of 1000 and standard deviation of 100 units. Unit cost has a triangular distribution with a minimum of $160, most likely value of $175, and a maximum of $200.

19 Monte Carlo Simulation Using Risk Solver Using Risk Solver Platform Probability Distribution Functions X X =PsiTriangular(160,175, 200) =PsiNormal(1000,100,PsiTruncate(0, 1E+30))

20 Monte Carlo Simulation Using Risk Solver Using the Distributions Button in Risk Solver Platform Select cell B12. Risk Solver Distributions Common Normal Mean=1000 Stdev=100 Select cell B10 and enter unit cost distribution.

21 Monte Carlo Simulation Using Risk Solver Using the Distributions Button in Risk Solver Platform Normal Distribution dialog for Demand in cell B12 X 0 Truncated Normal Distribution

22 Monte Carlo Simulation Using Risk Solver Using the Distributions Button in Risk Solver Platform Triangular Distribution dialog for Unit Cost in cell B10.

23 Monte Carlo Simulation Using Risk Solver Defining Uncertain Cells in Risk Solver Define worksheet cells for the output variables you want to predict using the Results button in the Simulation Model group. Risk Solver calls these uncertain cells. Uncertain cells must be numeric. The values of these cells will be computed using the randomly generated input values. There will be one value of each uncertain cell generated on each trial of the simulation.

24 Monte Carlo Simulation Using Risk Solver Using the Results Button in Risk Solver Platform Select cell B19. Risk Solver Results Output In Cell Risk Solver then modifies cell B19 (you can do this manually as well). xx =B16-B17+PsiOutput()

25 Monte Carlo Simulation Using Risk Solver Running a Simulation Options, All Options Simulation Tab Trials per Simulation Use at least 5000 trials. Simulations to Run Use more than 1 run if you want to examine variation between runs. Simulation Random Seed Choose a nonzero number if you want to reproduce the exact same results. Sampling Method Use Monte Carlo for more randomized sampling.

26 Monte Carlo Simulation Using Risk Solver Run and View Simulation Results in Risk Solver Choose Simulate, Run Once Frequency tab displays a histogram and summary statistics for the output variable. Chart Statistics support risk analysis via changes to upper/lower cutoffs. Click the down arrow next to Statistics to change the results displayed. Double click on any uncertain output cell to view its results.

27 Monte Carlo Simulation Using Risk Solver Analyzing Simulation Results for the Outsourcing Decision Model

28 Monte Carlo Simulation Using Risk Solver Analyzing Simulation Results for the Outsourcing Decision Model

29 Newsvendor Model A small candy store sells Valentine s Day gift boxes that cost $12 and sell for $18. In the past, at least 40 boxes have sold by Valentine s Day but the actual amount is unknown. After the holiday, boxes are discounted 50%. Determine net profit on the gift boxes. C = 12, R = 18, S = 9 Net profit = R(min{Q,D}) + S(max{0,Q D}) CQ =18(min{Q,D}) + 9(max{0,Q D}) 12Q

30 Newsvendor Model * Monte Carlo Simulation - Newsvendor.xlsx Suppose the store owner kept records for the past 20 years on number of boxes sold. Historical data on boxes sold Original Newsvendor Model

31 Newsvendor Model

32 Newsvendor Model Simulating the Newsvendor Model Using Resampling Generate candy sales by resampling from the 20 historical values. Set demand in B11 as a random variable. Distributions Distribution Wizard Set profit in B17 as the uncertain output.

33 Newsvendor Model Simulating the Newsvendor Model Using Resampling

34 Newsvendor Model Using a Fitted Distribution for Monte Carlo Simulation Generate candy sales by fitting a probability distribution to the 20 historical sales values.

35 Optimization Using Simulation Use the function structure: Concavity or convexity, etc. Systematically choose the decision variable values and observe the objective function values Choose the decision variable values closer to the optimal zone you guess

36 Questions & Discussions? Copyright Malaysia Institute for Supply Chain Innovation 36

Decision Trees: Booths

Decision Trees: Booths DECISION ANALYSIS Decision Trees: Booths Terri Donovan recorded: January, 2010 Hi. Tony has given you a challenge of setting up a spreadsheet, so you can really understand whether it s wiser to play in

More information

ExcelSim 2003 Documentation

ExcelSim 2003 Documentation ExcelSim 2003 Documentation Note: The ExcelSim 2003 add-in program is copyright 2001-2003 by Timothy R. Mayes, Ph.D. It is free to use, but it is meant for educational use only. If you wish to perform

More information

Monte Carlo Simulation (General Simulation Models)

Monte Carlo Simulation (General Simulation Models) Monte Carlo Simulation (General Simulation Models) Revised: 10/11/2017 Summary... 1 Example #1... 1 Example #2... 10 Summary Monte Carlo simulation is used to estimate the distribution of variables when

More information

How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014

How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014 How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014 by Fred Brack NOTE: In December 2014, Microsoft made changes to their portfolio services online, widely derided by users. My

More information

36106 Managerial Decision Modeling Monte Carlo Simulation in Excel: Part I

36106 Managerial Decision Modeling Monte Carlo Simulation in Excel: Part I 36106 Managerial Decision Modeling Monte Carlo Simulation in Excel: Part I Kipp Martin University of Chicago Booth School of Business November 1, 2017 Reading and Excel Files Reading: Powell and Baker:

More information

<Partner Name> <Partner Product> RSA ARCHER GRC Platform Implementation Guide. 6.3

<Partner Name> <Partner Product> RSA ARCHER GRC Platform Implementation Guide. 6.3 RSA ARCHER GRC Platform Implementation Guide Palisade Jeffrey Carlson, RSA Partner Engineering Last Modified: 12/21/2016 Solution Summary Palisade @RISK is risk and decision

More information

Lecture 10. Ski Jacket Case Profit calculation Spreadsheet simulation Analysis of results Summary and Preparation for next class

Lecture 10. Ski Jacket Case Profit calculation Spreadsheet simulation Analysis of results Summary and Preparation for next class Decision Models Lecture 10 1 Lecture 10 Ski Jacket Case Profit calculation Spreadsheet simulation Analysis of results Summary and Preparation for next class Yield Management Decision Models Lecture 10

More information

DECISION SUPPORT Risk handout. Simulating Spreadsheet models

DECISION SUPPORT Risk handout. Simulating Spreadsheet models DECISION SUPPORT MODELS @ Risk handout Simulating Spreadsheet models using @RISK 1. Step 1 1.1. Open Excel and @RISK enabling any macros if prompted 1.2. There are four on-line help options available.

More information

Simulation. Decision Models

Simulation. Decision Models Lecture 9 Decision Models Decision Models: Lecture 9 2 Simulation What is Monte Carlo simulation? A model that mimics the behavior of a (stochastic) system Mathematically described the system using a set

More information

Yield Management. Decision Models

Yield Management. Decision Models Decision Models: Lecture 10 2 Decision Models Yield Management Yield management is the process of allocating different types of capacity to different customers at different prices in order to maximize

More information

XLSTAT TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING

XLSTAT TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING XLSTAT TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING INTRODUCTION XLSTAT makes accessible to anyone a powerful, complete and user-friendly data analysis and statistical solution. Accessibility to

More information

INTRODUCING RISK MODELING IN CORPORATE FINANCE

INTRODUCING RISK MODELING IN CORPORATE FINANCE INTRODUCING RISK MODELING IN CORPORATE FINANCE Domingo Castelo Joaquin*, Han Bin Kang** Abstract This paper aims to introduce a simulation modeling in the context of a simplified capital budgeting problem.

More information

Marketing Budget Excel Template User Guide

Marketing Budget Excel Template User Guide Marketing budget Excel Marketing Budget Excel Template User Guide The Marketing Budget Excel template, incorporating variance analysis and reporting allows you to develop a monthly marketing budget for

More information

MANAGEMENT-LEVEL FINANCIAL REPORTS

MANAGEMENT-LEVEL FINANCIAL REPORTS MANAGEMENT-LEVEL FINANCIAL REPORTS TABLE OF CONTENTS REPORTS OVERVIEW... 2 Detail by Fund... 2 Summary by Fund (100,130,131,150,305,900)... 2 Summary by Fund (3xx)... 2 Summary by Fund 108... 3 All-Funds...

More information

LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL

LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL There is a wide range of probability distributions (both discrete and continuous) available in Excel. They can be accessed through the Insert Function

More information

Introduction to Basic Excel Functions and Formulae Note: Basic Functions Note: Function Key(s)/Input Description 1. Sum 2. Product

Introduction to Basic Excel Functions and Formulae Note: Basic Functions Note: Function Key(s)/Input Description 1. Sum 2. Product Introduction to Basic Excel Functions and Formulae Excel has some very useful functions that you can use when working with formulae. This worksheet has been designed using Excel 2010 however the basic

More information

... About Monte Cario Simulation

... About Monte Cario Simulation WHAT PRACTITIONERS NEED TO KNOW...... About Monte Cario Simulation Mark Kritzman As financial analysts, we are often required to anticipate the future. Monte Carlo simulation is a numerical technique that

More information

TIE2140 / IE2140e Engineering Economy Tutorial 6 (Lab 2) Engineering-Economic Decision Making Process using EXCEL

TIE2140 / IE2140e Engineering Economy Tutorial 6 (Lab 2) Engineering-Economic Decision Making Process using EXCEL TIE2140 / IE2140e Engineering Economy Tutorial 6 (Lab 2) Engineering-Economic Decision Making Process using EXCEL Solutions Guide by Wang Xin, Hong Lanqing & Mei Wenjie 1. Learning Objectives In this lab-based

More information

Creating and Monitoring Defined Contribution Plans in Advisor Workstation

Creating and Monitoring Defined Contribution Plans in Advisor Workstation Creating and Monitoring Defined Contribution Plans in Advisor Workstation Disclaimer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 Overview - - - - - - - - - - - - - - - -

More information

ESTIMATING THE DISTRIBUTION OF DEMAND USING BOUNDED SALES DATA

ESTIMATING THE DISTRIBUTION OF DEMAND USING BOUNDED SALES DATA ESTIMATING THE DISTRIBUTION OF DEMAND USING BOUNDED SALES DATA Michael R. Middleton, McLaren School of Business, University of San Francisco 0 Fulton Street, San Francisco, CA -00 -- middleton@usfca.edu

More information

GETTING STARTED. To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop

GETTING STARTED. To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop Minitab 14 1 GETTING STARTED To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop The Minitab session will come up like this 2 To SAVE FILE 1. Click File>Save Project

More information

Discrete Probability Distributions

Discrete Probability Distributions 90 Discrete Probability Distributions Discrete Probability Distributions C H A P T E R 6 Section 6.2 4Example 2 (pg. 00) Constructing a Binomial Probability Distribution In this example, 6% of the human

More information

Public Financial Management Database Users' Guide

Public Financial Management Database Users' Guide Public Financial Management Database Users' Guide FEBRUARY 2015 CONTENTS Executive summary.............................................1 The public financial management database...........................2

More information

CHAPTER 2: GENERAL LEDGER

CHAPTER 2: GENERAL LEDGER Chapter 2: General Ledger CHAPTER 2: GENERAL LEDGER Objectives Introduction The objectives are: Explain the use of the Chart of Accounts in Microsoft Dynamics NAV 5.0. Explain the elements of the G/L Account

More information

Finance Manager: Budgeting

Finance Manager: Budgeting : Budgeting Overview is a module that facilitates the preparation, management, and analysis of fiscal year budgets. Streamlined for efficiency and designed to solve the cumbersome process of budget creation,

More information

Expected Return Methodologies in Morningstar Direct Asset Allocation

Expected Return Methodologies in Morningstar Direct Asset Allocation Expected Return Methodologies in Morningstar Direct Asset Allocation I. Introduction to expected return II. The short version III. Detailed methodologies 1. Building Blocks methodology i. Methodology ii.

More information

Sampling Distributions

Sampling Distributions Section 8.1 119 Sampling Distributions Section 8.1 C H A P T E R 8 4Example 2 (pg. 378) Sampling Distribution of the Sample Mean The heights of 3-year-old girls are normally distributed with μ=38.72 and

More information

3 - Paying Bills CCSD Symphony Circulation Manual (08/17) Paying Bills

3 - Paying Bills CCSD Symphony Circulation Manual (08/17) Paying Bills Paying Bills The Paying Bills Wizard helps you process user payments for current bills. 1. Click on the Paying Bills Wizard found under the Common Tasks Wizard heading. 2. Enter the patron User ID and

More information

NAVIPLAN PREMIUM LEARNING GUIDE. Business entities

NAVIPLAN PREMIUM LEARNING GUIDE. Business entities NAVIPLAN PREMIUM LEARNING GUIDE Business entities Contents Business entities 1 Learning objectives 1 NaviPlan planning stages 1 Client case 2 Enter different business entity types 3 Business Entity Details

More information

Bidding Decision Example

Bidding Decision Example Bidding Decision Example SUPERTREE EXAMPLE In this chapter, we demonstrate Supertree using the simple bidding problem portrayed by the decision tree in Figure 5.1. The situation: Your company is bidding

More information

Posterior Inference. , where should we start? Consider the following computational procedure: 1. draw samples. 2. convert. 3. compute properties

Posterior Inference. , where should we start? Consider the following computational procedure: 1. draw samples. 2. convert. 3. compute properties Posterior Inference Example. Consider a binomial model where we have a posterior distribution for the probability term, θ. Suppose we want to make inferences about the log-odds γ = log ( θ 1 θ), where

More information

Importing Historical Returns into Morningstar Office

Importing Historical Returns into Morningstar Office Importing Historical Returns into Morningstar Office Overview - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 What are historical returns? - - - - - - - - - - - - - - - -

More information

ESD.70J Engineering Economy

ESD.70J Engineering Economy ESD.70J Engineering Economy Fall 2010 Session One Xin Zhang xinzhang@mit.edu Prof. Richard de Neufville ardent@mit.edu http://ardent.mit.edu/real_options/rocse_excel_latest/excel_class.html ESD.70J Engineering

More information

Spreadsheet Directions

Spreadsheet Directions The Best Summer Job Offer Ever! Spreadsheet Directions Before beginning, answer questions 1 through 4. Now let s see if you made a wise choice of payment plan. Complete all the steps outlined below in

More information

Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition

Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the

More information

CASE STUDY. nineteen. Option Pricing. case study OVERVIEW. Application Overview and Model Development. Re-solve Options

CASE STUDY. nineteen. Option Pricing. case study OVERVIEW. Application Overview and Model Development. Re-solve Options CASE STUDY nineteen Option Pricing case study OVERVIEW CS19.1 CS19.2 CS19.3 CS19.4 CS19.5 CS19.6 CS19.7 Application Overview and Model Development Worksheets User Interface Procedures Re-solve Options

More information

Value of Information in Spreadsheet Monte Carlo Simulation Models

Value of Information in Spreadsheet Monte Carlo Simulation Models Value of Information in Spreadsheet Monte Carlo Simulation Models INFORMS 010 Austin Michael R. Middleton, Ph.D. Decision Toolworks Mike@DecisionToolworks.com 15.10.7190 Background Spreadsheet models are

More information

Contents. Chapter 1: Using this manual 1. Chapter 2: Entering plan assumptions 7. Chapter 3: Entering net worth information 29

Contents. Chapter 1: Using this manual 1. Chapter 2: Entering plan assumptions 7. Chapter 3: Entering net worth information 29 Contents Chapter 1: Using this manual 1 NaviPlan Premium user manual series 2 Conventions 4 NaviPlan Premium resources 5 Phone support 5 Updates 6 The About dialog box 6 Chapter 2: Entering plan assumptions

More information

WEB APPENDIX 8A 7.1 ( 8.9)

WEB APPENDIX 8A 7.1 ( 8.9) WEB APPENDIX 8A CALCULATING BETA COEFFICIENTS The CAPM is an ex ante model, which means that all of the variables represent before-the-fact expected values. In particular, the beta coefficient used in

More information

Generating Defined Contribution Plan Reports in Advisor Workstation 2.0

Generating Defined Contribution Plan Reports in Advisor Workstation 2.0 Generating Defined Contribution Plan Reports in Advisor Workstation 2.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 Generating the DC Plan Status Report..............................

More information

WinTen² Budget Management

WinTen² Budget Management Budget Management Preliminary User Manual User Manual Edition: 4/13/2005 Your inside track for making your job easier! Tenmast Software 132 Venture Court, Suite 1 Lexington, KY 40511 www.tenmast.com Support:

More information

Using the Clients & Portfolios Module in Advisor Workstation

Using the Clients & Portfolios Module in Advisor Workstation Using the Clients & Portfolios Module in Advisor Workstation Disclaimer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 Overview - - - - - - - - - - - - - - - - - - - - - -

More information

THOMSON REUTERS DEALS BUSINESS INTELLIGENCE USER GUIDE

THOMSON REUTERS DEALS BUSINESS INTELLIGENCE USER GUIDE THOMSON REUTERS DEALS BUSINESS INTELLIGENCE USER GUIDE Contents Contents About this Document... 1 Intended Readership...1 In this Document...1 Feedback...1 Chapter 1 Deals Business Intelligence... 1 System

More information

Insurer User Manual Chapter 9: Insurer Management

Insurer User Manual Chapter 9: Insurer Management Insurer User Manual Chapter 9: Insurer Management 2017 HCAI Communications Table of Contents Chapter 9: Insurer Management General Business Rules... 4 Insurer Branch Management... 4 Adding a Branch...

More information

The Process of Modeling

The Process of Modeling Session #3 Page 1 The Process of Modeling Plan Visualize where you want to finish Do some calculations by hand Sketch out a spreadsheet Build Start with a small-scale model Expand the model to full scale

More information

Basic Excel Formulas. Excel ABC

Basic Excel Formulas. Excel ABC Basic Excel Formulas Excel ABC Welcome to Excel ABC Basics This Ebook will teach you the basic excel that you will need to know to ease your workload. From my experience, there are 10 most commonly used

More information

Medici Lending Training Guide

Medici Lending Training Guide Medici Lending Training Guide This publication was written for Medici Publication Information Medici Lending Training Guide Material ID Number: 280816 Revision: January, 2013 Distributed Subject to Terms

More information

Creating and Assigning Targets

Creating and Assigning Targets Creating and Assigning Targets Targets are a powerful reporting tool in PortfolioCenter that allow you to mix index returns for several indexes, based on the portfolio s asset class allocation. For example,

More information

Handout 5: Summarizing Numerical Data STAT 100 Spring 2016

Handout 5: Summarizing Numerical Data STAT 100 Spring 2016 In this handout, we will consider methods that are appropriate for summarizing a single set of numerical measurements. Definition Numerical Data: A set of measurements that are recorded on a naturally

More information

Arkansas State University Banner Finance Self-Service

Arkansas State University Banner Finance Self-Service Arkansas State University Banner Finance Self-Service Contents Self Service Menu... 2 Approving Documents... 3 Viewing Documents... 5 Budget Transfers... 7 Multiple-Line Budget Transfers... 9 Budget Queries...

More information

BUDGET PLANNER BUDGET DEVELOPMENT Create Budget Worksheet

BUDGET PLANNER BUDGET DEVELOPMENT Create Budget Worksheet BUDGET PLANNER BUDGET DEVELOPMENT Create Budget Worksheet Date Issued/Revised: 3/07/2018 General Description: This procedure explains how to create and make adjustments to index budgets, update existing

More information

Custom Reports Overview. Running a Custom Report

Custom Reports Overview. Running a Custom Report Custom Reports Overview The Custom Reporting process allows you to run reports on loan and disbursement data using a wide variety of selection criteria. Running a Custom Report How to run a custom report:

More information

Enterprise Budgeting V14 R3 Software Release Notes

Enterprise Budgeting V14 R3 Software Release Notes Enterprise Budgeting V14 R3 Software Release Notes This document describes all the enhancements and changes to Global Software, Inc. s Enterprise Budgeting in version 14 release 3. Contents Summary of

More information

QUICK START. Your Guide to Using Telemet Orion

QUICK START. Your Guide to Using Telemet Orion QUICK START Your Guide to Using Telemet Orion 1 Your Telemet investment platform is organized into Workspaces and component displays. Component displays are individual windows with market data, charts,

More information

Subrogation/Salvage Reference Manual

Subrogation/Salvage Reference Manual Citizens Property Insurance Corp. This page intentionally left blank. Citizens Property Insurance Corp Page 2 Table of Contents In this reference manual This reference manuals contains the following topics:

More information

Make sure the client aged receivables balance to the general ledger total. Write off client balances. Pick a date that makes sense: a. b. c. d.

Make sure the client aged receivables balance to the general ledger total. Write off client balances. Pick a date that makes sense: a. b. c. d. Overview This document provides conversion tips and instructions for entering client and general ledger beginning balances Entering beginning balances in Nexsure entails bringing balances forward from

More information

Descriptive Statistics

Descriptive Statistics Chapter 3 Descriptive Statistics Chapter 2 presented graphical techniques for organizing and displaying data. Even though such graphical techniques allow the researcher to make some general observations

More information

Lesson Plan for Simulation with Spreadsheets (8/31/11 & 9/7/11)

Lesson Plan for Simulation with Spreadsheets (8/31/11 & 9/7/11) Jeremy Tejada ISE 441 - Introduction to Simulation Learning Outcomes: Lesson Plan for Simulation with Spreadsheets (8/31/11 & 9/7/11) 1. Students will be able to list and define the different components

More information

An application program that can quickly handle calculations. A spreadsheet uses numbers like a word processor uses words.

An application program that can quickly handle calculations. A spreadsheet uses numbers like a word processor uses words. An application program that can quickly handle calculations A spreadsheet uses numbers like a word processor uses words. WHAT IF? Columns run vertically & are identified by letters A, B, etc. Rows run

More information

University of Massachusetts Amherst * Boston * Dartmouth * Lowell * President s Office * Worcester

University of Massachusetts Amherst * Boston * Dartmouth * Lowell * President s Office * Worcester Inquire on Budgets Step 1. This job aid covers the following steps for Inquiry on a Budget: Inquire about a Budget to determine: o Budgeted Amount and Type o Budget Expenses o Encumbered and Pre-Encumbered

More information

Creating budget worksheets

Creating budget worksheets Creating budget worksheets You can also go to Activities>Budget worksheet from the top menu Note: You can also enter budgets through Transactions enter budgets either manually or by importing the data

More information

Workshop 1. Descriptive Statistics, Distributions, Sampling and Monte Carlo Simulation. Part I: The Firestone Case 1

Workshop 1. Descriptive Statistics, Distributions, Sampling and Monte Carlo Simulation. Part I: The Firestone Case 1 Sami Najafi Asadolahi Statistics for Managers Workshop 1 Descriptive Statistics, Distributions, Sampling and Monte Carlo Simulation The purpose of the workshops is to give you hands-on experience with

More information

NaviPlan User Manual. Level 1 & Level 2 Plans: Entering Client Data. NaviPlan User's Guide: (Canada) Version 18.0

NaviPlan User Manual. Level 1 & Level 2 Plans: Entering Client Data. NaviPlan User's Guide: (Canada) Version 18.0 NaviPlan User Manual Level 1 & Level 2 Plans: Entering Client Data (Volume V of VII) NaviPlan User's Guide: (Canada) Version 18.0 Copyright and Trade-mark Copyright 2013-2018 Advicent LP and its affiliated

More information

Chapter 18. Indebtedness

Chapter 18. Indebtedness Chapter 18 Indebtedness This Page Left Blank Intentionally CTAS User Manual 18-1 Indebtedness: Introduction The Indebtedness Module is designed to track an entity s indebtedness. By entering the principal

More information

One note for Session Two

One note for Session Two ESD.70J Engineering Economy Module Fall 2004 Session Three Link for PPT: http://web.mit.edu/tao/www/esd70/s3/p.ppt ESD.70J Engineering Economy Module - Session 3 1 One note for Session Two If you Excel

More information

Economic Simulations for Risk Analysis

Economic Simulations for Risk Analysis Session 1339 Economic Simulations for Risk Analysis John H. Ristroph University of Louisiana at Lafayette Introduction and Overview Errors in estimates of cash flows are the rule rather than the exception,

More information

Decision Trees Using TreePlan

Decision Trees Using TreePlan Decision Trees Using TreePlan 6 6. TREEPLAN OVERVIEW TreePlan is a decision tree add-in for Microsoft Excel 7 & & & 6 (Windows) and Microsoft Excel & 6 (Macintosh). TreePlan helps you build a decision

More information

Monte Carlo Simulation (Random Number Generation)

Monte Carlo Simulation (Random Number Generation) Monte Carlo Simulation (Random Number Generation) Revised: 10/11/2017 Summary... 1 Data Input... 1 Analysis Options... 6 Summary Statistics... 6 Box-and-Whisker Plots... 7 Percentiles... 9 Quantile Plots...

More information

The following Key Features describe important functions in the Account and Loan Transfer service.

The following Key Features describe important functions in the Account and Loan Transfer service. Account and Loan Transfer The Account Transfer service makes moving funds between accounts secure and simple. The user will find processing Multi-Entry Transfers and defining Recurring Transfers as easy

More information

Materials Control. Purchase Budget. Product Version Joerg Trommeschlaeger. Date: Version No. of Document: 1.

Materials Control. Purchase Budget. Product Version Joerg Trommeschlaeger. Date: Version No. of Document: 1. MICROS Product Version 8.8.00.61.1491 : : Date: 16.08.2013 Version No. of Document: 1.2 Copyright 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Real Options Valuation, Inc. Software Technical Support

Real Options Valuation, Inc. Software Technical Support Real Options Valuation, Inc. Software Technical Support HELPFUL TIPS AND TECHNIQUES Johnathan Mun, Ph.D., MBA, MS, CFC, CRM, FRM, MIFC 1 P a g e Helpful Tips and Techniques The following are some quick

More information

Discrete Probability Distributions

Discrete Probability Distributions 5 Discrete Probability Distributions 5-3 Binomial Probability Distributions 5-5 Poisson Probability Distributions 52 Chapter 5: Discrete Probability Distributions 5-3 Binomial Probability Distributions

More information

Lesson 4. Working with Bank Accounts

Lesson 4. Working with Bank Accounts QUICKBOOKS 2016 STUDENT GUIDE Lesson 4 Working with Bank Accounts Copyright Copyright 2016 Intuit, Inc. All rights reserved. Intuit, Inc. 5601 Headquarters Drive Plano, TX 75024 Trademarks 2016 Intuit

More information

PROPERTY OF CENGAGE LEARNING APPENDIXES

PROPERTY OF CENGAGE LEARNING APPENDIXES APPENDIXES APPENDIX A Building Spreadsheet Models APPENDIX B Areas for the Standard Normal Distribution APPENDIX C Values of e l APPENDIX D References and Bibliography APPENDIX E Self-Test Solutions and

More information

NAVIPLAN PREMIUM LEARNING GUIDE. Set retirement, education, major purchase, and emergency fund goals

NAVIPLAN PREMIUM LEARNING GUIDE. Set retirement, education, major purchase, and emergency fund goals NAVIPLAN PREMIUM LEARNING GUIDE Set retirement, education, major purchase, and emergency fund goals Contents Set retirement, education, major purchase, and emergency fund goals 1 Learning objectives 1

More information

Get Started with My Budget Planner

Get Started with My Budget Planner Page 1 of 24 Get Started with My Budget Planner Click on the "Start" button, select "Programs", select "My Budget Planner" to open My Budget Planner software. When you open My Budget Planner a Welcome

More information

Focus Guide. Forecast and. Analysis. Version 4.6

Focus Guide. Forecast and. Analysis. Version 4.6 Forecast and Focus Guide Analysis This Focus Guide is designed for Spitfire Project Management System users. This guide deals specifically with the BFA workbook in Forecast and Analysis modes. Version

More information

Master User Manual. Last Updated: August, Released concurrently with CDM v.1.0

Master User Manual. Last Updated: August, Released concurrently with CDM v.1.0 Master User Manual Last Updated: August, 2010 Released concurrently with CDM v.1.0 All information in this manual referring to individuals or organizations (names, addresses, company names, telephone numbers,

More information

SCHEDULE CREATION AND ANALYSIS. 1 Powered by POeT Solvers Limited

SCHEDULE CREATION AND ANALYSIS. 1   Powered by POeT Solvers Limited SCHEDULE CREATION AND ANALYSIS 1 www.pmtutor.org Powered by POeT Solvers Limited While building the project schedule, we need to consider all risk factors, assumptions and constraints imposed on the project

More information

SINGLE-YEAR LINE-ITEM BUDGETING

SINGLE-YEAR LINE-ITEM BUDGETING SINGLE-YEAR LINE-ITEM BUDGETING TABLE OF CONTENTS OPENING A PLAN FILE... 2 GENERAL NAVIGATION... 4 ENTERING NEW YEAR LINE-ITEM BUDGETS... 5 VIEWING HISTORICAL DATA... 6 ADDING, DELETING & MODIFYING CHARTSTRINGS...

More information

For example, a cost adjustment occurs on or between projects. (Changing business line, location or expenditure type use this spreadsheet)

For example, a cost adjustment occurs on or between projects. (Changing business line, location or expenditure type use this spreadsheet) OVERVIEW This job aid details the process of performing a project cost adjustment from Projects to Projects.The steps detailed will provide a step-by-step guide to the essential measures necessary. PROJECT

More information

What's new in Invest for Excel 3.6

What's new in Invest for Excel 3.6 What's new in Invest for Excel 3.6 Microsoft Excel versions supported... 2 Russian user manual... 2 Digitally signed program code... 2 Template folders... 2 Goodwill depreciation tax-deductibility option...

More information

BlackBoard Analytics SSRS (Web Reports) User Manual September 2017

BlackBoard Analytics SSRS (Web Reports) User Manual September 2017 BlackBoard Analytics SSRS (Web Reports) User Manual September 2017 BlackBoard Analytics SSRS Financial Reports When the link for the BlackBoard Analytics SSRS Financial Reports is opened, the user will

More information

Guide Of Excel 2007 Vlookup Formula Not Result

Guide Of Excel 2007 Vlookup Formula Not Result Guide Of Excel 2007 Vlookup Formula Not Result Excel VLOOKUP function pulls data from table in Excel. so if the product code is not found, the result will be #N/A. (Note: Excel is rather In Excel 2007,

More information

$0.00 $0.50 $1.00 $1.50 $2.00 $2.50 $3.00 $3.50 $4.00 Price

$0.00 $0.50 $1.00 $1.50 $2.00 $2.50 $3.00 $3.50 $4.00 Price Orange Juice Sales and Prices In this module, you will be looking at sales and price data for orange juice in grocery stores. You have data from 83 stores on three brands (Tropicana, Minute Maid, and the

More information

Morningstar Office Academy Day 4: Research and Workspace

Morningstar Office Academy Day 4: Research and Workspace Morningstar Office Academy Day 4: Research and Workspace - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 Lesson 1: Modifying Research Settings.......................................

More information

Recurring Payments CitiDirect BE SM

Recurring Payments CitiDirect BE SM Recurring Payments CitiDirect BE SM A Simple, Easy Way to Schedule Recurring Payments User Guide Treasury and Trade Solutions Recurring Payments CitiDirect BE Table of Contents Table of Contents 1. Overview

More information

SPSS I: Menu Basics Practice Exercises Target Software & Version: SPSS V Last Updated on January 17, 2007 Created by Jennifer Ortman

SPSS I: Menu Basics Practice Exercises Target Software & Version: SPSS V Last Updated on January 17, 2007 Created by Jennifer Ortman SPSS I: Menu Basics Practice Exercises Target Software & Version: SPSS V. 14.02 Last Updated on January 17, 2007 Created by Jennifer Ortman PRACTICE EXERCISES Exercise A Obtain descriptive statistics (mean,

More information

Steps for Software to Do Simulation Modeling (New Update 02/15/01)

Steps for Software to Do Simulation Modeling (New Update 02/15/01) Steps for Using @RISK Software to Do Simulation Modeling (New Update 02/15/01) Important! Before we get to the steps, we want to provide several notes to help you do the steps. Use the browser s Back button

More information

HandDA program instructions

HandDA program instructions HandDA program instructions All materials referenced in these instructions can be downloaded from: http://www.umass.edu/resec/faculty/murphy/handda/handda.html Background The HandDA program is another

More information

Processing Customer Credit Memos and Refunds

Processing Customer Credit Memos and Refunds Processing Customer Credit Memos and Refunds If a job completed for a customer requires the processing of a refund or credit you can create a credit memo for the customer that will be reflected on the

More information

StockFinder Workbook. Fast and flexible sorting and rule-based scanning. Charting with the largest selection of indicators available

StockFinder Workbook. Fast and flexible sorting and rule-based scanning. Charting with the largest selection of indicators available StockFinder Workbook revised Apr 23, 2009 Charting with the largest selection of indicators available Fast and flexible sorting and rule-based scanning Everything you need to make your own decisions StockFinder

More information

Chapter 6. Cash Control

Chapter 6. Cash Control Chapter 6 Cash Control This Page Left Blank Intentionally CTAS User Manual 6-1 Cash Control: Introduction The Cash Control section allows you to enter the beginning balances for the fiscal year. This section

More information

Monte Carlo Simulation Using SimVoi 10.1 SIMVOI OVERVIEW

Monte Carlo Simulation Using SimVoi 10.1 SIMVOI OVERVIEW Monte Carlo Simulation Using SimVoi 10 10.1 SIMVOI OVERVIEW SimVoi is a Monte Carlo simulation add-in for Microsoft Excel 2007 & 2010 & 2013 & 2016 (Windows) and Microsoft Excel 2011 & 2016 (Macintosh).

More information

Energy Price Processes

Energy Price Processes Energy Processes Used for Derivatives Pricing & Risk Management In this first of three articles, we will describe the most commonly used process, Geometric Brownian Motion, and in the second and third

More information

Tutorial. Morningstar DirectSM. Quick Start Guide

Tutorial. Morningstar DirectSM. Quick Start Guide April 2008 Software Tutorial Morningstar DirectSM Quick Start Guide Table of Contents Quick Start Guide Getting Started with Morningstar Direct Defining an Investment Lineup or Watch List Generating a

More information

GL Budgets. Account Budget and Forecast. Account Budgets and Forecasts Menu

GL Budgets. Account Budget and Forecast. Account Budgets and Forecasts Menu Account Budget and Forecast The Account Budget and Forecast function allows you to enter and maintain an unlimited number of budgets and/or forecasts values and types. When setting up the account budgets

More information

In this chapter: Budgets and Planning Tools. Configure a budget. Report on budget versus actual figures. Export budgets.

In this chapter: Budgets and Planning Tools. Configure a budget. Report on budget versus actual figures. Export budgets. Budgets and Planning Tools In this chapter: Configure a budget Report on budget versus actual figures Export budgets Project cash flow Chapter 23 479 Tuesday, September 18, 2007 4:38:14 PM 480 P A R T

More information

Quick Topic - Project Management Reference Guide

Quick Topic - Project Management Reference Guide Quick Topic - Project Management Reference Guide Title: Project Management Reference Guide Brief description: The purpose of this document is to act as a reference for the most common project management

More information

Importing Fundamental Data

Importing Fundamental Data Chapter V Importing Fundamental Data Includes Clearing Fundamental Data In this chapter 1. Retrieve fundamental data from a data service 726 2. Import Telescan/ProSearch Scan File (for Telescan users)

More information