nvision Beyond the Ledger Spear MC SpearMC Whitepaper Series July 2004 management consulting

Size: px
Start display at page:

Download "nvision Beyond the Ledger Spear MC SpearMC Whitepaper Series July 2004 management consulting"

Transcription

1 nvision Beyond the Ledger SpearMC Whitepaper Series July 2004 Spear MC management consulting

2 nvision Beyond the Ledger I admit it I have a bias toward nvision. Blame it on my accounting background or the need to number crunch. In either case, have you ever met an accountant that didn t like a spreadsheet? When faced with creating new reports in PeopleSoft, I almost always turn to nvision. Of course nvision works great with General Ledger, but have you ever imagined using it to report on data from Asset Management, Payables, Receivables or other PeopleSoft modules? What I like best about nvision is the ability to control output and format after reports are generated. For example, a typical SQR report with incorrect column-width formatting will deliver field output as a series of asterisks, forcing the developer to modify the SQR program and re-run the report. With Excelbased nvision, you simply expand the field width to fit your format criteria. If you develop nvision reports, they are likely to be balance sheet, income statement, or expenditure-related report layouts, most commonly based on the matrix type of nvision layout. Through detailed examples of a combination matrix/query-based layout, a layout using pivot tables, and a tabular report, we will dive into some of the advanced capabilities of nvision and expand your knowledge of PeopleSoft s financial reporting tool. Query-Based, Matrix Report The first report we will walk through is a report that on the surface appears to be a matrix report. The report, named Counts/Age, is illustrated in Figure 1. The format of the report appears as a typical nvision matrix report. The columns represent different years and the rows represent company product codes. Surprisingly enough, data populating this report comes from Asset Management. Counts/Age was developed for a client looking for a management report to analyze their asset-based business. For the most part, their management reporting was driven from a combination of financial and statistical data. Over 700 statistical accounts were established in order to capture different aspects of their business. By storing the statistical information in the PS_LEDGER table, SpearMC Whitepaper Series 2 of 11

3 we were able to create all of the management reports through standard matrix nvision reports. However, the Counts/Age report was a bit of a challenge. Figure 1 Of course, there are always several ways to solve a problem or in this case write a report. In this situation, all of this clients management reports were created using nvision and since the user community was familiar with the tool, we wanted to stick with a common reporting tool. The approach was to use a query-based, matrix report that would query Asset Management tables for row counts and age data needed. nvision was also chosen because we could perform some of the calculations within Excel rather than have them calculated beforehand in the query. The first step was to create queries to calculate the counts and an average age by product type. Because of the way nvision creates its SQL and the large volume of data we were working with, performance was not acceptable. Therefore, the counts and age queries were moved to an SQR program. The SQR program was used to create the counts and average age, nvision would then be used for the report output and format. SpearMC Whitepaper Series 3 of 11

4 The SQR contains four SQL statements, two for counts/age at a consolidated level and two for counts/age at a business unit level. The first part of the SQR calculates the average age of the assets. In our situation, we have parent-child assets and we only calculate the age on the parent asset s acquisition date. Begin-SQL ON-ERROR=SQL-Error INSERT INTO PS_SM_COUNTS_AGE ( BUSINESS_UNIT, FISCAL_YEAR, ACCOUNTING_PERIOD, PRODUCT, SM_COUNTS_AVG_AGE, AS_OF_DATE ) SELECT 'CONSL', 1991,!Use 1991 as default 12,!Default Period 12-we don't need by month B.PRODUCT, (avg(to_date($as_of_date) - a.acquisition_dt)/ 365), $As_of_Date FROM PS_ASSET A, PS_COST_BAL_VW B WHERE A.BUSINESS_UNIT = B.BUSINESS_UNIT AND A.ASSET_ID = B.ASSET_ID AND B.BOOK = 'FINANCIAL' AND A.ASSET_STATUS = 'I' AND A.ASSET_ID = A.PARENT_ID GROUP BY 'CONSL', 1991, 12, B.PRODUCT, $As_of_Date End-SQL Second, the SQR counts the unique assets. Here we use a tag_number on all related assets and count the distinct tag_numbers to arrive at the count of our assets. Begin-SQL ON-ERROR=SQL-Error INSERT INTO PS_SM_COUNTS_AGE ( SpearMC Whitepaper Series 4 of 11

5 BUSINESS_UNIT, FISCAL_YEAR, ACCOUNTING_PERIOD, PRODUCT, GW_COUNTS_AVG_AGE, AS_OF_DATE ) SELECT 'CONSL', C.FISCAL_YEAR, 12, B.PRODUCT, count(distinct A.TAG_NUMBER), $As_of_Date FROM PS_ASSET A, PS_COST_BAL_VW B, PS_CAL_DETP_TBL C WHERE A.BUSINESS_UNIT = B.BUSINESS_UNIT AND A.ASSET_ID = B.ASSET_ID AND B.BOOK = 'FINANCIAL' AND A.ASSET_STATUS = 'I' AND A.ASSET_ID = A.PARENT_ID AND A.ACQUISITION_DT BETWEEN C.BEGIN_DT AND C.END_DT AND C.SETID = 'SHARE' AND C.CALENDAR_ID = 'MD' GROUP BY 'GMS', C.FISCAL_YEAR, 12, B.PRODUCT, $As_of_Date End-SQL Figure 2 shows the data in our user-defined table that was populated by the SQR. The first five rows were populated by the first SQL statement and the remaining rows were populated by the second SQL statement. The SQR also contains two similar SQL statements to calculate the age and count of our individual business units. The next step is to create a query using the data generated from the SQR. In order to use a query in a matrix report, the FISCAL_YEAR and ACCOUNTING_PERIOD fields must be present also remember that at least one field must be an aggregate. Figure 3 illustrates the query used in our report. The FISCAL_YEAR and ACCOUNTING_PERIOD requirement can be a problem for non-ledger PeopleSoft tables. However, this requirement can SpearMC Whitepaper Series 5 of 11

