Monthly Formulas. Order Reports by Last Name Issue No.1 Jan Last year, this year & next year Issue No.2 Feb 2007

Size: px
Start display at page:

Download "Monthly Formulas. Order Reports by Last Name Issue No.1 Jan Last year, this year & next year Issue No.2 Feb 2007"

Transcription

1 Monthly Formulas Order Reports by Last Name Issue No.1 Jan 2007 There are three fields that make a distinct record for each employee. Rather than create three separate groups for each one, you can combine them into one field and create one group. With this approach you can group and order your report by last name. {pr_employee_mast.a_name_last} & ', ' & {pr_employee_mast.a_name_first} & ' ' & {pr_employee_mast.a_employee_number} A similar approach can be used with the GL Account. If your chart of accounts accommodates this approach you can use the following formula to create a group for each account rather than needing to set up groups for both Org and Object. {gl_master.a_org} & ' - ' & {gl_master.a_object} & ' ' & {gl_master.a_project} Last year, this year & next year Issue No.2 Feb 2007 The gl_master view holds the "current year" from the GL Parameter table. With this information you can set your reports to display the correct fiscal year without having to update the report. To display " ": totext ({gl_master.gp_curr_year},0,'','') & ' - ' & totext ({gl_master.gp_curr_year}+1,0,'','') To display "FY06-07": 'FY' & totext ({gl_master.gp_curr_year}-1,0,'','')[3 to 4] & ' - ' & totext ({gl_master.gp_curr_year},0,'','')[3 to 4] Page 1 Last Updated: 9/15/2008

2 Using Propercase to Remove All Caps Issue No.3 March 2007 In many cases, your software uses all caps when entering or saving data. This makes it easy for entering and finding data but doesn't present well on paper. Use the 'Propercase' command in the Formula Editor to remove all caps. It's easy to use and will quickly become one of your favorite tricks! For Org using the gl_master view: ProperCase ({gl_master.a_org_description}) For employee name using the pr_employee_mast view: propercase ({pr_employee_mast.a_name_first}) & ' ' & propercase ({pr_employee_mast.a_name_last}) If there are acronyms such as "CRS" or codes that use Roman numerals such as "Analyst III," you will need to create an if/then/else statement in the formula to account for those exceptions. if {gl_budget_det.p_job_class_code} = '1320' then 'Accountant II' else if {gl_budget_det.p_job_class_code} = '1335' then 'Account Technician III' else if {gl_budget_det.p_job_class_code} = '1340' then 'Account Technician II' else if {gl_budget_det.p_job_class_code} = '1430' then 'Housing Technician II' else if {gl_budget_det.p_job_class_code} = '3020' then 'Administrative Analyst II' else if {gl_budget_det.p_job_class_code} = '4070' then 'Maintenance III' else if {gl_budget_det.p_job_class_code} = '4080' then 'Maintenance II' else if {gl_budget_det.p_job_class_code} = '5100' then 'CRS Technition' else ProperCase ({prjobcls.a_job_class_desc}) Page 2 Last Updated: 9/15/2008

3 Calculating Percentages Issue No.4 April 2007 Whether you are looking for a percent remaining or percent used, use the following format wherever needed. Note that anytime you evaluate a percent, you must account for those lines where the denominator is zero. Otherwise you will get an error in Crystal stating "Division by zero." To calc % used at the object level: if Sum ({@CY Revised budget}, {gl_master.a_object}) = 0 then 0 else (Sum ({@CY Revised budget}, {gl_master.a_object}) - Sum ({@Available balance}, {gl_master.a_object})) % Sum ({@CY Revised budget}, {gl_master.a_object}) To calc % available at the department level: if Sum ({@CY Revised budget}, {@Department}) = 0 then 0 else Sum ({@Available balance}, {@Department}) % Sum ({@CY Revised budget}, {@Department}) Page 3 Last Updated: 9/15/2008

4 Shared Variable Formulas Issue No.5 May 2007 Crystal Reports allows you to pass 'variables' from the subreport to the main report, and visa versa. The most common use is to get a number from the subreport and add it to numbers in the main report. Here's how it goes. Place a formula, "SV Amount," in the subreport that establishes the shared variable: whileprintingrecords: shared numbervar amount := {field or summary}: amount Place a formula, "SV Amount2," in the main report that retrieves the shared variable: whileprintingrecords; numbervar amount2 := shared numbervar amount: amount2 Add the shared variable to existing numbers in the main report: {SV Amount2} + Sum{field or summary} You can also add the shared variables to create a summary of those numbers: whileprintingrecords; numbervar amount3 := amount3 + numbervar amount2; amount3 The placement of these formulas can be tricky and usually takes some work to get them right. You will also need to create a formula to reset the variables back to zero after the subtotals are generated. The following pages are from my Advanced Training Document The report uses a parameter to determine if the period being reported is open or closed. Page 4 Last Updated: 9/15/2008

5 A) Summary Examples Subreports & Shared Variables 25 Medicaid Expenses Design (Fig. 4-8a) 25 Medicaid Expenses Subreport Design (Fig. 4-8b) 25 Medicaid Expenses Preview (Fig. 4-8c) Page 5 Last Updated: 9/15/2008

6 ORDER OF PROCESSING EVENTS A. 1. Open or Closed = Closed 2. Generates date from SQL 3. Formats data on page a. Header b. Detail c. Footer d. Summaries e. Whileprintingrecords 4. Skips subreport on each pass due to suppression formula 5. Formulas generate totals without input from shared variables B. 1. Open or Closed = Open 2. Generates date from SQL 3. Formats data on page 4. Processes subreport on each pass 5. Shared variable formula passes data to main report 6. Formulas in main report generate totals with input from shared variables Examples of shared variable formulas from the above report. SV Object Amount - Subreport shared variable SV Obj 1 - Main report picks up shared variable for use with Object total SV Obj 1a - Main report defines variable for use in later formula Object Total - Generates a number that includes or exclude the variable. Page 6 Last Updated: 9/15/2008

