Basic Excel Formulas. Excel ABC

Size: px
Start display at page:

Download "Basic Excel Formulas. Excel ABC"

Transcription

1 Basic Excel Formulas Excel ABC

2 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 formula that we use on a day to day basis. For this ebook, I will assume that you know have no knowledge on excel formulas. The 10 commonly used formula are 1. Sum 2. Sumif 3. Average 4. Count 5. Counta 6. Min & Max 7. Concatenate 8. Vlookup 9. Index match 10. If EXCEL ABC 1

3 Sum Sometimes we will need to find the total value of a list. In excel we can get the total sum easily by simply using the build in sum formula to help us calculate. Scenario 1 We decided to purchase milk,egg and cereal for breakfast. What will be the total cost of this shopping trip? 1. To get the total value of a list of items, a. Click AutoSum in the formula tab at the bottom of the list 2. I prefer to type the formula (as it saves time) a. = sum ( Starting cell of the list : Ending cell of the list ) i. For the above example it will be =sum(c2:c4) For this scenario the total will be $9.90. EXCEL ABC 2

4 Sumif If you want to only sum specific responds total, we will use sumif. Scenario 2 As from the previous shopping list, we decided not to purchase eggs. What will be the new total cost of this shopping trip? To represent the scenario above, we included the to buy column into our data pool. In this way we can differentiate what item we decide to buy and not to buy. Beside is how it should look like. EXCEL ABC 3

5 Since there is a value that we do not want to be calculate together, we can t use the sum formula. In this situation we will use the sumif formula. To get the total value of selected items in a list, 1. From the formula tab we go to the Maths & Trig icon 2. Select the sumif 3. The function argument will pop up Once you are more with the formula, you can simply key in the formula. The formula will be =sumif( Range of citeria, Citeria, Sum range ) 4. For the range, we select the range that allows us to differentiate or criteria. In this case, it will be the to buy range. (Cell C2:C4) 5. For the criteria, we will select Yes. Since we want to only sum the total of all the yes items. 6. Lastly is the Sum_range, this will be the range we want Excel to calculate (Cell D2:D4) EXCEL ABC 4

6 Average If you need to find the average of the value Scenario 4 We are given the supermarkets total sales for 3 months. We are task to find out the average sales did they make per month. To calculate the average of the total sales 1. Click the arrow at the AutoSum in the formulas tab 2. From the drop down click the Average It s easier to simply key in the formula, =Average(range of cell) EXCEL ABC 5

7 Count There are times in which we will need to count the total number of cells. It only works for numeric value. Scenario 5 You are given a list of delivery. You are tasked to find out the total number of deliveries for today. To find the total number of deliveries for the day, we will use the count formula Counta 1. Click the arrow at the AutoSum in the formulas tab 2. From the drop down click the Count Number It s easier to simply key in the formula, =Count(range of cell) Counta counts the number of non-empty cells. As count only works for numeric values, I would usually use counta to count the number of cells. To use counta, Simply key in the formula, =Counta(range of cell) EXCEL ABC 6

8 Min And Max The min and max formula are literally, the minimum of the range and maximum of the range. Scenario 6 The supermaket is wondering what is the minimum and maximum sales value they achieved within the 3 months. 1. Click the arrow at the AutoSum in the formulas tab 2. From the drop down click the Min or Max depending on the situation. It s easier to simply key in the formula, =Min(range of cell) or Max(Range of cell) EXCEL ABC 7

9 Concatenate To join 2 or more cells together. Scenario 7 At times the first name and last name are in separate cells, then we will need to combine them together. 1. I would recommend that we use key in the formula to do the concatenation. 2. The formula can be activate using the & sign. 3. See the example at the side, note the (Space). This is to ensure that there is a space between the First Name and Last Name. 4. If the (Space) is not added, the Full name of Max Stone will be MaxStone. EXCEL ABC 8

10 Vlookup This is the most used formula. Vlookup is basically a way to look up for a specific value from reference data. Conditions for vlookup 1. There must be something common in both the query and the reference data. 2. The common data must be in the left of the data you want 3. Vlookup works best when the common data is numeric values. The above might be confusing, let me explain with a scenario. Scenario 8 You are task to find if out what is the employment type of each sales man and what is their sales value. Lists There are 2 list. In list 1, the data has the sales man id number and if they are full time or part time. In list 2, the data has the sales man id number and the sales value they achieve. List 1 Sale Man ID Employment Type 1234 Full Time 1235 Full Time 1236 Full Time 1237 Full Time 1238 Full Time 1239 Full Time 1240 Full Time For the 2 list the common data is Sale Man Id. List 2 Sale Man ID Sales Value 1234 $ 15, $ 17, $ 35, $ 25, $ 9, $ 6, $ 5,000 EXCEL ABC 9