6 be fulfilled by joining an accounting date field to the calendar table and/or by creating a table view. In this example, we defined the table to include these required fields. Figure 2 Figure 3 SpearMC Whitepaper Series 6 of 11

7 Figure 4 Figure 4 shows the nvision layout for our report. Cell A9 in the layout represents the formula to retrieve our query data. Naturally, the % indicates that this cell contains an nvision formula. The rest of the formula in Cell A9 is seen in the layout definition screen shot (Figure 5). For each column, a timespan was defined with an absolute year and absolute accounting period of 12 as defaulted by the SQR program. The combination of the query data and the timespans populate the report. Figure 5 The last column of our report is our age data. The SQR report stored our Age data with a fiscal year of Therefore, the timespan for the Age data is defined with an absolute year of Finally, the Twenty Equivalent Units and Total Cost Equivalent Units are calculated using Excel formulas. For example, the Twenty Equivalent Units formula looks at the nploded product codes and sums the counts based on the first character of the product code. So by using the strengths of each program, SQR for data extracts and nvision/excel for reporting, formats and formulas, we are able to create a robust Asset Management report. Pivot Table Report This next example reports on Accounts Receivable DSO (Days Sales Outstanding) data. The report is illustrated in Figure 6. Originally the report was created using this format and manually linking the data in the Excel SpearMC Whitepaper Series 7 of 11

8 spreadsheet. However, through the use of an nvision tabular report and pivot tables, we were able to automate this report without changing the report format. Figure 6 The Accounts Receivable module calculates DSO data by customer and stores this information in the PS_CUST_HISTORY table. A simple tabular report was created querying the PS_CUST_HISTORY table. Next, an Excel pivot table was defined within the nvision layout. The pivot table puts the data in a fixed format (Figure 7). SpearMC Whitepaper Series 8 of 11

9 Figure 7 Once the data is in a fixed format and in a pivot table, the data can be easily incorporated into our report format. The formula to link the pivot table to the report is: =IF(current_month>=11,GETPIVOTDATA("AR Bal",'M:\A_Reports\AR Reports\[DSO Data.xls]Pivot Table'!$A$3,"Customer",LEFT($A$1,3),"Data Type","DSO","Period",11),0) Most of the GETPIVOTDATA portion of the formula was created automatically when the report was linked to the pivot table. The only changes to the formula were the IF and LEFT functions. The IF function was added to eliminate #N/A errors. The LEFT function gets our customer from cell A1. Cell A1 contains the title of our report and our customer name. By incorporating the pivot table in our nvision layout, we can easily update our main DSO report each month. To refresh the report with current month SpearMC Whitepaper Series 9 of 11

10 data, the tabular nvision report is run and the pivot table is refreshed. Then the main report spreadsheet is opened and the link to the report spreadsheet is refreshed. Tabular Report The final report utilizes Accounts Receivable aging data and an nvision tabular report. An example of the report is shown in Figure 8. This report ranks accounts receivable data based on the customer s outstanding balance. Figure 8 The tabular portion of the report is defined starting in column O and is in an area of the spreadsheet that is not printed. The output of the tabular report lists all of the customer balances along with a grand total. The printable portion of the report only shows the top 15 customers aging and a line for Others. The Others amount is defined by using an Excel formula that takes the grand total from the query output less the top 15 customers from the top portion of the report. Finally, because one Excel spreadsheet can hold several tabular reports, each sheet of our spreadsheet includes a tab for our different AR business units. SpearMC Whitepaper Series 10 of 11

11 So we have taken the raw data created by the tabular output and reformatted the data into an executive-level, management report. Getting past the basics While the previous examples were meant to give you a better feel for extending nvision capabilities, I encourage you to move beyond the basics and push the envelope of possibilities. Too many PeopleSoft users and developers are quick to rush to custom report development and unfriendly user interfaces. You ll be surprised at what can be accomplished with nvision, lack of creativity being your most common limiting factor. About the Author Kenneth Creech, CPA (kcreech@spearmc.com) is a Principal Consultant with SpearMC, a management consulting firm specializing in implementing leading best practices with top-tier financial and EPM applications. A Certified Public Accountant, he has held management positions at KPMG and BearingPoint. His most recent project includes leading a global PeopleSoft financials upgrade project at a major consumer products retailer Kenneth Creech, CPA and SpearMC Management Consulting, Inc. SpearMC and its logo are trademarks of SpearMC Management Consulting, Inc. SpearMC Whitepaper Series 11 of 11

nvision Actuals Drilldown (Non-Project Speedtypes) Training Guide Spectrum+ System 8.9 November 2010 Version 2.1

nvision Actuals Drilldown (Non-Project Speedtypes) Training Guide Spectrum+ System 8.9 November 2010 Version 2.1 nvision Actuals Drilldown (Non-Project Speedtypes) Training Guide Spectrum+ System 8.9 November 2010 Version 2.1 Table of Contents Introduction. Page 03 Logging into Spectrum.Page 03 Accessing the NVision

More information

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

University of Massachusetts Amherst * Boston * Dartmouth * Lowell * President s Office * Worcester Running nvision User Executed Reports In order to run an nvision report it is necessary to establish a scope with ChartField values to apply to a Report Request. The report scope defines the ChartFIeld

More information

PeopleSoft User Group. April 19, 2017