7 SV Org 1 - Main report picks up shared variable for use with Org total SV Org 1a - Main report defines variable for use in later formula Org Total - Generates a number that includes or exclude the variable. As variables get to next object and org, a reset formula in the appropriate group header sets the number back to 0. In the case of a grand total, no reset formula is needed. SV Reset Obj Sets variable numbers back to 0 for the next object Page 7 Last Updated: 9/15/2008

8 Getting Correct Amounts from GLJEHOLD Issue No.6 July 2007 All journal entries are held in two MUNIS tables, glhistry and gljehold. All entries to closed periods are in glhistry. All entries to open periods are in gljehold. Three things to note here... 1) Rolling the period doesn't move the entries from gljehold to glhistry, you need to close the period. 2) All entries for your new fiscal year are in gljehold until last year is closed and the periods in the new year are closed. 3) 'glje' is the prefix for gljehold and 'glhi' is the prefix for glhistry. The fields and formulas below are interchangeable by using the correct prefix. There are a few key fields involved in these formulas. glje_year needs to be defined for the year you want to report. glje_period needs to be defined. You can do your year- to-date balance with a 'less than or equal to' statement in the formula. You can define the current period with an 'equal to' statement. glje_tran_type is used to define actual entries (1), encumbrances (4) and budget (5). glje_bud_type is used to define current year (1) or carry forward (2). glje_dr_cr identifies an entry as Debit or Credit. The following formula will return encumbrance balances for all of Notice that the period is not defined in the formula, which will return a balance as of the moment the report is run. Lastly, the view 'gl_journal_hold' is used in the formula rather than the table gljehold. if {gl_journal_hold.je_transact_type} = "4" and {gl_journal_hold.je_transact_year} = 2007 and {gl_journal_hold.je_debit_or_credit} = "C" then {gl_journal_hold.je_gross_amount}*-1 else if {gl_journal_hold.je_transact_type} = "4" and {gl_journal_hold.je_transact_year} = 2007 and {gl_journal_hold.je_debit_or_credit} = "D" then {gl_journal_hold.je_gross_amount} else 0 Page 8 Last Updated: 9/15/2008

9 The following formula is a bit more complex. I show it here to give examples of how you can customize formulas to meet your business needs. This client needed to get POs for the fiscal year being reported. The ref2 field holds the PO number and the first four characters are always the fiscal year. Thus, the formula calls those records where the first four characters of ref2 are equal to the fiscal year prompt (turned into text, of course). Second, this report needed to get a quarter s worth of expenses. The user would enter period 1, 4, 7, or 10 and the formula gets the three periods in that quarter. The last quarter, however, can also include period 13, so, we added a line specifically to get four periods instead of three. if {gl_history.h_ref2_po_no}[1 to 4] = totext ({?Fiscal Year},0,'','') and (if {?Period} = 10 then {gl_history.h_transact_period} in [{?Period},{?Period}+1,{?Period}+2,{?Period}+3] else {gl_history.h_transact_period} in [{?Period},{?Period}+1,{?Period}+2]) and {gl_history.h_transact_type} = '1' and {gl_history.h_budget_type} = '1' and {gl_history.h_debit_or_credit} = 'D' then {gl_history.h_gross_amount} else if {gl_history.h_ref2_po_no}[1 to 4] = totext ({?Fiscal Year},0,'','') and (if {?Period} = 10 then {gl_history.h_transact_period} in [{?Period},{?Period}+1,{?Period}+2,{?Period}+3] else {gl_history.h_transact_period} in [{?Period},{?Period}+1,{?Period}+2]) and {gl_history.h_transact_type} = '1' and {gl_history.h_budget_type} = '1' and {gl_history.h_debit_or_credit} = 'D' then {gl_history.h_gross_amount}*-1 else 0 Page 9 Last Updated: 9/15/2008

10 Suppressing Sections Issue No.7 January 2008 There are two ways to suppress sections of data in Crystal Reports and each requires that you enter a formula. To suppress individual sections - for instance, suppressing lines that have all zero values, click on the Section Expert icon or click the Report menu > Selection Formulas > Record. In the left window, click on the section you want to address. In the example below we are suppressing the section for the "a_object" group. Click on the X+2 formula icon to the right of Suppress (No Drill-Down) and the Format Formula Editor appears. Page 10 Last Updated: 9/15/2008

11 In the blank area in the bottom right you will enter a formula that makes a statement that is either True or False. With this formula, any line that has zero for Available Balance, Revised Budget and YTD Expended will be suppressed. Notice that this is not an "If/Then/Else" formula, it is a Boolean formula. The program knows that if the line in question is True, the line will be suppressed. To suppress an entire group - for instance, if all the values for all objects within an Org are zero and you want to suppress the entire Org, you can use the Group Suppression Formula Editor. To do this click the Report menu > Selection Formulas > Group. In the example below we are suppressing any "Org" group that has zeros in Available Balance, Revised Budget and YTD Expended. This will eliminate all group headers, detail lines and group footers for Orgs where the above statement is True. Page 11 Last Updated: 9/15/2008

12 Subreport Linking Formulas Issue No.8 March 2008 One of the reasons for using Subreports is that the data you need to add to the report isn't stored with fields that match up to ones in the table you are using. A good example of this is text or comment fields stored in the tables sptexthd and sptextdt. There are two key fields for linking in sptexthd, spth_prog and spth_idxval. You will need to create a formula in the main report that matches the 'idxval' entry. Here are a few examples. As an FYI, both of these solutions were provided to a client recently using procedures established working with Randy Mercier. Together we helped produce Permits and Business License forms that have been in use for several months now. For linking Business License license text. totext({blmaster.blms_id}) & ' ' & totext({bldetail.bldt_license_no},0,'','') For linking to Permits Text. {piappprm.piap_type} & {piapphdr.piah_ref} Page 12 Last Updated: 9/15/2008