11 To execute vlookup, 1. From the formula tab we go to the Lookup & References icon 2. Select the vlookup 3. The function argument will pop up Lookup_Array 1. The lookup array will be the common data between the 2 lists. For this scenario, it will be the sale man ID. Table_Array 2. The table array is the list you are checking against. 3. The common data (sale man id) must be on the left most side. EXCEL ABC 10

12 Col_index_num 4. The col index num is the column number from the common data (Sale man ID) 5. In this case, it will be 2 as we will always consider the common data (Sale man ID) as column number Range_lookup 6. The range lookup is asking if we want the common data to be an exact match or will a close match suffice. 7. I would recommend an exact match hence key in False. 8. If you want a close match, key in True. End result 9. By dragging the formula down, we will get the result as shown beside. 10. In the event a #N/A is shown, this mean the item is not present in the common data. EXCEL ABC 11

13 Index Match This is an alternative for vlookup. Index match is more robust that vlookup as it can search in both directions and works well with non-numeric values. Scenario 9 We are given a customer list. We are task to find out who is from Brazil. Name Age Salary Country 1. To use the index match formula Red Green Blue $ $ $ 5,000 8,000 3,500 Thailand America Brazil a. After the index (the result we want) b. Match formula is very similar to the vlookup Who is from i. The first array after match is the Brazil Blue lookup array. For this example, it Formula =INDEX(A2:A4,MATCH(B7,D2:D4,0)) will be B7 (Brazil) ii. The second array is the table array. For this example, it is the range (D2:D4). iii. Lastly is the match type, we will use 0. (0 will give us an exact match) c. To summarize the formula for index match i. =Index(Array,Match(Lookup_array,table_array,match_type)) EXCEL ABC 12

14 IF The If function is used for determined whether an argument is true or false. Scenario 10 We are given the sale man s sale value and their sales target. Determine if they hit or miss the target. 1. From the formula tab we go to the Logical icon 2. Select the if 3. The function argument will pop up Logical Test This can literally be any argument you want it to be. 1. For this scenario, we would like to check if the sales value > Sales Target. 2. If it s true, we indicate it as hit. 3. If it s false, we indicate it as a miss. The End Result Hit or Sale Man ID Sales Value Sales target Miss Target 1234 $ 15,000 $ 10,000 Hit 1235 $ 17,000 $ 15,000 Hit 1236 $ 35,000 $ 50,000 Miss 1237 $ 25,000 $ 45,000 Miss 1238 $ 9,000 $ 5,000 Hit 1239 $ 6,000 $ 7,000 Miss 1240 $ 5,000 $ 3,000 Hit 4. By dragging the formula down, we will get the result as shown beside. EXCEL ABC 13

15 The End Thank you for reading this Ebook. We hope that this will help you understand the basic formulas that will be use for work. Stay Tune for our advance ebook, it will be covering Pivot Tables and Charts. EXCEL ABC 14

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

The Advanced Budget Project Part D The Budget Report

The Advanced Budget Project Part D The Budget Report The Advanced Budget Project Part D The Budget Report A budget is probably the most important spreadsheet you can create. A good budget will keep you focused on your ultimate financial goal and help you

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

CREATING QUERIES TO SHOW BUDGETED VS. ACTUAL COSTS. The first Query is going to be sourced from multiple tables:

CREATING QUERIES TO SHOW BUDGETED VS. ACTUAL COSTS. The first Query is going to be sourced from multiple tables: CREATING QUERIES TO SHOW BUDGETED VS. ACTUAL COSTS The first Query is going to be sourced from multiple tables: Job_budgets : This table houses the Job_id, Cost_code_id and estimated Costs per cost code

More information

Calculate Sums, Rates, and Percentages in Excel: Student Workbook

Calculate Sums, Rates, and Percentages in Excel: Student Workbook 2016 Calculate Sums, Rates, and Percentages in Excel: Student Workbook Created by: EVA CONSTANTARAS / Independent Consultant & Data Scientist WITH SUPPORT FROM THE WORLD BANK AND THE UK DEPARTMENT FOR

More information

AVERAGE, IF, COUNT, SUMIFS, COUNTIFS, MAXIFS, MINIFS, AVERAGEIFS, ROWS, LOGICAL EXPRESSIONS

AVERAGE, IF, COUNT, SUMIFS, COUNTIFS, MAXIFS, MINIFS, AVERAGEIFS, ROWS, LOGICAL EXPRESSIONS CS1100: Assignment 3 Summarizing and Filtering Data To complete this assignment you must submit an electronic copy to BlackBoard by the due date. Download the starter file and save the file under the name

More information

Computing interest and composition of functions:

Computing interest and composition of functions: Computing interest and composition of functions: In this week, we are creating a simple and compound interest calculator in EXCEL. These two calculators will be used to solve interest questions in week

More information

Excellence with Excel for Stock Plan Professionals