PeopleSoft User Group. April 19, 2017 PeopleSoft User Group April 19, 2017 User Group Agenda SE Security Review Audit, IRS 990 Submission to National Fixed Assets and Depreciation JTE Pull Dates Query revision Reporting for Camps and Activities

More information

Hyperion System 9 Financial Data Quality Management. Quick Reference Guide

Hyperion System 9 Financial Data Quality Management. Quick Reference Guide Hyperion System 9 Financial Data Quality Management Quick Reference Guide Hyperion FDM Release 9.2.0. 2000 2006 - Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion logo and Hyperion

More information

OOo Switch: 501 Things You Wanted to Know About Switching to OpenOffice.org from Microsoft Office

OOo Switch: 501 Things You Wanted to Know About Switching to OpenOffice.org from Microsoft Office OOo Switch: 501 Things You Wanted to Know About Switching to OpenOffice.org from Microsoft Office Tamar E. Granor Hentzenwerke Publishing ii Table of Contents Our Contract with You, The Reader Acknowledgements

More information

Excel Module 2: Working with Formulas and Functions

Excel Module 2: Working with Formulas and Functions 1. An Excel complex formula uses more than one arithmetic operator. a. True b. False True QUESTION TYPE: True / False LEARNING OBJECTIVES: ENHE.REDI.16.018 - Create a complex formula by pointing 2. According

More information

PeopleSoft User Group. November 12, 2014

PeopleSoft User Group. November 12, 2014 PeopleSoft User Group November 12, 2014 User Group Agenda Checking for Journal Errors Fixed Asset Conversion Budget process nvision Reports Forecast ledger 1099 Electronic Filing Updating the Journey To

More information

Hello and welcome to the CPA Australia podcast. Your weekly source of business, leadership, and public practice accounting information.

Hello and welcome to the CPA Australia podcast. Your weekly source of business, leadership, and public practice accounting information. Intro: Hello and welcome to the CPA Australia podcast. Your weekly source of business, leadership, and public practice accounting information. In this podcast I wanted to focus on Excel s functions. Now

More information

GATEWAY GIFTED RESOURCES TM

GATEWAY GIFTED RESOURCES TM GATEWAY GIFTED RESOURCES TM COMPLIMENTARY E-BOOK Alex GIFTED TEST May PREP Sophie Anya Freddie Max ABOUT THESE EXERCISES - These exercises help children, preschool to age 6, prepare for standardized tests

More information

DEVELOPING THE WORKFORCE

DEVELOPING THE WORKFORCE DEVELOPING THE WORKFORCE Assessing the quality of death certification: Instructions for the online assessment tool Resources and Tools 3 November 2016 About this series Capacity-building resources and

More information

Preparing Excel Files for Analysis

Preparing Excel Files for Analysis KNOWLEDGE BASE Preparing Excel Files for Analysis Product(s): Tableau Desktop, Tableau Public, Tableau Public Premium Version(s): All Last Modi 䂃 ed Date: 24 Mar 2016 Article Note: This article is no longer

More information

Quantrix and Excel 3 key Differences

Quantrix and Excel 3 key Differences Quantrix and Excel 3 key Differences A Quantrix Whitepaper Introduction This whitepaper educates spreadsheet users about three key conceptual and practical differences between Quantrix Modeler and Excel.

More information

The lump sum amount that a series of future payments is worth now; used to calculate loan payments; also known as present value function Module 3

The lump sum amount that a series of future payments is worth now; used to calculate loan payments; also known as present value function Module 3 Microsoft Excel Formulas Made Easy Key Terms Term Definition Introduced In Absolute reference A cell reference that is fixed to a specific cell and contains a constant value throughout the spreadsheet

More information

German Tanks: Exploring Sampling Distributions Name

German Tanks: Exploring Sampling Distributions Name Open the TI-Nspire document German_Tanks:_Exploring_Sampling_Distributions.tns. Often real life challenges indicate the importance of what we study. The following activity is based on a genuine problem

More information

Sheet Metal Punch ifeatures

Sheet Metal Punch ifeatures Lesson 5 Sheet Metal Punch ifeatures Overview This lesson describes punch ifeatures and their use in sheet metal parts. You use punch ifeatures to simplify the creation of common and specialty cut and

More information

CHM 152 Lab 1: Plotting with Excel updated: May 2011

CHM 152 Lab 1: Plotting with Excel updated: May 2011 CHM 152 Lab 1: Plotting with Excel updated: May 2011 Introduction In this course, many of our labs will involve plotting data. While many students are nerds already quite proficient at using Excel to plot

More information

Setting Up Your Company in QuickBooks Basic 2002

Setting Up Your Company in QuickBooks Basic 2002 Setting Up Your Company in QuickBooks Basic 2002 You might have wondered if there is an easier way to prepare and keep track of all of your financial records. There are several business accounting software

More information

Lesson Sampling Distribution of Differences of Two Proportions

Lesson Sampling Distribution of Differences of Two Proportions STATWAY STUDENT HANDOUT STUDENT NAME DATE INTRODUCTION The GPS software company, TeleNav, recently commissioned a study on proportions of people who text while they drive. The study suggests that there

More information

Create styles that control the display of Civil 3D objects. Copy styles from one drawing to another drawing.

Create styles that control the display of Civil 3D objects. Copy styles from one drawing to another drawing. NOTES Module 03 Settings and Styles In this module, you learn about the various settings and styles that are used in AutoCAD Civil 3D. A strong understanding of these basics leads to more efficient use

More information

Assignment 5 due Monday, May 7

Assignment 5 due Monday, May 7 due Monday, May 7 Simulations and the Law of Large Numbers Overview In both parts of the assignment, you will be calculating a theoretical probability for a certain procedure. In other words, this uses

More information

EXERCISE 1: CREATE LINE SPARKLINES