13 Use the Subreport Links tool to link these fields to spth_idxval. Once you have done that and inserted the subreport into the main report, use the Select Expert inside the subreport to specify the spth_prog used for the entry you need. In the examples above, the BL text program for license comments is blliccm1 and blliccm2. The program for permits text is piapphdp. Page 13 Last Updated: 9/15/2008

14 Page 14 Last Updated: 9/15/2008

15 A Few Random Formulas Issue No.9 May 2008 To suppress the page header on the last page of a report, insert this formula into the condition formula for Suppress(No Drill-Down): pagenumber = totalpagecount To stop a report from printing one extra blank page at the end of the report, insert this formula into the condition formula for "New Page After": not onlastrecord To identify a date range of first and last day in a month, first set a parameter to enter the first day of the month: {?Begin Date} to date(year({?begin Date}),month({? Begin Date})+1,1)-1 Page 15 Last Updated: 9/15/2008

16 Left/Mid/Right Issue No.10 September 2008 Maybe it s because I have no programming background, but whenever I can use formulas that resemble English that is what I choose. Here are examples of Left, Mid and Right and my preferred version. Take your pick, they all work fine. To get the first two characters of a field or formula: Left ({Formulaname}, 2) or use {Formulaname}[1 to 2] To get the third, fourth and fifth characters in a string Mid ({Formulaname}, 3, 3) or use {Formulaname}[3 to 5] Getting the last three characters in a field is easy but I find that it isn't as common when working with MUNIS data. If you need to, use the following: Right({Formulaname}, 3) In the Monthly Tip from Issue #10 I used the following formula for the Group Label. Whether the label has 20, 30 or 49 characters, the range of 3 to 50 works for all of them. It strips out the first two characters used for grouping order and shows the defined title as you need to see it in your report. And if 50 isn t enough, put in the highest number you think you may need. {@Group 3}[3 to 50] Page 16 Last Updated: 9/15/2008

Financial Statements Using Crystal Reports

Financial Statements Using Crystal Reports Sessions 6-7 & 6-8 Friday, October 13, 2017 8:30 am 1:00 pm Room 616B Sessions 6-7 & 6-8 Financial Statements Using Crystal Reports Presented By: David Hardy Progressive Reports Original Author(s): David

More information

Crystal Reports 7. Overview. Contents. Evaluation Times and the Two-Pass Report Processing Model

Crystal Reports 7. Overview. Contents. Evaluation Times and the Two-Pass Report Processing Model Crystal Reports 7 Overview Contents This paper is written for Crystal Reports 7 Report Designer (CR) and Seagate Info Report Designer (SI). However, it also applies to CR 5 and 6. Exceptions include features

More information

AIMS. Statement Formatter Version 6.3 May 1, 2006

AIMS. Statement Formatter Version 6.3 May 1, 2006 AIMS Statement Formatter Version 6.3 May 1, 2006 Copyright Western Canadian Software, 2006 - TABLE OF CONTENTS What About Statement Formatter?... 1 Statement Formatter Menu Options... 2 Format Maintenance...3

More information

Crystal Reports. Overview. Contents. Cross-Tab Capabilities & Limitations in Crystal Reports (CR) 6.x

Crystal Reports. Overview. Contents. Cross-Tab Capabilities & Limitations in Crystal Reports (CR) 6.x Crystal Reports Cross-Tab Capabilities & Limitations in Crystal Reports (CR) 6.x Overview Contents This document provides an overview of cross-tab capabilities and limitations in Crystal Reports (CR) 6.

More information

FIN 850: UDW+ Finance Ad Hoc Reports Training Version 2.9

FIN 850: UDW+ Finance Ad Hoc Reports Training Version 2.9 FIN 850: UDW+ Finance Ad Hoc Reports Training Version 2.9 Program Services Office & Decision Support Group Table of Contents Subject Areas... 1 Criteria... 2 Exercise 1: Create a Budget Summary Report...

More information

Creating Custom Financial Statements Using

Creating Custom Financial Statements Using Creating Custom Financial Statements Using Steve Collins Sage 50 Solution Provider scollins@iqacct.com 918-851-9713 www.iqaccountingsolutions.com Financial Statement Design Sage 50 Accounting s built in

More information

TRAINING GUIDE. Beyond the Basic Crystal

TRAINING GUIDE. Beyond the Basic Crystal TRAINING GUIDE Beyond the Basic Crystal Beyond the Basic Crystal Reports The following items are just a few issues encountered in creating custom reports. Table of Contents Important items shown elsewhere:...

More information

FIN 850: UDW+ Ad Hoc Reports Training 2014 Version 2.4

FIN 850: UDW+ Ad Hoc Reports Training 2014 Version 2.4 FIN 850: UDW+ Ad Hoc Reports Training 2014 Version 2.4 Program Services Office & Decision Support Group Table of Contents Subject Areas... 1 Criteria Tab... 2 Create an Analysis... 3 Results Tab... 5 Rearrange

More information

Crystal Reports. Overview. Contents. Charting on Print-Time Formulas

Crystal Reports. Overview. Contents. Charting on Print-Time Formulas Crystal Reports Charting on Print-Time Formulas Overview Contents In Crystal Reports, you cannot create a chart off a print-time, or WhilePrintingRecords formula. However, in Crystal Reports 9 and above

More information

TRAINING GUIDE. Advanced Crystal 3

TRAINING GUIDE. Advanced Crystal 3 TRAINING GUIDE Advanced Crystal 3 Using Crystal Reports with Lucity Advanced Examples 3 The last in the series, this workbook is designed for experienced Crystal Reports users. At the end of this series,

More information