Excellence with Excel for Stock Plan Professionals Excellence with Excel for Stock Plan Professionals Elizabeth Dodge, CEP, Stock & Option Solutions, Inc. Julie Kenia, CEP, Stock & Option Solutions, Inc. Stock & Option Solutions (SOS) is the leading stock

More information

Financial Edge (FE) Instructions

Financial Edge (FE) Instructions Financial Edge (FE) Instructions Welcome to the CU Foundation s accounting system! Please report any issues or make suggestions to accounting@cufund.org. Step 1: Password Set up and Change at the Manage

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

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

Fiscal Year End: Manual PO Rollover

Fiscal Year End: Manual PO Rollover Fiscal Year End: Manual PO Rollover PO encumbrances on all budgets, except for grants budgets, must have the encumbered amount moved from the previous fiscal year budget to the new fiscal year budget.

More information

M Y F I N A N C E H O W T O

M Y F I N A N C E H O W T O U S S F C U P E R S O N A L F I N A N C I A L M A N A G E M E N T M Y F I N A N C E H O W T O CONTENTS Overview..2 Getting Started... 2 Dashboard... 4 Accounts... 6 Adding an External Online Account...

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

UG 3.5 SOCIAL INCLUSION & COMMUNITY ACTIVATION PROGRAMME Iris User Guide: How to Review and Approve a Financial and Monitoring Report

UG 3.5 SOCIAL INCLUSION & COMMUNITY ACTIVATION PROGRAMME Iris User Guide: How to Review and Approve a Financial and Monitoring Report UG 3.5 Iris User Guide: How to Review and Approve a Financial and Monitoring Report SOCIAL INCLUSION & COMMUNITY ACTIVATION PROGRAMME 2018-2022 The Social Inclusion and Community Activation Programme (SICAP)

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

GuruFocus User Manual: My Portfolios

GuruFocus User Manual: My Portfolios GuruFocus User Manual: My Portfolios 2018 version 1 Contents 1. Introduction to User Portfolios a. The User Portfolio b. Accessing My Portfolios 2. The My Portfolios Header a. Creating Portfolios b. Importing

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

Banner Budget Reallocation Step-by-Step Training Guide. Process Opens March 12 and Closes April 5PM

Banner Budget Reallocation Step-by-Step Training Guide. Process Opens March 12 and Closes April 5PM Banner Budget Reallocation Step-by-Step Training Guide Process Opens March 12 and Closes April 20th @ 5PM 1 Sign in to the CC Single Sign-In System Click on Banner 2 Select Finance from either the tabs

More information

Directions to build Stochastics & EMA Crossover search

Directions to build Stochastics & EMA Crossover search Directions to build Stochastics & EMA Crossover search 1. Click the UniSearch tab at the top of the program. 2. Click the drop down arrow next to the New icon. 3. Click on New Search. 4. Click in the empty

More information

Excel Build a Salary Schedule 03/15/2017

Excel Build a Salary Schedule 03/15/2017 EXCEL BUILDING A SALARY SCHEDULE WEDNESDAY, 3/22/2017 3:15 PM TRACY S. LEED ACCOUNTS PAYABLE SUPERVISOR/SYSTEM ADMINISTRATOR CHESTER CO INTERMEDIATE UNIT 24 DOWNINGTOWN, PA PASBO 62 ND ANNUAL CONFERENCE

More information

Brown University Tidemark Users Guide

Brown University Tidemark Users Guide Brown University Tidemark Users Guide Updated March 26, 2015 Table of Contents Tidemark Overview... 2 What is Tidemark?... 2 Logging In and Out of Tidemark... 2 Panels... 2 Panel Layout... 3 Data Slice

More information

Your Wealth Management Portal

Your Wealth Management Portal Your Wealth Management Portal As part of your Wealth Management Service, you have a personal secure electronic document vault located on a secure server and accessed exclusively through your Wealth Management

More information

Trend Detection Index

Trend Detection Index INDICATORS Are You In A Trend? Trend Detection Index Can you tell when a trend s begun and when it s ended? You can with this. by M.H. Pee he trend detection index (TDI) is used T to detect when a trend

More information

Using Budget Development in Banner Self-Service

Using Budget Development in Banner Self-Service 1. Access Budget Worksheet: Using Budget Development in Banner Self-Service Log-in Banner Self-Service and go to Finance Tab. Click on Budget Development Menu link. Click on Create Budget Worksheet link.

More information

Using an Excel spreadsheet to calculate Andrew s 18th birthday costs

Using an Excel spreadsheet to calculate Andrew s 18th birthday costs Using an Excel spreadsheet to calculate Andrew s 18th birthday costs Open a new spreadsheet in Excel. Highlight cells A1 to J1. Prevocational Mathematics 1 of 17 Planning an event Using an Excel spreadsheet