EXERCISE 1: CREATE LINE SPARKLINES EXERCISE 1: CREATE LINE SPARKLINES In this exercise you ll create line sparklines. Then you ll convert the line type to the column type. Part 1: Create the sparklines Before you start, notice that the

More information

Excel Manual Page Breaks Don't Work

Excel Manual Page Breaks Don't Work Excel Manual Page Breaks Don't Work Add a manual page break in Word 2010, and adjust page breaks automatically by Outlook.com People Calendar OneDrive Word Online Excel Online PowerPoint Word automatically

More information

Appendix 3 - Using A Spreadsheet for Data Analysis

Appendix 3 - Using A Spreadsheet for Data Analysis 105 Linear Regression - an Overview Appendix 3 - Using A Spreadsheet for Data Analysis Scientists often choose to seek linear relationships, because they are easiest to understand and to analyze. But,

More information

UNIT 1: ICT SKILLS FOR BUSINESS

UNIT 1: ICT SKILLS FOR BUSINESS HN OSBORN EXEMPLAR UNIT 1: SKILLS FOR BUSINESS TASK 5: Design, create and use a business spreadsheet ASSESSMENT CHECK LIST TASK PASS: Create a simple business Spreadsheet and at least two calculations.

More information

Discover Your Purpose FINDING YOUR. Purpose WORKSHEET. Passion + Daily Actions = Purpose-Filled Life. Nicole Houston

Discover Your Purpose FINDING YOUR. Purpose WORKSHEET. Passion + Daily Actions = Purpose-Filled Life. Nicole Houston Discover Your Purpose FINDING YOUR Purpose WORKSHEET Nicole Houston About Nicole Houston I m passionate about seeing people maximize their potential, fully express who they are and walk in the purpose

More information

Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat )

Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat ) 60 Minutes of Excel Secrets Key Terms Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat ) Add-Ins AutoCorrect Module 1 Corrects typographical,

More information

Microsoft Excel Illustrated Unit B: Working with Formulas and Functions

Microsoft Excel Illustrated Unit B: Working with Formulas and Functions Microsoft Excel 2010- Illustrated Unit B: Working with Formulas and Functions Objectives Create a complex formula Insert a function Type a function Copy and move cell entries Understand relative and absolute

More information

Financial Disclosure Management Release Notes

Financial Disclosure Management Release Notes Financial Disclosure Management 8.1.0.9 Release Notes Publication 1.0 October 2017 INTRODUCTION... 1 FDM 8.1.0.9 ENHANCEMENTS... 1 MANAGEMENT REPORTS... 2 NEW PILOT PROGRAM! MANAGEMENT REPORTS... 2 Key

More information

Drill Manager is under the Emergency Mgmt. sub-menu within the Modules area of the Navigation Menu.

Drill Manager is under the Emergency Mgmt. sub-menu within the Modules area of the Navigation Menu. Drill Manager FAQ How Do I Access Drill Manager? To get started using Drill Manager contact Raptor client services at clientservices@raptortech.com. In the subject line, just put Interested in Drill Manager

More information

Chapter 2. The Excel functions, Excel Analysis ToolPak Add-ins or Excel PHStat2 Add-ins needed to create frequency distributions are:

Chapter 2. The Excel functions, Excel Analysis ToolPak Add-ins or Excel PHStat2 Add-ins needed to create frequency distributions are: I. Organizing Data in Tables II. Describing Data by Graphs Chapter 2 I. Tables: 1. Frequency Distribution (Nominal or Ordinal) 2. Grouped Frequency Distribution (Interval or Ratio data) 3. Joint Frequency

More information

Open To Buy 08/26/2016. User Reference Manual

Open To Buy 08/26/2016. User Reference Manual Open To Buy Open To Buy 08/26/2016 User Reference Manual Copyright 2007-2016 by Celerant Technology Corp. All rights reserved worldwide. This manual, as well as the software described in it, is furnished

More information

WoV\'t B. AttevvliV\9

WoV\'t B. AttevvliV\9 ABOUT THE AUTHOR: Mike Mason is a 25-year veteran of the meetings industry. He was named one of 2013's Top 25 Most Influential People in the Meetings Industry by Successful Meetings Magazine. WoV\'t B.

More information

Upgrade to QuickBooks Online (Recommended)

Upgrade to QuickBooks Online (Recommended) Upgrade to QuickBooks Online (Recommended) DETERMINE WHAT VERSION OF QUICKBOOKS DESKTOP YOU ARE USING The Title Bar should display your company name and the working QuickBooks desktop version. REASONS

More information

10.2. Scanning Document Camera Scoring. Page 1 of 5. How do I score answer sheets using a document camera? STEP 1

10.2. Scanning Document Camera Scoring. Page 1 of 5. How do I score answer sheets using a document camera? STEP 1 Step by Step How do I score answer sheets using a document camera? STEP 1 Click on the Assessment icon in the top navigation bar. STEP 2 To locate your assessment in an assessment list, first select the

More information

CHAPTER 2 NOTES. Chapter 2 Level 1

CHAPTER 2 NOTES. Chapter 2 Level 1 CHAPTER 2 NOTES Chapter 2 Level 1 Page 83 o Open the file Chapter 2 Level 1 and save it as QC Analysis. o In cell H3, enter the formula =ROUND(G3,2) o Copy that formula down through H4:H31 o Set the format

More information

National 4/5 Administration and I.T.

National 4/5 Administration and I.T. National 4/5 Administration and I.T. Personal Learning Plan Name: This document has been produced to help you track your learning within Administration and I.T. Your teacher will tell you when you should

More information

Working with Formulas and Functions