How to Run an Account Detail Report GL-329

How to Run an Account Detail Report GL-329 1. Navigate to GW GL Entry and select Reports > Request > Run Standard Reports. 2. Select Single Request (default) and click OK. 3. In the Name field, click the ellipsis ( ) and select GWU Account Detail

More information

CHAPTER 2: FINANCIAL REPORTING

CHAPTER 2: FINANCIAL REPORTING Chapter 2: Financial Reporting CHAPTER 2: FINANCIAL REPORTING Objectives The objectives are: Describe filtering and analysis windows related to the Chart of Accounts. Provide a demonstration of setting

More information

Crystal Reports 7. Overview. Contents. Parameter Fields

Crystal Reports 7. Overview. Contents. Parameter Fields Overview Contents This document provides information about parameter fields in Crystal Reports (CR) version 7.x. Definition of terms, architecture, usage and features are discussed. This document should

More information

General Ledger Report Writer Users Guide

General Ledger Report Writer Users Guide General Ledger Report Writer Users Guide Updated 02/18/2015 Page 1 of 15 General Ledger Report Writer The new GL report writer is template driven. The template stores rows and columns that make up the

More information

Crystal Reports Compiled by Christopher Dairion

Crystal Reports Compiled by Christopher Dairion Crystal Reports Compiled by Christopher Dairion Not for customer distribution! When you install Crystal Reports 9, the Excel and Access Add-In are added automatically. A Crystal Report Wizard 9 menu option

More information

Tabs3, PracticeMaster, and the pinwheel symbol ( trademarks of Software Technology, Inc. Portions copyright Microsoft Corporation

Tabs3, PracticeMaster, and the pinwheel symbol ( trademarks of Software Technology, Inc. Portions copyright Microsoft Corporation Tabs3 General Ledger Software Reseller/User Tutorial Version 16.1 for November 2011 Sample Data Copyright 1983-2013 Software Technology, Inc. 1621 Cushman Drive Lincoln, NE 68512 (402) 423-1440 http://www.tabs3.com

More information

RELEASE NOTES DECEMBER This document explains new product enhancements added to the ADMINS Unified Community for Windows General Ledger system.

RELEASE NOTES DECEMBER This document explains new product enhancements added to the ADMINS Unified Community for Windows General Ledger system. GENERAL LEDGER RELEASE NOTES DECEMBER 2018 This document explains new product enhancements added to the ADMINS Unified Community for Windows General Ledger system. CONTENTS 1. MAINTAIN ACCOUNTS IN CLOSED

More information

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee Financial Reporting Using Microsoft Excel Presented By: Jim Lee Table of Contents Financial Reporting Overview... 4 Reporting Periods... 4 Microsoft Excel... 4 SedonaOffice General Ledger Structure...

More information

TRAINING GUIDE. Advanced Crystal 1

TRAINING GUIDE. Advanced Crystal 1 TRAINING GUIDE Advanced Crystal 1 Using Crystal Reports with Lucity Advanced Examples 1 The fifth of a seven-part series, this workbook is designed for Crystal Reports users with some experience, who wish

More information

MultiSite Suite: General Ledger

MultiSite Suite: General Ledger MultiSite Suite: General Ledger User s Manual version 2.2.97 Copyright & Trademarks Copyright Notice and Trademarks 2003 by Brent Lawrence, LLC. All rights reserved. Reprinted and edited by MultiSite Systems,

More information

LEGISLATIVE BUDGET BOARD. ABEST/USAS Reconciliation Reporting

LEGISLATIVE BUDGET BOARD. ABEST/USAS Reconciliation Reporting LEGISLATIVE BUDGET BOARD ABEST/USAS Reconciliation Reporting Instructions for State Agencies and Institutions LEGISLATIVE BUDGET BOARD JANUARY 2017 Table of Contents Document Conventions... 2 Getting Started...

More information

Munis General Journal Entry/Proof

Munis General Journal Entry/Proof Munis General Journal Entry/Proof Procedural Documentation For more information, visit www.tylertech.com. General Journal Entry/Proof Objective This document provides instructions on how to enter a manual

More information

MYOB EXO ACCOUNTANT S ASSISTANT

MYOB EXO ACCOUNTANT S ASSISTANT MYOB EXO ACCOUNTANT S ASSISTANT User Guide EXO BUSINESS M YO B ENT ERPRI S E S O L U T I O N S Important Notices This material is copyright. It is intended only for MYOB Enterprise Solutions Business Partners

More information

What's New in General Ledger Munis - Financials: General Ledger

What's New in General Ledger Munis - Financials: General Ledger [MU-FN-4-F] [MU-FN-10-E] What's New in General Ledger Munis - Financials: General Ledger CLASS DESCRIPTION This session will highlight some of the new functionality available in the version 11.2 of the

More information

WISDM. User s Manual. Contacts: General Ledger Access/Password/New Accounts or )

WISDM. User s Manual. Contacts: General Ledger Access/Password/New Accounts or ) WISDM User s Manual Contacts: General Ledger Access/Password/New Accounts (generalledger@uwplatt.edu or 342 1346) Bobbie Post Reports/Queries/Transactions (postbo@uwplatt.edu or 342 1346) https://wisdm2.doit.wisc.edu/wisdm2

More information

MYOB. User Guide

MYOB. User Guide MYOB User Guide 2016.3 Table of Contents Global Financial Period Setting... 2 Licensing... 2 GL Reports... 4 Ledger Reconciliation... 5 Data Verification Menu Item... 7 Tax Returns... 8 Tax by Rate Type

More information

Page 1 of 10 Title: Patch 9D Run User-Defined Report Reload Print Report: Info Sheet Report 10/08/2012 16:43:58 Query: Info Sheet Patch 9D Count: 56 Select: Choose Selection Set Transition CR ID Module

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