More information

Banner Finance. Self Service Manual

Banner Finance. Self Service Manual Banner Finance Self Service Manual 12/06/2011 Table of Contents Logging into Banner Finance Self Service... 2 Budget Queries... 5 Saving Budget Queries... 15 Encumbrance Queries... 21 Budget Transfers...

More information

Transfer an Employee s Time Off Balance

Transfer an Employee s Time Off Balance Absence & Leave Transfer an Employee s Time Off Balance Use this job aid to: Transfer an employee s Time Off Plan balance from their current plan to their future plan View the transfer with a Time Off

More information

RUNNING THE G/L FUNDING BALANCE REPORT

RUNNING THE G/L FUNDING BALANCE REPORT RUNNING THE G/L FUNDING BALANCE REPORT VERSION: JANUARY 2016 Running the G/L Fund Balance Report About this Document This document describes the purpose and unique aspects of the GL Fund Balance report,

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

Handout 3 More on the National Debt

Handout 3 More on the National Debt Handout 3 More on the National Debt In this handout, we are going to continue learning about the national debt and you ll learn how to use Excel to perform simple summaries of the information. One of my

More information

Intermediate Excel. Combination Cell References A B C D E =A1/$A$ =A$1*$B4+B2 3 =A1+A

Intermediate Excel. Combination Cell References A B C D E =A1/$A$ =A$1*$B4+B2 3 =A1+A Intermediate Excel SPRING 2016 Spring 2016 CS130 - INTERMEDIATE EXCEL 1 Combination Cell References How do $A1 and A$1 differ from $A$1? A B C D E 1 4 8 =A1/$A$3 2 6 4 =A$1*$B4+B2 3 =A1+A2 1 4 5 What formula

More information

Real Estate Private Equity Case Study 3 Opportunistic Pre-Sold Apartment Development: Waterfall Returns Schedule, Part 1: Tier 1 IRRs and Cash Flows

Real Estate Private Equity Case Study 3 Opportunistic Pre-Sold Apartment Development: Waterfall Returns Schedule, Part 1: Tier 1 IRRs and Cash Flows Real Estate Private Equity Case Study 3 Opportunistic Pre-Sold Apartment Development: Waterfall Returns Schedule, Part 1: Tier 1 IRRs and Cash Flows Welcome to the next lesson in this Real Estate Private

More information

An Introduction to Integrated Planning Templates

An Introduction to Integrated Planning Templates Background: Integrated Planning (IP) Templates are a series of excel based worksheets that form a major component of resource planning, a key element of college/division s Integrated Plan. It is planned

More information

Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function.

Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function. Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function. ANS: F PTS: 1 REF: EX 493 2. Cash flow has nothing to do with who owns the money.

More information

Intermediate Excel. Winter Winter 2011 CS130 - Intermediate Excel 1

Intermediate Excel. Winter Winter 2011 CS130 - Intermediate Excel 1 Intermediate Excel Winter 2011 Winter 2011 CS130 - Intermediate Excel 1 Combination Cell References How do $A1 and A$1 differ from $A$1? A B C D E 1 4 8 =A1/$A$3 2 6 4 =A$1*$B4+B2 3 =A1+A2 1 4 5 What formula

More information

MASTER SCHEDULING GUIDE TO CREATING CREDIT RECOVERY SECTIONS IN PERIODS 50-75

MASTER SCHEDULING GUIDE TO CREATING CREDIT RECOVERY SECTIONS IN PERIODS 50-75 MASTER SCHEDULING GUIDE TO CREATING CREDIT RECOVERY SECTIONS IN PERIODS 50-75 USER GUIDE ON CREATING CREDIT RECOVERY SECTIONS IN MISIS Per LAUSD MEM-6733.1 Credit Recovery Program Opportunities, all schools

More information

To complete this workbook, you will need the following file:

To complete this workbook, you will need the following file: CHAPTER 7 Excel More Skills 11 Create Amortization Tables Amortization tables track loan payments for the life of a loan. Each row in an amortization table tracks how much of a payment is applied to the

More information

PSCM_ Data Analytics

PSCM_ Data Analytics PSCM_7217.1.1 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) Contents Excel

More information

NetTeller Online Financial Management (OFM)

NetTeller Online Financial Management (OFM) NetTeller Online Financial Management (OFM) Contents About This Manual... Error! Bookmark not defined. Overview...1 Getting Started...1 Dashboard...3 Accounts...5 CashEdge Adding an Online Account... 7

More information

CENTRAL BUDGET REQUEST ENTRY. 1) Go to: Other Applications > Centrals>Financials>Budget Command Center

CENTRAL BUDGET REQUEST ENTRY. 1) Go to: Other Applications > Centrals>Financials>Budget Command Center CENTRAL BUDGET REQUEST ENTRY 1) Go to: Other Applications > Centrals>Financials>Budget Command Center 1 2) Click on Central Budget Entry MUNIS will automatically take you to the Central Budget Entry Screen