Working with Formulas and Functions Working with Formulas and Functions Objectives Create a complex formula Insert a function Type a function Copy and move cell entries Understand relative and absolute cell references Objectives Copy formulas

More information

This tutorial will lead you through step-by-step to make the plot below using Excel.

This tutorial will lead you through step-by-step to make the plot below using Excel. GES 131 Making Plots with Excel 1 / 6 This tutorial will lead you through step-by-step to make the plot below using Excel. Number of Non-Student Tickets vs. Student Tickets Y, Number of Non-Student Tickets

More information

Electric Circuit I Lab Manual Session # 2

Electric Circuit I Lab Manual Session # 2 Electric Circuit I Lab Manual Session # 2 Name: ----------- Group: -------------- 1 Breadboard and Wiring Objective: The objective of this experiment is to be familiar with breadboard and connection made

More information

Environmental Stochasticity: Roc Flu Macro

Environmental Stochasticity: Roc Flu Macro POPULATION MODELS Environmental Stochasticity: Roc Flu Macro Terri Donovan recorded: January, 2010 All right - let's take a look at how you would use a spreadsheet to go ahead and do many, many, many simulations

More information

Microsoft Excel Math Formula Guide

Microsoft Excel Math Formula Guide Microsoft Excel is a spreadsheet software that is used to organize and calculate data. This handout will focus on how to use built-in Excel functions to solve basic mathematical calculations. Basics of

More information

NEVADA DEPARTMENT OF TRANSPORTATION Addendum 3 to RFP July 28, 2017

NEVADA DEPARTMENT OF TRANSPORTATION Addendum 3 to RFP July 28, 2017 NEVADA DEPARTMENT OF TRANSPORTATION Addendum 3 to RFP 697-16-016 July 28, 2017 Reference is made to the Request for Proposal (RFP) to Service Providers for Nevada Shared Radio Replacement Project, upon

More information

Learning Guide. ASR Automated Systems Research Inc. # Douglas Crescent, Langley, BC. V3A 4B6. Fax:

Learning Guide. ASR Automated Systems Research Inc. # Douglas Crescent, Langley, BC. V3A 4B6. Fax: Learning Guide ASR Automated Systems Research Inc. #1 20461 Douglas Crescent, Langley, BC. V3A 4B6 Toll free: 1-800-818-2051 e-mail: support@asrsoft.com Fax: 604-539-1334 www.asrsoft.com Copyright 1991-2013

More information

Using the SDT in Access ARSI Training

Using the SDT in Access ARSI Training Using the SDT in Access ARSI Training Andrea Peach, Georgetown College During our training, we used Access to create queries for accessing the Student Data Tool. This tutorial will remind you how we: 1.

More information

Term Definition Introduced in:

Term Definition Introduced in: 60 Minutes of Access Secrets Key Terms Term Definition Introduced in: Calculated Field A field that displays the results of a calculation. Introduced in Access 2010, this field allows you to make calculations

More information

Problem Set 7: Network Flows Fall 2018

Problem Set 7: Network Flows Fall 2018 Problem Set 7: Network Flows 15-295 Fall 2018 A. Soldier and Traveling time limit per test: 1 second memory limit per test: 256 megabytes : standard : standard In the country there are n cities and m bidirectional

More information

GMAT Timing Strategy Guide

GMAT Timing Strategy Guide GMAT Timing Strategy Guide Don t Let Timing Issues Keep You from Scoring 700+ on the GMAT! By GMAT tutor Jeff Yin, Ph.D. Why Focus on Timing Strategy? Have you already put a ton of hours into your GMAT

More information

Formulas: Index, Match, and Indirect

Formulas: Index, Match, and Indirect Formulas: Index, Match, and Indirect Hello and welcome to our next lesson in this module on formulas, lookup functions, and calculations, and this time around we're going to be extending what we talked

More information

Try what you learned (and some new things too)

Try what you learned (and some new things too) Training Try what you learned (and some new things too) PART ONE: DO SOME MATH Exercise 1: Type some simple formulas to add, subtract, multiply, and divide. 1. Click in cell A1. First you ll add two numbers.

More information

Quick Guide. NucleoCounter NC-3000

Quick Guide. NucleoCounter NC-3000 Quick Guide NucleoCounter NC-3000 Table of contents Setting up the FlexiCyte Protocol 2 Editing Image Capture and Analysis Parameters 3 Optimizing Exposure Time 4 Compensation for Spectral Overlap 6 Creating

More information

Microsoft Excel Lab Three (Completed 03/02/18) Transcript by Rev.com. Page 1 of 5

Microsoft Excel Lab Three (Completed 03/02/18) Transcript by Rev.com. Page 1 of 5 Speaker 1: Hello everyone and welcome back to Microsoft Excel 2003. In today's lecture, we will cover Excel Lab Three. To get started with this lab, you will need two files. The first file is "Excel Lab

More information

RosterPro by Demosphere International, Inc.

RosterPro by Demosphere International, Inc. RosterPro by INDEX OF PAGES: Page 2 - Getting Started Logging In About Passwords Log In Information Retrieval Page 3 - Select Season League Home Page Page 4 - League Player Administration Page 5 - League

More information

3/7/2015. Wind Data. Finding Historical Wind Data. Finding Historical Wind Data. Finding Historical Wind Data. Wind Power Management

3/7/2015. Wind Data. Finding Historical Wind Data. Finding Historical Wind Data. Finding Historical Wind Data. Wind Power Management Wind Data Wind Power Management Go to: http://mesonet.agron.iastate.edu/r equest/download.phtml Select the location of the automated surface observing system (ASOS) you are interested in Select the station

More information

Lab 2 Advanced Excel Introduction