GENERAL LEDGER. MaddenCo Inc. Revised March Copyright 2017 by MaddenCo, Inc All rights reserved.

GENERAL LEDGER. MaddenCo Inc. Revised March Copyright 2017 by MaddenCo, Inc All rights reserved. GENERAL LEDGER MaddenCo Inc. Revised March 2017 Copyright 2017 by MaddenCo, Inc All rights reserved. Please understand that MaddenCo has expended substantial sums in developing and maintaining its software,

More information

Check the Repeat branch checkbox to automatically copy the branch used previously to the next transaction line.

Check the Repeat branch checkbox to automatically copy the branch used previously to the next transaction line. Repeat Branch Print Transactions GL Code Details Inv No Chq No Debit Credit Foreign Check the Repeat branch checkbox to automatically copy the branch used previously to the next transaction line. Check

More information

Creating a Pivot Table

Creating a Pivot Table Contents Introduction... 1 Creating a Pivot Table... 1 A One-Dimensional Table... 2 A Two-Dimensional Table... 4 A Three-Dimensional Table... 5 Hiding and Showing Summary Values... 5 Adding New Data and

More information

Accounting Services Guide FRx Drilldown Viewer Actual vs Budget Reports - Procedures

Accounting Services Guide FRx Drilldown Viewer Actual vs Budget Reports - Procedures Table of Contents Introduction... 2 Retrieve a Report... 3 Open a Report for Viewing... 5 Save a Report... 9 Export a Report... 11 Print a Report... 15 Introduction Departmental access to the Actual versus

More information

FAST Finance Reporting

FAST Finance Reporting FAST Finance Reporting User Guide FAST Version 4.3+ Millennium FAST CSU FAST 4 3+ user guide v1_3.docx (FOAP = FUND ORGANISATION ACCOUNT PROGRAM) 1 BLANK If printing this user guide, please print on both

More information

Banner Gateway Billing

Banner Gateway Billing Gateway Banner Gateway Billing The Banner Finance Transaction Gateway System (Gateway) allows departments to submit files and spreadsheets of accounting transactions to Banner Finance for posting. Please

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

Crystal Reports 9.0 Power User Workshop

Crystal Reports 9.0 Power User Workshop Crystal Reports 9.0 Power User Workshop 2003 FastPlanet Technologies Crystal Reports 9.0 Power User Workshop FastPlanet Technologies 1-800-425-0831 sales@fastplanet.com Published March 6, 2003 i Crystal

More information