More information

ACS YEAR-END FREQUENTLY ASKED QUESTIONS. General Ledger

ACS YEAR-END FREQUENTLY ASKED QUESTIONS. General Ledger ACS YEAR-END FREQUENTLY ASKED QUESTIONS This document includes answers to frequently asked questions about the following ACS modules: General Ledger Payroll Accounts Payable Accounts Receivable General

More information

My Finance - Online Financial Management User Guide

My Finance - Online Financial Management User Guide My Finance - Online Financial Management User Guide First Reliance Bank 2012.12a Contents About OFM...2 End-User Functionality...3 Accessing OFM... 3 Dashboard... 5 Gauges... 6 Accounts... 7 Adding an

More information

PFM MoneyMobile. Product Overview Guide. August 2013

PFM MoneyMobile. Product Overview Guide. August 2013 PFM MoneyMobile Product Overview Guide August 2013 1 Contents MoneyMobile iphone App... 3 New Navigation Menu... 5 Accounts... 6 Transactions... 13 Excluded Transactions... 16 Spending Wheel... 17 Bubble

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

DUS DocWay TM Loan Documents User Guide. January 2019

DUS DocWay TM Loan Documents User Guide. January 2019 DUS DocWay TM Loan Documents User Guide January 2019 Table of Contents Getting Started with DUS DocWay... 1 Welcome Page Navigation... 3 Loan Documents Navigation... 6 Update Document Category and Type...

More information

INSURANCE Training Guide

INSURANCE Training Guide INSURANCE Training Guide Group Insurance premium calculator May 2015 Training Guide Group Insurance premium calculator Before you are able to use the Group Insurance premium calculator you must have: 1.

More information

Collateral Representation and Warranty Relief with an Appraisal: Loan Coverage Advisor Information

Collateral Representation and Warranty Relief with an Appraisal: Loan Coverage Advisor Information Collateral Representation and Warranty Relief with an Appraisal: Loan Coverage Advisor establishes and tracks the representation and warranty relief dates for all loans sold to Freddie Mac. It provides

More information

Draftworx Manual. Thank you for choosing Draftworx

Draftworx Manual. Thank you for choosing Draftworx Draftworx Manual Thank you for choosing Draftworx Contents Installing the program... 4 Activating the program... 5 Getting going... 6 Training videos... 6 Filter bar... 6 Regional Settings... 8 Client

More information

Maintaining Budget Change Requests

Maintaining Budget Change Requests Maintaining Budget Change Requests This document describes the functions used in TEAMS to enter and approve requests to move funds from one General Ledger account to another. In this document: Request

More information

FMS Account Summary Inquiry View Budget Information

FMS Account Summary Inquiry View Budget Information FMS Account Summary Inquiry View Budget Information Account Summary Inquiry The Account Summary Inquiry (ASI) in our Financial Management System (FMS) displays budget, expenditure, encumbrance, and available

More information

Spreadsheet Resources and Assignments

Spreadsheet Resources and Assignments Spreadsheet Resources and Assignments All of your spreadsheets will require calculations of one kind or another. Study carefully from the types of formulas below to learn their basic use. Make sure you

More information

FINANCIAL MODELING IN EXCEL

FINANCIAL MODELING IN EXCEL Title Heading Here FINANCIAL MODELING IN EXCEL Become productive and creative in Microsoft Excel 1 Contents Excel Essentials 2 Advanced Excel 3 Data Analysis and Dashboard Reporting 4 Advanced Data Analysis

More information

Atradius Atrium. July version 3.0. Atradius Atrium. User manual. Atradius Atrium - User Manual Version 3.0

Atradius Atrium. July version 3.0. Atradius Atrium. User manual. Atradius Atrium - User Manual Version 3.0 July 2018 - version 3.0 User manual 1 - User Manual Version 3.0 Drive your business forward with powerful, easy-to-use credit management tools is the Atradius online platform, which offers you one place

More information

Fundriver Reporting For Departmental Users

Fundriver Reporting For Departmental Users For Departmental Users For Departmental Users Accessing Fundriver... 1 Fund Summary Screen... 1 Selecting a Fund... 1 Fund Drop Down List... 2 Find Button... 2 Fund Summary Data... 4 General Information...

More information

Project your expenses

Project your expenses Welcome to the Victory Cashflow worksheet. Spending just half an hour each month will ensure your budget is maintained and your finances are in order. The objective of this budget is to predict the future

More information

ENTERING DATA INTO WORKSHEETS IN TEAMS. To get to the budget planning worksheet in TEAMS, from the TEAMS Home Page, in the search box:

ENTERING DATA INTO WORKSHEETS IN TEAMS. To get to the budget planning worksheet in TEAMS, from the TEAMS Home Page, in the search box: ENTERING DATA INTO WORKSHEETS IN TEAMS SECTION N Getting to the Worksheets to Allocate the Budget ENTERING DATA INTO WORKSHEETS IN TEAMS In order to enter data into a budget planning worksheet, an individual

More information

ORACLE HYPERION PLANNING USER TRAINING

ORACLE HYPERION PLANNING USER TRAINING ORACLE HYPERION PLANNING USER TRAINING University of North Texas Page 1 of 35 TABLE OF CONTENTS I. INTRODUCTION... 3 A. Hyperion Terminology... 3 B. Chartfields... 3 II. INTRODUCTION TO HYPERION PLANNING...

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

Technology Assignment Calculate the Total Annual Cost

Technology Assignment Calculate the Total Annual Cost In an earlier technology assignment, you identified several details of two different health plans. In this technology assignment, you ll create a worksheet which calculates the total annual cost of medical

More information

Bond Amortization. amortization schedule. the PV, FV, and PMT functions. elements. macros

Bond Amortization. amortization schedule. the PV, FV, and PMT functions. elements. macros 8 Bond Amortization N LY O LEARNING OBJECTIVES a bond amortization schedule Use the PV, FV, and PMT functions Protect worksheet elements Automate processes with macros A T IO N Create E V A LU Financial

More information

Getting Started: Defines terms that are important to know for building a yield curve.

Getting Started: Defines terms that are important to know for building a yield curve. Word Capital Open Source Asset Management 408 West 14 th Street, 2F New York, NY 10014 www.word.am www.wordcapital.com US Yield Curve Tutorial Jake Roth Caroline Davidson Tools Needed 1 Microsoft Excel

More information

Financial Detail FY & Comparison to Prior Year Nvision Report. Position Department Review Report. First Time Set-Up for running CatPlan reports (POV)

Financial Detail FY & Comparison to Prior Year Nvision Report. Position Department Review Report. First Time Set-Up for running CatPlan reports (POV) REPORTS Overview: Checklist CatPlan navigation items Accessing CatPlan Reports Folders Report Folders types of Reports within each Report Descriptions Primary Budget Management Reports for Viewer s & Planners

More information

Business Case Modelling 2 Day Course This course is presented in London on: October, May 2018, November 2018

Business Case Modelling 2 Day Course This course is presented in London on: October, May 2018, November 2018 Business Case Modelling 2 Day Course This course is presented in London on: 30-31 October, 17-18 May 2018, 29-30 November 2018 The Banking and Corporate Finance Training Specialist Background of the trainer

More information

Aviva s Fund Centre. Financial Broker User Guide

Aviva s Fund Centre. Financial Broker User Guide Aviva s Fund Centre Financial Broker User Guide We have linked up with a leading provider of fund data services, FE, to provide you with a new improved Fund Centre. Our new Fund Centre supplies you with

More information

One day workshop Do it yourself Filing of IT Return

One day workshop Do it yourself Filing of IT Return One day workshop Do it yourself Filing of IT Return One day workshop was conducted for M.Com students to provide practical exposure on how to file income tax returns for themselves, family members and

More information

by Szilvia Juhasz, aka XSzil

by Szilvia Juhasz, aka XSzil Excel with XSzil The Power User's Starter Kit: Vol I An E-book with bonus companion / practice files by Szilvia Juhasz, aka XSzil in partnership with Excel with XSzil The Power User's Starter Kit: Volume

More information

User guide for employers not using our system for assessment

User guide for employers not using our system for assessment For scheme administrators User guide for employers not using our system for assessment Workplace pensions CONTENTS Welcome... 6 Getting started... 8 The dashboard... 9 Import data... 10 How to import a

More information

Session 2 Front Desk Tasks

Session 2 Front Desk Tasks Session 2 Front Desk Tasks Agenda Front Desk Activities: Patient Search Manage Appointments Patient Registration Manage Recalls Patient Charts Manage Schedules Eligibility Checking Front Desk Screen Overview

More information

One COPYRIGHTED MATERIAL. Financial Statements and Projections. Financial modeling is the fundamental building block of analysis in

One COPYRIGHTED MATERIAL. Financial Statements and Projections. Financial modeling is the fundamental building block of analysis in Financial modeling is the fundamental building block of analysis in investment banking. We will take a look at Walmart and analyze its financial standing, building a complete financial model as it would

More information

FMS View Expense Budget Information

FMS View Expense Budget Information FMS View Expense Budget Information Budget Information Queries To view your operating expense budget (Fund 110) in the Financial Management System (FMS), you create a budget query with specific criteria;

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

SESAM Web user guide

SESAM Web user guide SESAM Web user guide We hope this user guide will help you in your work when you are using SESAM Web. If you have any questions or input, please do not hesitate to contact our helpdesk. Helpdesk: E-mail:

More information

Business Case Modelling 2 Day Course

Business Case Modelling 2 Day Course Business Case Modelling 2 Day Course This course can be presented in-house for you on a date of your choosing 17 th 18 th May & 29 th 30 th Nov 2018 The Banking and Corporate Finance Training Specialist

More information

Go to the sign in page on the CC website:

Go to the sign in page on the CC website: How to access a fund balance in Banner (SSB) Susan Brickell, Accountant x6057 Go to the sign in page on the CC website: http://www.coloradocollege.edu Fig. 1 Click on Banner (SSB) Fig. 2 Once you are in

More information

EXCEL STATISTICAL Functions. Presented by Wayne Wilmeth

EXCEL STATISTICAL Functions. Presented by Wayne Wilmeth EXCEL STATISTICAL Functions Presented by Wayne Wilmeth Exponents 2 3 Exponents 2 3 2*2*2 = 8 Exponents Exponents Exponents Exponent Examples Roots? *? = 81? *? *? = 27 Roots =Sqrt(81) 9 Roots 27 1/3 27^(1/3)

More information

NFA Individual Application Process Webinar September 15, :30 AM CDT

NFA Individual Application Process Webinar September 15, :30 AM CDT NFA Individual Application Process Webinar September 15, 2017 10:30 AM CDT Hello, everyone. Welcome to the debut of NFA's new Individual Application and Disclosure Matter Process in ORS. My name is Christie

More information

HOW TO SET UP DENTAL INSURANCE PLANS IN DENTRIX FOR TRACKING INDIVIDUAL PLAN PERFORMANCE TO SEE THE WINNERS AND THE LOSERS

HOW TO SET UP DENTAL INSURANCE PLANS IN DENTRIX FOR TRACKING INDIVIDUAL PLAN PERFORMANCE TO SEE THE WINNERS AND THE LOSERS HOW TO SET UP DENTAL INSURANCE PLANS IN DENTRIX FOR TRACKING INDIVIDUAL PLAN PERFORMANCE TO SEE THE WINNERS AND THE LOSERS JILL NESBITT PRACTICE ADMINISTRATOR & DENTAL CONSULTANT MISSION 77, LLC 615-970-8405

More information

Pure Income Portfolio System Guide

Pure Income Portfolio System Guide From the Desk of Chad Shoop Pure Income Portfolio System Guide You can access the online portfolio 24 hours a day, seven days a week. For your ease of browsing the portfolio, I d like to share a few tips

More information

Form 162. Form 194. Form 239

Form 162. Form 194. Form 239 Below is a list of topics that we receive calls about each year with the solutions to them detailed. New features and funds have also been added. Note: Some of the topics have more than one question so

More information

TO VIEW Y OUR OPERAT ING BUDGET ON GO WEST Log into SSB and select Finance. Once there select Budget Queries ;