Lab 2 Advanced Excel Introduction Lab 2 Advanced Excel Introduction LAB 2 QUICK VIEW At the bottom of the excel page, you can switch between and rename TABS The Paste command will copy formulas, whereas the Paste Special Values will only

More information

Clip #1 - Planning skills (0:51) Garvin

Clip #1 - Planning skills (0:51) Garvin HBS Christensen Center, Case Method in Practice: Planning a Class Session 1 Clip #1 - Planning skills (0:51) Garvin The first of the planning skills is the ability to chunk or segment the material into

More information

Such a description is the basis for a probability model. Here is the basic vocabulary we use.

Such a description is the basis for a probability model. Here is the basic vocabulary we use. 5.2.1 Probability Models When we toss a coin, we can t know the outcome in advance. What do we know? We are willing to say that the outcome will be either heads or tails. We believe that each of these

More information

This lab is to be completed using University computer labs in your own time.

This lab is to be completed using University computer labs in your own time. College of Natural Resources Department of Forest Resources Forest Measurements and Inventory Laboratory 3 Part 1: Introduction to Excel The objectives of this laboratory exercise are to: Become familiar

More information

Introduction to QTO. Objectives of QTO. Getting Started. Requirements. Creating a Bill of Quantities. Updating an existing Bill of Quantities

Introduction to QTO. Objectives of QTO. Getting Started. Requirements. Creating a Bill of Quantities. Updating an existing Bill of Quantities QTO User Manual Contents Introduction to QTO... 5 Objectives of QTO... 5 Getting Started... 5 QTO Manager... 6 QTO Layout... 7 Bill of Quantities... 8 Measure Folders... 9 Drawings... 10 Zooming and Scrolling...

More information

BUSINESS CLIENT QUESTIONNAIRE

BUSINESS CLIENT QUESTIONNAIRE BUSINESS CLIENT QUESTIONNAIRE BUSINESS INFORMATION: BUSINESS NAME: BUSINESS PRIMARY CONTACT: WORK PHONE: CELL PHONE: EMAIL 1: EMAIL 2: BUSINESS WEBSITE: TYPE OF BUSINESS - Entity type: 1120 1120S 1065

More information

2013 Processing Schedule

2013 Processing Schedule Federal Reserve Bank of Dallas - Statistics Department Federal Reserve Bank of Dallas Statistics Department Regulatory Reporting 2013 Processing Schedule (214) 922-5401 dallas-statistics@dal.frb.org Fax:

More information

Relationship to theory: This activity involves the motion of bodies under constant velocity.

Relationship to theory: This activity involves the motion of bodies under constant velocity. UNIFORM MOTION Lab format: this lab is a remote lab activity Relationship to theory: This activity involves the motion of bodies under constant velocity. LEARNING OBJECTIVES Read and understand these instructions

More information

Excel Manual X Axis Label Not Showing

Excel Manual X Axis Label Not Showing Excel Manual X Axis Label Not Showing Currently the labels in lines 31/32 are just pasted. This requires a lot of manual work. Is there a way to Level X-Axis labels. if that is not possible using data

More information

Understanding Your Money

Understanding Your Money Understanding Your Money Check the Paycheck Before we get started. Are you doing this alone? If so, fine. But if you have a spouse or any other person that shares the bills or financial obligations, make

More information

GEDmatch Home Page The upper left corner of your home page has Information about you and links to lots of helpful information. Check them out!

GEDmatch Home Page The upper left corner of your home page has Information about you and links to lots of helpful information. Check them out! USING GEDMATCH Created March 2015 GEDmatch is a free, non-profit site that accepts raw autosomal data files from Ancestry, FTDNA, and 23andme. As such, it provides a large autosomal database that spans

More information

Plotting scientific data in MS Excel 2003/2004

Plotting scientific data in MS Excel 2003/2004 Plotting scientific data in MS Excel 2003/2004 The screen grab above shows MS Excel with all the toolbars switched on - remember that some options only become visible when others are activated. We only

More information

Analytics: WX Reports

Analytics: WX Reports Analytics: WX Reports Version 18.05 SP-ANL-WXR-COMP-201709--R018.05 Sage 2017. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed, or used

More information

2016 Carey Nieuwhof. Carey Nieuwhof Communications Ltd. The rethink Group, Inc. All rights reserved.

2016 Carey Nieuwhof. Carey Nieuwhof Communications Ltd. The rethink Group, Inc. All rights reserved. CAREY NIEUWHOF CAREY NIEUWHOF High Impact Leader Published by Orange a division of The rethink Group, Inc. 5870 Charlotte Lane, Suite 300 Cumming, GA 30040 U.S.A. The Orange logo is a registered trademark

More information

Create Detail Drawings Faster Improve Detail Drawing Quality Eliminate Part Count Errors Reduce Shop and I&D Errors Do More Projects...

Create Detail Drawings Faster Improve Detail Drawing Quality Eliminate Part Count Errors Reduce Shop and I&D Errors Do More Projects... Create Detail Drawings Faster Improve Detail Drawing Quality Eliminate Part Count Errors Reduce Shop and I&D Errors Do More Projects...Get More Profit Thanks to Xzibitware, I have enough TIME to handle

More information

AECOsim Building Designer. Quick Start Guide. Chapter A08 Space Planning Bentley Systems, Incorporated

AECOsim Building Designer. Quick Start Guide. Chapter A08 Space Planning Bentley Systems, Incorporated AECOsim Building Designer Quick Start Guide Chapter A08 Space Planning 2012 Bentley Systems, Incorporated www.bentley.com/aecosim Table of Contents Space Planning...3 Sketches... 3 SpacePlanner... 4 Create

More information

DISCRIMINANT FUNCTION CHANGE IN ERDAS IMAGINE