v.5 General Ledger: Best Practices (Course #V221)

v.5 General Ledger: Best Practices (Course #V221) v.5 General Ledger: Best Practices (Course #V221) Presented by: Mark Fisher Shelby Consultant 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective

More information

P E O P L E S O F T 9. 2 J O U R N A L E NTRY

P E O P L E S O F T 9. 2 J O U R N A L E NTRY P E O P L E S O F T 9. 2 J O U R N A L E NTRY CONTENTS JOURNAL ENTRY NAVIGATION... 2 JOURNAL HEADER... 2 STEP 1: ADD A NEW VALUE... 3 STEP 2: JOURNAL HEADER... 4 STEP 3: JOURNAL ATTACHMENTS... 5 STEP 4:

More information

ethority Training Guide University of Hawaii ethority - Creating User DataBooks From Templates Version 1.0.0

ethority Training Guide University of Hawaii ethority - Creating User DataBooks From Templates Version 1.0.0 University of Hawaii ethority - Creating User DataBooks From Templates Version 1.0.0 Table of Contents Objectives... 3 Resources... 4 ethority Glossary... 5 Steps to Creating a Report:... 7 Learning Through

More information

Chapter 2 The Design Window

Chapter 2 The Design Window Chapter 2 Objectives Chapter 2 The Design Window Learn about Crystal sections Move objects Use Toolbars, Icons, and Menus Format fields Add Special Fields Change a Group Use the Crystal Field Explorer

More information

General Ledger 3000 Reference Manual Prophet 21 FASPAC 4.2

General Ledger 3000 Reference Manual Prophet 21 FASPAC 4.2 General Ledger 3000 Reference Manual Prophet 21 FASPAC 4.2 Table of Contents INTRODUCTION 7 Getting Started 7 Account Numbers 8 AR and AR Transactions 8 Profit Centers and Financial Entities 9 Financial

More information

Manual Ext. Analysis. Customers and Partners. OPplus. Prepared for. Project. Prepared by. gbedv

Manual Ext. Analysis. Customers and Partners. OPplus. Prepared for. Project. Prepared by. gbedv Manual Ext. Analysis Prepared for Customers and Partners Project OPplus Prepared by Contents General Informaton... 4 Manual Structure... 4 Descripion of Icons... 4 OPplus Navigation Area... 5 OPplus License

More information

Financial Statement Generator Script

Financial Statement Generator Script Financial Statement Generator Script Clip Link: http://www.eshbel.com/movie_search/financial_statement_generator.htm. instructions Note: Yellow highlights indicate action Introduction (00:00-01:12) This

More information

Michigan Tech University Banner Finance Self-Service User Guide. Revised 1/11/17

Michigan Tech University Banner Finance Self-Service User Guide. Revised 1/11/17 Michigan Tech University Banner Finance Self-Service User Guide Revised 1/11/17 TABLE OF CONTENTS Chart Terminology... 3 MTU Fiscal Year... 3 Web Resource Banner and Reporting... 3 Reports Listing your

More information

WinGL. General Ledger Quick Guide

WinGL. General Ledger Quick Guide WinGL General Ledger Quick Guide Interface A/P for current month Interface P/R for current month Interface WinTAR for current month Interface WinHAP for current month WinGL Monthly Processing Checklist

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

HYPERION ENTERPRISE ROLLOVER GUIDE

HYPERION ENTERPRISE ROLLOVER GUIDE HYPERION ENTERPRISE ROLLOVER GUIDE Rollovers move information from a source category to a destination category and clear data from the source category. DISCLAIMER: Your company s specific business requirements,

More information

Management Reporter. FRx not supported by Microsoft since July 2014

Management Reporter. FRx not supported by Microsoft since July 2014 Management Reporter FRx not supported by Microsoft since July 2014 Log in with Dynamics GP ID and password for Report Designer Can check the box to Save my credentials Choose the company with Curr and

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

General Journal Entry/Proof

General Journal Entry/Proof General Journal Entry/Proof Use the following steps to create a manual general journal entry: Open the General Journal Entry/Proof program. Financials >General Ledger > Journal Entry/History> General Journal

More information

DESK REFERENCE. Decision Support Only User Gaining DSOnly access and the basics of using Decision Support. Purpose

DESK REFERENCE. Decision Support Only User Gaining DSOnly access and the basics of using Decision Support. Purpose DESK REFERENCE Decision Support Only User Gaining DSOnly access and the basics of using Decision Support. A Decision Purpose Support (DS) provides the ability to grant limited access to faculty and staff

More information

Table of Contents C RYSTAL R EPORTS T UTORIAL

Table of Contents C RYSTAL R EPORTS T UTORIAL C RYSTAL R EPORTS T UTORIAL Table of Contents OVERVIEW... 1 PLANNING THE REPORT... 1 PROCEDURES FOR EXPORTING... 3 Preparing to Export... 3 Setting Parameters... 6 PROCEDURES FOR CREATING A REPORT... 15

More information

Crystal Report Manual READ ONLINE

Crystal Report Manual READ ONLINE Crystal Report Manual READ ONLINE If searching for the book Crystal report manual in pdf format, then you've come to the faithful website. We presented full variation of this book in DjVu, doc, PDF, txt,

More information

File Name: Data File Pivot Tables 3 Hrs.xlsx

File Name: Data File Pivot Tables 3 Hrs.xlsx File Name: Data File Pivot Tables 3 Hrs.xlsx Lab 1: Create Simple Pivot Table to Explore the Basics 1. Select the tab labeled Raw Data Start and explore the data. 2. Position the cursor in Cell A2. 3.

More information

CALCASIEU PARISH SCHOOL BOARD SCHOOL ACTIVITY FUNDS EPES ACCOUNTING PROCEDURES MANUAL

CALCASIEU PARISH SCHOOL BOARD SCHOOL ACTIVITY FUNDS EPES ACCOUNTING PROCEDURES MANUAL CALCASIEU PARISH SCHOOL BOARD SCHOOL ACTIVITY FUNDS EPES ACCOUNTING PROCEDURES MANUAL START UP 4 Log in 4 Main Screen 5 Exit 5 UTILITIES 5 Preferences 5 Change Password 7 Year End Closing 7 View Prior

More information

General Ledger Updated December 2017

General Ledger Updated December 2017 Updated December 2017 Contents About General Ledger...4 Navigating General Ledger...4 Setting Up General Ledger for First-Time Use...4 Setting Up G/L Parameters...5 Setting the G/L Parameters...6 Setting

More information

Review Financial Information - Ledger Inquiry Step 1

Review Financial Information - Ledger Inquiry Step 1 Step 1 View ledger detail and summary information based on selected criteria. The example below shows how to run the report for a capital project. Screen shots at the end show the criteria to use to run

More information

Inquire on Account Balances

Inquire on Account Balances The Inquire on Account Balances form allows the retrieval of Accounting Flexfield balances: For a Range of Accounting Periods For a selected Currency USD STAT (used to store statistical amounts that can

More information

GENERAL LEDGER USER'S GUIDE

GENERAL LEDGER USER'S GUIDE GENERAL LEDGER USER'S GUIDE This document is non-technical and explains the operation of the General Ledger programs. It is intended for both accounting staff and operators. COPYRIGHT 2017 AgTrax Copyright

More information

OSR Reporting Series. OSR Payments Report

OSR Reporting Series. OSR Payments Report OSR Reporting Series OSR Payments Report Webinar logistics and materials Scheduled for 60 minutes The audio is one-way. Use the chat window to type your questions. We will answer questions at the end This

More information

Advanced Crystal Reporting Database Linking, Subreports and Historical Tables. Millie Ferrare, QA Director April 2017

Advanced Crystal Reporting Database Linking, Subreports and Historical Tables. Millie Ferrare, QA Director April 2017 Advanced Crystal Reporting Database Linking, Subreports and Historical Tables Millie Ferrare, QA Director April 2017 Crystal Tips and Best Practices How to Insert a Subreport in Crystal 1. Bring up the

More information

Chapter 3 Running Totals

Chapter 3 Running Totals Chapter 3 Objectives Chapter 3 Running Totals Recognize effects of Multi-Pass Processing. Create Running Total fields. Create Conditional Running Totals Use a Running Total to Summarize a Group Scenario

More information

TRAINING GUIDE. Advanced Crystal 1

TRAINING GUIDE. Advanced Crystal 1 TRAINING GUIDE Advanced Crystal 1 Using Crystal Reports with Lucity Advanced Examples 1 The fifth of a seven-part series, this workbook is designed for Crystal Reports users with some experience, who wish

More information

Use the orange/blue FRS Tip sheet to find commonly asked questions, login/logoff procedures, screen numbers for commonly used screens and lots more!

Use the orange/blue FRS Tip sheet to find commonly asked questions, login/logoff procedures, screen numbers for commonly used screens and lots more! FRS Tips When logging out of FRS, make sure you type in SO at the Screen: prompt. If you just click on the X in the upper right corner you are not breaking your connection to the mainframe. If you do not

More information

MICROSOFT DYNAMICS GP GENERAL LEDGER YEAR-END CLOSING PROCEDURES

MICROSOFT DYNAMICS GP GENERAL LEDGER YEAR-END CLOSING PROCEDURES GENERAL LEDGER YEAR-END CLOSING PROCEDURES Before you perform year-end closing procedures, you will need to: complete the posting of all entries and adjusting entries to reflect the transactions for the

More information

In this example, we will prepare a Pre-Encumbrance to indicate commitments for our graduate student researchers' salary.

In this example, we will prepare a Pre-Encumbrance to indicate commitments for our graduate student researchers' salary. Enterprise Systems Solutions Quick Reference Guide Prepare a Pre-Encumbrance Journal In this example, we will prepare a Pre-Encumbrance to indicate commitments for our graduate student researchers' salary.

More information

Munis Accounting Entries

Munis Accounting Entries Munis Accounting Entries Procedural Documentation For more information, visit www.tylertech.com. Accounting Entries Overview The Accounting Entries program displays and maintains general journal entries,

More information

NextGen Financial Management

NextGen Financial Management NextGen Financial Management Transactions & Account Presented by Local Government Corporation Resource 2016 NextGen Transactions and Account Import Transactions Transaction Batches Transactions Transaction

More information

ClubConnect General Ledger Financials with Budgets, Ratios, and Memo Accounts

ClubConnect General Ledger Financials with Budgets, Ratios, and Memo Accounts Financials with Budgets, Ratios, and Memo Accounts Webinar Topics Budget Information on Financials... 3 Assign Budget Versions to the Financials... 3 Select Budget Formats for Financials... 4 Ratios...

More information

Reports in QuickBooks

Reports in QuickBooks QuickBooks Online Student Guide Chapter 11 Reports in QuickBooks Chapter 2 Chapter 11 In this chapter, you ll learn how QuickBooks helps you find information in your business. Lesson Objectives In this

More information

CSV WHAT IS IT? This document provides the answers to the following questions: For which Cognos report(s) do I request the 'CSV' version?

CSV WHAT IS IT? This document provides the answers to the following questions: For which Cognos report(s) do I request the 'CSV' version? CSV WHAT IS IT? This document provides the answers to the following questions: What is 'CSV'? For which Cognos report(s) do I request the 'CSV' version? Where do I select the CSV version of GL008? What

More information

SMU Financials Created on April 29, 2011

SMU Financials Created on April 29, 2011 Created on April 29, 2011 Notice 2011, Southern Methodist University. All Rights Reserved. Published 2011. The information contained in this document is proprietary to Southern Methodist University. This

More information

DynacViews. User Guide. Version 2.0 May 1, 2009

DynacViews. User Guide. Version 2.0 May 1, 2009 DynacViews User Guide Version 2.0 May 1, 2009 Copyright 2003 by Dynac, Inc. All rights reserved. No part of this publication may be reproduced or used in any form without the express written permission

More information

Crystal Reports. In Depth. Selecting an ODBC DataSource

Crystal Reports. In Depth. Selecting an ODBC DataSource Crystal Reports In Depth Session XII Reports outside of halfile Selecting an ODBC Datasource Selecting a second table and linking it to the primary table Grouping data records Using formulas Adding parameters

More information

How are the customer records from all the other countries grouped in SAP Crystal Reports? Please choose the correct answer.

How are the customer records from all the other countries grouped in SAP Crystal Reports? Please choose the correct answer. SAP EDUCATION SAMPLE QUESTIONS: C_BOCR_13 SAP Certified Application Associate Crystal Reports 2013 Disclaimer: These sample questions are for self-evaluation purposes only and do not appear on the actual

More information

Crystal Reports XI Designer 2 Workshop

Crystal Reports XI Designer 2 Workshop Crystal Reports XI Designer 2 Workshop Vision Harvest, Inc. 1-888-236-8087 sales@visionharvest.com Published: April 11, 2005 ALL RIGHTS RESERVED This course covers Crystal Reports XI No part of this manual

More information

PeopleSoft (9.1): Journals and Internal Funds Transfer (IFT)

PeopleSoft (9.1): Journals and Internal Funds Transfer (IFT) Financial Services Training Guide PeopleSoft (9.1): Journals and Internal Funds Transfer (IFT) Page 1 Table of Contents 1 Journals: an overview... 3 1.1. What is a journal?... 3 1.2. Journal types/sources...

More information

Analysis/Intelligence: Data Model - Configuration

Analysis/Intelligence: Data Model - Configuration Analysis/Intelligence: Data Model - Configuration User Guide Table of Contents Data Model - Configuration... 1 Section 1: Folder Expense Types & Categories, Payment Types... 1 Expense Types & Categories,

More information

PrepKing. PrepKing MB5-294

PrepKing. PrepKing MB5-294 PrepKing Number: MB5-294 Passing Score: 800 Time Limit: 120 min File Version: 9.0 http://www.gratisexam.com/ PrepKing MB5-294 Exam A QUESTION 1 FRx comes with predefined font styles. To modify these styles

More information

BillQuick 2011 Update Log

BillQuick 2011 Update Log BillQuick 2011 Update Log List of Items addressed in release 12.0.68 August 27, 2012 1. In Expense Log screen, View By Project mode, the Project drop-down would allow us to enter project Ids that were

More information

Readers are wary of out of date content, so it's important to actively manage the information you publish.

Readers are wary of out of date content, so it's important to actively manage the information you publish. Web Style Guide Important tips for writing for the web People don t usually read for pleasure on the website. They are looking for a specific piece of information, and they don't want extraneous junk to

More information

Stanford. Budget Management Variance Reporting. Variance Reporting Process Guide. What. Who. Why. When. Prerequisites:

Stanford. Budget Management Variance Reporting. Variance Reporting Process Guide. What. Who. Why. When. Prerequisites: What Stanford Process Guide Use this guide to complete year end variance reports for both the University Budget Office (UBO) and the Financial Analysis and Information Reporting group (FAIR). Final narratives

More information

Monthly Statement View (Web Statement)

Monthly Statement View (Web Statement) Monthly Statement View (Web Statement) The Web Statement provides financial information for Purposes under your administration. Use this link - www.udel.edu/monthlystatement. Features to note: The current

More information

LESSON 10 Accounts Payable Setup

LESSON 10 Accounts Payable Setup LESSON 10 Learning Objectives In this lesson you will: 1. activate the module 2. access the A/P Transactions Visual Process Flow 3. set up the Options 4. enter account sets 5. enter distribution codes

More information

CYMA IV. Accounting for Windows. General Ledger Training Guide. Training Guide Series

CYMA IV. Accounting for Windows. General Ledger Training Guide. Training Guide Series CYMA IV Accounting for Windows Training Guide Series General Ledger Training Guide December 2015 CYMA Systems, Inc. 2330 West University Drive, Suite 4 Tempe, AZ 85281 (800) 292-2962 Fax: (480) 303-2969

More information

Crystal Reports. Overview. Contents. Displaying PercentOfCount and/or PercentOfDistinctCount summaries in a cross-tab

Crystal Reports. Overview. Contents. Displaying PercentOfCount and/or PercentOfDistinctCount summaries in a cross-tab Crystal Reports Displaying PercentOfCount and/or PercentOfDistinctCount summaries in a cross-tab Overview In a Crystal Reports (CR) 9 cross-tab, the summary options, PercentOfDistinctCount and PercentOfCount,

More information

American Data Group Inc. Calendar Year End. Help Document

American Data Group Inc. Calendar Year End. Help Document American Data Group Inc. Calendar Year End Help Document Table of Contents System Administration...3 Payroll...4 Accounts Payable/Purchasing...7 Accounts Receivables...8 General Ledger...9 System Administration

More information

Crystal Reports 9.0 Quick Start Workshop

Crystal Reports 9.0 Quick Start Workshop Crystal Reports 9.0 Quick Start Workshop FastPlanet Technologies 1-800-425-0831 sales@fastplanet.com Published December 26, 2002 i ALL RIGHTS RESERVED ISBN 1-930026-32-3 This course covers Crystal Reports

More information

General Ledger Subsystems Reference Manual. Version 11.0 Revision Date 5/1/04

General Ledger Subsystems Reference Manual. Version 11.0 Revision Date 5/1/04 Reference Manual Version 11.0 Revision Date 5/1/04 The documentation in this publication is provided pursuant to a Sales and Licensing Contract for the Prophet 21 System entered into by and between Prophet

More information

Introduction to WISDM/WISER

Introduction to WISDM/WISER Accounting Services 1 Introduction to WISDM/WISER Last Updated: December, 2014 Objective 2 WISDM/WISER Features Shared Financial Systems Overview Basic Accounting Terminology Used at UW System Navigation

More information

NorthStar Club Management System

NorthStar Club Management System NorthStar Club Management System The Version 3.2.0 GL- 03252008 March 25, 2008 CONTENTS OVERVIEW OF THE GL (GENERAL LEDGER) MODULE... 5 ACCESSING THE GL MODULE... 6 GL INTRODUCTION:... 8 Inquiry... 8 Admin...

More information

Set this to Y to save the report to file instead of printing it.

Set this to Y to save the report to file instead of printing it. The General Ledger Budget code Branches No Zero Sub A/C Clarity Save to File Printer Name Copies Select the budget for which the report is to be run from the drop-down list, which is accessed using the

More information

WinGL General Ledger Users Guide

WinGL General Ledger Users Guide WinGL General Ledger Users Guide Documentation Manual Date: August 2011 wingl Table of Contents wingl Table of Contents... 2 General Information... 6 Purpose... 6 Getting Started with wingl... 6 Applications

More information

Expense Pay: Expense Pay Extract

Expense Pay: Expense Pay Extract Expense Pay: Expense Pay Extract Specification Applies to these SAP Concur solutions: Expense Professional/Premium edition Standard edition Travel Professional/Premium edition Standard edition Invoice

More information

Sage Financial Reporter User's Guide

Sage Financial Reporter User's Guide Sage 300 2017 Financial Reporter User's Guide This is a publication of Sage Software, Inc. Copyright 2016. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

More information

Munis Account Central

Munis Account Central Munis Account Central Procedural Documentation For more information, visit www.tylertech.com. Accounts The Accounts option provides access to the Account Central program. This program offers an overview

More information

How to Enter a Purchase Order Change Order

How to Enter a Purchase Order Change Order Module: Purchasing Topic: Purchase Orders How to Enter Purchase Order Change Orders Munis Version 11.3 How to Enter a Purchase Order Change Order Objective This document provides step-by-step instruction

More information

Sage ERP Accpac 6.0A. Financial Link Professional I User Guide

Sage ERP Accpac 6.0A. Financial Link Professional I User Guide Sage ERP Accpac 6.0A Financial Link Professional I User Guide 2010 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and all Sage ERP Accpac product and service names mentioned herein are

More information

IRA Basic Running Financial Reports

IRA Basic Running Financial Reports IRA Basic Running Financial Reports Updated 6-7-2013 1 Training Index Part I Introduction to the IRA Reporting Tool IRA Resources (3) Logging onto the system (4) Navigating the Dashboard (5-9) Running

More information

MicroStrategy Quick Guide: Running the PI Report ITU Data Mart Support Group Go to reporting.gmu.edu and click on Login to Microstrategy

MicroStrategy Quick Guide: Running the PI Report ITU Data Mart Support Group Go to reporting.gmu.edu and click on Login to Microstrategy MicroStrategy Quick Guide: Running the PI Report ITU Data Mart Support Group Go to reporting.gmu.edu and click on Login to Microstrategy ACTION Enter User name and Password. Keep default selection of LDAP

More information