TO VIEW Y OUR OPERAT ING BUDGET ON GO WEST Log into SSB and select Finance. Once there select Budget Queries ; TO VIEW Y OUR OPERAT ING BUDGET ON GO WEST Log into SSB and select Finance. Once there select Budget Queries ; Once there select Budget Status by Organizational Hierarchy in the dropdown. Then Select [Create

More information

Budget Training. Self Service Banner

Budget Training. Self Service Banner Budget Training Self Service Banner Budget Reports One Tech Home 1. Log on to onetech.atu.edu and select Banner Self Service. Self Service Banner 2. Select Finance. Finance Folder 3. Select Budget Queries

More information

EPM User Guide Digest

EPM User Guide Digest EPM User Guide Digest Updated 12/1/2017 A brief overview and introduction to the EPM tool Table of Contents Page 2 What's New in EPM this Budget Cycle 2018-19? Page 11&12 Activity Summary, FS Pivot & BREC

More information

How Do You Calculate Cash Flow in Real Life for a Real Company?

How Do You Calculate Cash Flow in Real Life for a Real Company? How Do You Calculate Cash Flow in Real Life for a Real Company? Hello and welcome to our second lesson in our free tutorial series on how to calculate free cash flow and create a DCF analysis for Jazz

More information

ModelOff 2012 Questions and Answers. INTRODUCTION Answer each of the following questions relating to Financial Modeling Theory and Practice.

ModelOff 2012 Questions and Answers. INTRODUCTION Answer each of the following questions relating to Financial Modeling Theory and Practice. Theory and Practice Questions Appeared in: ModelOff 2012 Round 1 Time Allocated: 25 minutes INTRODUCTION Answer each of the following questions relating to Financial Modeling Theory and Practice. GENERAL

More information

TRADING FOREX WITH DIVERGENCE ON MT4 BY JIM BROWN DOWNLOAD EBOOK : TRADING FOREX WITH DIVERGENCE ON MT4 BY JIM BROWN PDF

TRADING FOREX WITH DIVERGENCE ON MT4 BY JIM BROWN DOWNLOAD EBOOK : TRADING FOREX WITH DIVERGENCE ON MT4 BY JIM BROWN PDF Read Online and Download Ebook TRADING FOREX WITH DIVERGENCE ON MT4 BY JIM BROWN DOWNLOAD EBOOK : TRADING FOREX WITH DIVERGENCE ON MT4 BY JIM Click link bellow and free register to download ebook: TRADING

More information

Using Forex Automated Trading Robots

Using Forex Automated Trading Robots Using Forex Automated Trading Robots Automated Trading Robots are also known as Expert Advisors or EA s. They are mainly used on the Metatrader 4 platform. What a lot of people don t know, is that you

More information

Tidemark Budget Data Entry Payroll Budget (2017)

Tidemark Budget Data Entry Payroll Budget (2017) Budget (2017) This document contains information for entering proposed budget amounts into the Tidemark software for Payroll. 1 Tidemark Accessing Budget Tidemark Data Entry Payroll Overview / Tidemark

More information

Medicare Part D. How to Use to Compare and Enroll in a Drug Plan

Medicare Part D. How to Use   to Compare and Enroll in a Drug Plan Medicare Part D How to Use www.medicare.gov to Compare and Enroll in a Drug Plan 56 Main Street, Suite 202 Springfield, VT 05156 802-885-2655 802-885-2665 (Fax) 1 Go to www.medicare.gov Click on Compare

More information

OVERVIEW GUIDE TO HOME COUNSELOR ONLINE NATIONAL FORECLOSURE MITIGATION COUNSELING (NFMC) FEATURES

OVERVIEW GUIDE TO HOME COUNSELOR ONLINE NATIONAL FORECLOSURE MITIGATION COUNSELING (NFMC) FEATURES OVERVIEW GUIDE TO HOME COUNSELOR ONLINE NATIONAL FORECLOSURE MITIGATION COUNSELING (NFMC) FEATURES WHO SHOULD USE THIS OVERVIEW GUIDE? WHAT IS NFMC? This overview guide contains information for Home Counselor

More information

Introduction to Client Online

Introduction to Client Online Introduction to Client Online Bibby Factors International Guide 1 InternationalFactoringNewClientBibbyUKopsSept15 Introduction 3 Logging In 5 Welcome Screen 6 Navigation 7 Viewing Your Account 9 Invoice

More information

Introduction to Client Online

Introduction to Client Online Introduction to Client Online Construction Finance Guide ConstructionFinanceNewClientsV2Sept15 Contents Introduction 3 Welcome to your introduction to Client Online 3 If you have any questions 3 Logging

More information

FY17 Budget Process: Planning (Task List, Data Entry, Reports) & Use of Excel

FY17 Budget Process: Planning (Task List, Data Entry, Reports) & Use of Excel FY17 Budget Process: Planning (Task List, Data Entry, Reports) & Use of Excel Shared Folders will be used to access Excel workbooks and for the Budget Administrator to provide back up materials You will

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

Gatekeeper Module Gatekeeper Version 3.5 June

Gatekeeper Module Gatekeeper Version 3.5 June Title Budget of document & Business Planning Sub Setup heading & Quick i.e version Start xxx Guide Gatekeeper Module Gatekeeper Version 3.5 June 2016 www.farmplan.co.uk 01594 545022 Gatekeeper@farmplan.co.uk

More information

COMMISSIONS USER MANUAL

COMMISSIONS USER MANUAL COMMISSIONS USER MANUAL Webcetera, Inc. All Rights Reserved Contents Welcome to EZLynx Commissions... 4 AGENCY SETUP TASKS... 4 1 Authorize Users for Commissions Access... 4 2 Create an Applicant & Policies

More information

Their opponent will play intelligently and wishes to maximize their own payoff.

Their opponent will play intelligently and wishes to maximize their own payoff. Two Person Games (Strictly Determined Games) We have already considered how probability and expected value can be used as decision making tools for choosing a strategy. We include two examples below for

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

Cass Business School

Cass Business School on ly ol Sc ho ine ss us sb as rc Fo Cass Business School Financial modeling Cass Business School Financial modeling AMT Training 2008-2017 info@amttraining.com Welcome to the course, where you will be

More information

Non-Student Accounts Receivable (Non-Student A/R) USER MANUAL Updated 03/15/18

Non-Student Accounts Receivable (Non-Student A/R) USER MANUAL Updated 03/15/18 Non-Student Accounts Receivable (Non-Student A/R) USER MANUAL Updated 03/15/18 Contact Information HSC Staff: Brock Nunn - Financial Svc. Accountant Ph# 272-5460 BANunn@salud.unm.edu Huihui Tan - Financial

More information