DISCRIMINANT FUNCTION CHANGE IN ERDAS IMAGINE DISCRIMINANT FUNCTION CHANGE IN ERDAS IMAGINE White Paper April 20, 2015 Discriminant Function Change in ERDAS IMAGINE For ERDAS IMAGINE, Hexagon Geospatial has developed a new algorithm for change detection

More information

Research Training Guide

Research Training Guide Research Training Guide Objective: To help library patrons and staff get a quick start with researching information on their ancestor in the library. You will be guided through a process of searching for

More information

A FACEBOOK GUIDE FOR SALONS

A FACEBOOK GUIDE FOR SALONS A FACEBOOK GUIDE FOR SALONS A DIGITAL MARKETING GUIDE FOR SALONS Set Up Time 3/5 Fairly straightforward to set up, but you shouldn t rush through the process. Leave yourself plenty of time to get it right.

More information

Census. Quick Guide. v onwards. Bromcom Computers Plc.

Census. Quick Guide. v onwards. Bromcom Computers Plc. Census Quick Guide v5.2016 onwards Bromcom Computers Plc. Prospect House 19-21 Homesdale Road Bromley BR2 9LY http://www.bromcom.com http://support.bromcom.com Contents Before you run the Census... 3 Areas

More information

CEOCFO Magazine. Pat Patterson, CPT President and Founder. Agilis Consulting Group, LLC

CEOCFO Magazine. Pat Patterson, CPT President and Founder. Agilis Consulting Group, LLC CEOCFO Magazine ceocfointerviews.com All rights reserved! Issue: July 10, 2017 Human Factors Firm helping Medical Device and Pharmaceutical Companies Ensure Usability, Safety, Instructions and Training

More information

RICOH Ri 3000/Ri 6000

RICOH Ri 3000/Ri 6000 Direct to Garment Printer RICOH Ri 3000/Ri 6000 Printer Copier Facsimile Scanner Shirts Hats Hoodies Bags Socks Metallic Foil Professional Apparel Printing in 3 Easy Steps Discover the shortest route from

More information

Expansion/Analysis of a Card Trick Comprised of Transformations in 2-Dimensional Matrices Aaron Kazam Sherbany, Clarkstown North High School, NY

Expansion/Analysis of a Card Trick Comprised of Transformations in 2-Dimensional Matrices Aaron Kazam Sherbany, Clarkstown North High School, NY Expansion/Analysis of a Card Trick Comprised of Transformations in 2-Dimensional Matrices Aaron Kazam Sherbany, Clarkstown North High School, NY This paper illustrates the properties of a card trick which

More information

How To Create A Story Workbook. By Stephanie Morrill

How To Create A Story Workbook. By Stephanie Morrill How To Create A Story Workbook By Stephanie Morrill 2016 How to Create a Story Workbook I have the best intentions when I start a new novel. This time, I tell myself, I m going to keep track of each character

More information

TEMPERATURE MAPPING SOFTWARE FOR SINGLE-CELL CAVITIES*

TEMPERATURE MAPPING SOFTWARE FOR SINGLE-CELL CAVITIES* TEMPERATURE MAPPING SOFTWARE FOR SINGLE-CELL CAVITIES* Matthew Zotta, CLASSE, Cornell University, Ithaca, NY, 14853 Abstract Cornell University routinely manufactures single-cell Niobium cavities on campus.

More information

Completeness of Birth Registration

Completeness of Birth Registration Vol. 33 A,S Completeness of Birth Registration in the United States in 1940 ROBERT F. LENHART, M.S.P.A. Chief, Vital Statistics Consulting Service, Division of Vital Statistics, Bureau of the Census, Suitland,

More information

Advanced Excel. Table of Contents. Lesson 3 Solver

Advanced Excel. Table of Contents. Lesson 3 Solver Advanced Excel Lesson 3 Solver Pre-reqs/Technical Skills Office for Engineers Module Basic computer use Expectations Read lesson material Implement steps in software while reading through lesson material

More information

Signature Hole Analysis. What is Signature Hole Analysis and why is it such a hot topic in the industry?

Signature Hole Analysis. What is Signature Hole Analysis and why is it such a hot topic in the industry? VOLUME 12: Q2 2008 Record Just for the TM A vibration monitoring newsletter about you, for you, and by you. Signature Hole Analysis Bob Turnbull, Product Manager What is Signature Hole Analysis and why

More information

Enhancing Audit Quality and Transparency Supplement Additional information required by Article 13 of EU Regulation 537/2014

Enhancing Audit Quality and Transparency Supplement Additional information required by Article 13 of EU Regulation 537/2014 Enhancing Audit Quality and Transparency Supplement Additional information required by Article 13 of EU Regulation 537/2014 December 2017 kpmg.com Contents 1. Network arrangement 1 1.1 Legal structure

More information

CBCL Limited Sheet Set Manager Tutorial 2013 REV. 02. CBCL Design Management & Best CAD Practices. Our Vision

CBCL Limited Sheet Set Manager Tutorial 2013 REV. 02. CBCL Design Management & Best CAD Practices. Our Vision CBCL Limited Sheet Set Manager Tutorial CBCL Design Management & Best CAD Practices 2013 REV. 02 Our Vision To be the most respected and successful Atlantic Canada based employeeowned firm, delivering

More information

Excel 2003: Discos. 1. Open Excel. 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls

Excel 2003: Discos. 1. Open Excel. 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls Excel 2003: Discos 1. Open Excel 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls 3. Enter the following data into your spreadsheet: 4. Make the headings bold. Centre

More information

Excel: A Quick Start Guide For Beginners - Learn How To Boost Your Productivity Today!

Excel: A Quick Start Guide For Beginners - Learn How To Boost Your Productivity Today! Excel: A Quick Start Guide For Beginners - Learn How To Boost Your Productivity Today! Bonus Gift For You! Get free access to your complimentary book How To Get Things Done: 100+ Productivity Hacks To

More information

DiscovererFutureThinker esencerelatingachieving CaringCompetingConfiden pendabilitydiscovererfuture

DiscovererFutureThinker esencerelatingachieving CaringCompetingConfiden pendabilitydiscovererfuture AchievingCaringCompetin encedependabilitydiscove turethinkerorganizerpresen RelatingAchievingCaring ompetingconfidencedepen DiscovererFutureThinker esencerelatingachieving CaringCompetingConfiden pendabilitydiscovererfuture

More information

CircumSpect TM 360 Degree Label Verification and Inspection Technology

CircumSpect TM 360 Degree Label Verification and Inspection Technology CircumSpect TM 360 Degree Label Verification and Inspection Technology Written by: 7 Old Towne Way Sturbridge, MA 01518 Contact: Joe Gugliotti Cell: 978-551-4160 Fax: 508-347-1355 jgugliotti@machinevc.com

More information

USER GUIDE to COGNOS POWERPLAY

USER GUIDE to COGNOS POWERPLAY USER GUIDE to COGNOS POWERPLAY Cognos PowerPlay lets you view and work with cube data in a Web browser. With Cognos PowerPlay you can - explore information, either one dimension at a time or using multiple

More information

GOSYSTEM TAX 2016 RS E-FILE GUIDE LAST UPDATED: DECEMBER 22, 2016 TAX.THOMSONREUTERS.COM

GOSYSTEM TAX 2016 RS E-FILE GUIDE LAST UPDATED: DECEMBER 22, 2016 TAX.THOMSONREUTERS.COM GOSYSTEM TAX 2016 RS E-FILE GUIDE LAST UPDATED: DECEMBER 22, 2016 TAX.THOMSONREUTERS.COM Note: Please note that all screen images are valid as of December 22, 2016 and are subject to change at Thomson

More information

CLEMEX intelligent microscopy

CLEMEX intelligent microscopy CLEMEX intelligent microscopy Vision PE 5.0 Advanced Image Analysis Experience in Image Analysis Research and Quality Control Solutions With Vision PE, Clemex provides a powerful image analysis solution

More information

HAREWOOD JUNIOR SCHOOL KEY SKILLS

HAREWOOD JUNIOR SCHOOL KEY SKILLS HAREWOOD JUNIOR SCHOOL KEY SKILLS Computing Purpose of study A high-quality computing education equips pupils to use computational thinking and creativity to understand and change the world. Computing

More information

Submittal Exchange Design Team User Guide

Submittal Exchange Design Team User Guide Submittal Exchange Design Team User Guide Version 17 November 2017 Contents About This Guide... 9 Access/Permissions... 11 What is Submittal Exchange for Design?... 11 How Can I Get Submittal Exchange

More information

Alberta Reliability Standard Frequency Response and Frequency Bias Setting BAL-003-AB-1.1

Alberta Reliability Standard Frequency Response and Frequency Bias Setting BAL-003-AB-1.1 1. Purpose The purpose of this reliability standard is to: (a) require sufficient frequency response from the ISO to maintain Interconnection frequency within predefined bounds by arresting frequency deviations

More information

Understanding, Creating & Maintaining SpeedTypes

Understanding, Creating & Maintaining SpeedTypes Understanding, Creating & Maintaining SpeedTypes What is a SpeedType? To ensure transactions are correctly recorded in the General Ledger, financial administrators may establish SpeedTypes, which are 6-10

More information

Ranking Senators with Senator X s Votes

Ranking Senators with Senator X s Votes Ranking Senators with Senator X s Votes Sep 24, 2015 CSCI 0931 - Intro. to Comp. for the HumaniDes and Social Sciences 1 What We ve Accomplished Define Problem Use Bernie Sanders votes to compare how liberal

More information

Photo Scale The photo scale and representative fraction may be calculated as follows: PS = f / H Variables: PS - Photo Scale, f - camera focal

Photo Scale The photo scale and representative fraction may be calculated as follows: PS = f / H Variables: PS - Photo Scale, f - camera focal Scale Scale is the ratio of a distance on an aerial photograph to that same distance on the ground in the real world. It can be expressed in unit equivalents like 1 inch = 1,000 feet (or 12,000 inches)

More information

ESP 171 Urban and Regional Planning. Demographic Report. Due Tuesday, 5/10 at noon

ESP 171 Urban and Regional Planning. Demographic Report. Due Tuesday, 5/10 at noon ESP 171 Urban and Regional Planning Demographic Report Due Tuesday, 5/10 at noon Purpose The starting point for planning is an assessment of current conditions the answer to the question where are we now.

More information

A To draw a line graph showing the connection between the time and cost

A To draw a line graph showing the connection between the time and cost Hire a coach In this activity you will use Excel to draw line graphs which show the connection between variables in real situations. You will also study how features of the graphs are related to the information

More information

Chapter 0 Getting Started on the TI-83 or TI-84 Family of Graphing Calculators

Chapter 0 Getting Started on the TI-83 or TI-84 Family of Graphing Calculators Chapter 0 Getting Started on the TI-83 or TI-84 Family of Graphing Calculators 0.1 Turn the Calculator ON / OFF, Locating the keys Turn your calculator on by using the ON key, located in the lower left

More information

Mastering AutoCAD 2D

Mastering AutoCAD 2D Course description: Mastering AutoCAD 2D Design and shape the world around you with the powerful, flexible features found in AutoCAD software, one of the world s leading 2D design applications. With robust

More information