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

Size: px
Start display at page:

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

Transcription

1 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 there is a workaround that allows you to pass the print-time formulas from the main report to a subreport, and then create a chart in the subreport. INTRODUCTION... 2 CREATE A CHART ON A PRINT-TIME FORMULA... 2 Format the Report...2 Create Running Total Formulas...4 Insert and Link the Subreport...5 Create the Chart...6 FINDING MORE INFORMATION /14/ :03 AM Copyright 2004 Business Objects. All rights reserved. Page 1

2 Introduction In Crystal Reports (CR) 9 and above, a chart can be made off some, but not all, formulas. Some formulas are evaluated while records are being printed to the report. These formulas are called print-time or WhilePrintingRecords formulas. You cannot create a chart directly off print-time formulas but you can indirectly, using the technique described in this document. This technique consists of four parts: Formatting the report Creating running total formulas for the 'On change of' and 'Show value(s)' values. Creating and linking a subreport Inserting a chart in the subreport NOTE All the formulas in this document can be written in either Crystal or Basic syntax. Each example formula will be displayed in Crystal (black) and Basic (blue) syntaxes. Create a Chart on a Print-Time Formula The following example uses the Customer table from the Microsoft Access database, Xtreme.mdb that is installed with Crystal Reports. Format the Report 1. Insert the Customer Name and Last Year's Sales fields in the Details section. 2. On the Insert menu click Summary. Click Customer.Last Year's Sales from the Choose the field to summarize drop-down box. Click Sum from the Calculate this summary drop-down box. 3. Create a formula named PerCent with the following syntax: //This formula uses Crystal syntax. WhilePrintingRecords; Shared CurrencyVar curcounter; Shared CurrencyVar curtotal; curcounter := curcounter + {Customer.Last Year's Sales}; curtotal := (curcounter/sum ({Customer.Last Year's Sales}))*100; ToNumber(curTotal); 4/14/ :03 AM Copyright 2004 Business Objects. All rights reserved. Page 2

3 'This formula uses Crystal's Basic syntax. Shared curcounter as Currency Shared curtotal as Currency curcounter = curcounter + {Customer.Last Year's Sales} curtotal = (curcounter/sum ({Customer.Last Year's Sales}))*100 formula = ToNumber(curTotal) 4. Insert this formula in the Details section. 5. On the Report menu, click Select Expert. In the Choose Field dialog box, click Customer ID and then click OK. In the Select Expert dialog box, click is less than from the drop-down box. Choose 9 from the new drop-down box that appears. Figure 1-1 When the report is previewed you will see eight customers with their Last Year's Sales values. Under these values you will see a total for all eight customers' Last Year's Sales. The PerCent formula shows a running total of Last Year's Sales as a percentage of the sum of all customers' Last Year's Sales. (See Figure 1-1) Now that the report is formatted you want to create a chart that uses the PerCent formula. On the Insert menu, click Chart. In the Available Fields box; notice that the PerCent formula is not there. The PerCent formula is a print-time formula and will not appear in the Chart Expert. 4/14/ :03 AM Copyright 2004 Business Objects. All rights reserved. Page 3

4 Create Running Total Formulas To be able to create a chart on the PerCent print-time formula, the first step is to roll up the values that will be used as the On change of and Show values values from the main report, into formulas that will be used in a subreport. 1. Right-click the gray area to the left of the Details section and then click Insert Section Below. There will now be both a Details a and a Details b section. 2. Create a running total formula for the 'On Change Of' value for the chart. In this case that will be the Customer Name field: //This formula is written in Crystal syntax. //Name this formula 'OnChangeOf'. whileprintingrecords; stringvar stronchangeof; stronchangeof := stronchangeof + {Customer.Customer Name} + "^"; ' This formula is written in Crystal's Basic syntax. ' Name this formula 'OnChangeOf'. global stronchangeof as string stronchangeof = stronchangeof + {Customer.Customer Name} + "^" Formula = stronchangeof 3. Insert this formula in the Details b section. 4. Create a running total formula for the 'Show Value' value for the chart. In this case that will be the Last Year's Sales field: //This formula is written in Crystal syntax. //Name this formula 'Show value'. stringvar strshowvalue; strshowvalue := strshowvalue + totext({@percent}) + "^"; ' This formula is written in Crystal's Basic syntax. ' Name this formula 'Show Value'. global strshowvalue as string strshowvalue = strshowvalue + totext({@percent}) + "^" Formula = strshowvalue 4/14/ :03 AM Copyright 2004 Business Objects. All rights reserved. Page 4

5 5. Insert this formula in the Details b section. 6. Right-click the gray area to the left of the Details b section and then click Suppress (No Drill-Down). Figure 1-2 NOTE The Details b section is suppressed because the OnChangeOf and ShowValue formulas do not need to be seen when the report is previewed. They do need to be evaluated, though. When a section is suppressed, formulas in that section are evaluated without being seen. Insert and Link the Subreport 1. On the Insert menu, click Subreport. On the Insert Subreport dialog box, enter "ChartSub" in the Report Name text box and then click the Report Wizard button. 2. Move the Customer table into the Selected Tables box. Click the Finish button and then click OK. Place the subreport in the Report Footer section. 3. On the Edit menu, click Subreport Links. Move both the OnChangeOf and ShowValue formulas to the Field(s) to link to box. 4. In the Field(s) to link to box, click the OnChangeOf formula and then clear the Select data in the subreport based on field check box. Do the same thing for the ShowValue formula. Click OK. 5. Right-click the subreport and then click Edit Subreport. On the Report menu, click Selection Formula > Record. Enter the following selection formula: {Customer.Customer Name} in 6. Click the Save button and then close the Record Selection Formula Editor dialog box. 4/14/ :03 AM Copyright 2004 Business Objects. All rights reserved. Page 5

6 Create the Chart 1. In the subreport, create a formula with the following syntax: // This formula is written in Crystal syntax. // Name this formula 'SubShowValue'. ToNumber(Split({?Pm-@ShowValue}, "^")[RecordNumber]) ' This formula is written in Crystal's Basic syntax. ' Name this formula 'SubShowValue'. formula = tonumber(split({?pm-@showvalue}, "^")(RecordNumber)) NOTE formula is based on recordnumber. If the records come into the subreport in a different order from the order of formula, then the values will not match the groups. To work around this, do a record sort in the subreport so that the subreport records are in the same order as they are listed in formula. Make sure that the subreport only returns one record for 1. In the subreport, click the Insert menu, and then click Chart. 2. On the Type tab, click Bar. 3. On the Data tab, move the Customer.Customer Name field from the Available fields box to the On change of box. Move the SubShowValue formula from the Available Fields box to the Show Value(s) box. Click OK. 4/14/ :03 AM Copyright 2004 Business Objects. All rights reserved. Page 6

7 Finding More Information Figure 1-3 When the report is previewed the bars in the chart show the value of the PerCent print-time formula for each customer. (See Figure 1-3) For more information and resources, refer to the product documentation and visit the support area of the web site at: The Business Objects product and technology are protected by US patent numbers 5,555,403; 6,247,008; 6,578,027; 6,490,593; and 6,289,352. The Business Objects logo, the Business Objects tagline, BusinessObjects, BusinessObjects Broadcast Agent, BusinessQuery, Crystal Analysis, Crystal Analysis Holos, Crystal Applications, Crystal Enterprise, Crystal Info, Crystal Reports, Rapid Mart, and WebIntelligence are trademarks or registered trademarks of Business Objects SA in the United States and/or other countries. Various product and service names referenced herein may be trademarks of Business Objects SA. All other company, product, or brand names mentioned herein, may be the trademarks of their respective owners. Specifications subject to change without notice. Not responsible for errors or omissions. Copyright 2004 Business Objects SA. All rights reserved. 4/14/ :03 AM Copyright 2004 Business Objects. All rights reserved. Page 7

BusinessObjects OLAP Intelligence XI

BusinessObjects OLAP Intelligence XI Improving Performance and Scalability Overview This document discusses how to fine-tune your BusinessObjects OLAP Intelligence XI installation for greater performance and scalability. Contents INTRODUCTION...

More information

Webi Auto Documentation

Webi Auto Documentation Webi Documentation Made Easy Overview Contents This document contains a detailed description of how to make use of the Report Engine SDK to help make the documentation process more efficient. OVERVIEW...2

More information

Report Viewer Comparison

Report Viewer Comparison Report Viewer Comparison Overview Contents BusinessObjects Enterprise and Crystal Reports Server allow viewing and exporting of reports over the web using two types of viewers: zeroclient and thin client

More information

Crystal Reports. Overview. Contents. Custom Functions

Crystal Reports. Overview. Contents. Custom Functions Overview Custom functions are procedures you create to evaluate, make calculations on, or transform data in formulas. When using a custom function in a formula, all the operations in its definition are

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

Report Designer Component 10

Report Designer Component 10 10 Creating an RDC Deployment Package Using Wise Installer Overview Contents An application designed using the Report Designer Component (RDC) requires that multiple DLLs are present on the client computer

More information

Crystal Reports 10 and.net

Crystal Reports 10 and.net Overview Contents This document discusses the options for deploying Visual Studio.NET applications built using Crystal Reports 10 for Visual Studio.NET. Both merge modules and interactive install packages

More information

Crystal Reports XI Release 2

Crystal Reports XI Release 2 Overview Contents This technical document describes how to use integrated and SQL authentication in applications that use the Crystal Reports.NET SDK. Specifically, seven scenarios are discussed that involve

More information

BusinessObjects Metadata Management XI 3.0 for Windows

BusinessObjects Metadata Management XI 3.0 for Windows BusinessObjects Metadata Management XI 3.0 for Windows Supported Platforms Overview Contents This document lists specific platforms and configurations for BusinessObjects Metadata Management XI 3.0 for

More information

BusinessObjects OLAP Intelligence XI

BusinessObjects OLAP Intelligence XI Configuring Overview BusinessObjects OLAP Intelligence XI allows users to connect to and design custom applications against OLAP data sources. OLAP Intelligence XI and its web components use the Microsoft

More information

Chapter 1. Report Formatting and Appearance. Win&Mac / Crystal Reports Professional Results / Peck / / Chapter 1 blind folio 1

Chapter 1. Report Formatting and Appearance. Win&Mac / Crystal Reports Professional Results / Peck / / Chapter 1 blind folio 1 blind folio 1 Chapter 1 Report Formatting and Appearance Wednesday, April 09, 2003 10:25:15 AM 2 Crystal Reports Professional Results Crystal Reports, being a Windows-based report writer, provides all

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

BusinessObjects XI Integration for SAP Solutions User's Guide

BusinessObjects XI Integration for SAP Solutions User's Guide BusinessObjects XI Integration for SAP Solutions User's Guide BusinessObjects XI Integration for SAP Solutions Copyright 2008 Business Objects, an SAP company. All rights reserved. Business Objects owns

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

Crystal Reports 10. Overview. Contents. Supported and Tested Platforms. This document lists the supported and tested platforms for Crystal Reports 10.

Crystal Reports 10. Overview. Contents. Supported and Tested Platforms. This document lists the supported and tested platforms for Crystal Reports 10. Overview Contents This document lists the supported and tested platforms for Crystal Reports 10. INTRODUCTION... 2 MINIMUM HARDWARE REQUIREMENTS FOR CRYSTAL REPORTS 10...2 Windows...2 SUPPORTED PLATFORMS

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

BusinessObjects Data Integrator XI Release 2 for Sun SOLARIS SPARC

BusinessObjects Data Integrator XI Release 2 for Sun SOLARIS SPARC BusinessObjects Data Integrator XI Release 2 for Sun SOLARIS SPARC Supported Platforms Overview Contents This document lists specific platforms and configurations for the BusinessObjects Data Integrator

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

Crystal Enterprise. Overview. Contents. Configuring the Crystal Enterprise SDK for Firewalls

Crystal Enterprise. Overview. Contents. Configuring the Crystal Enterprise SDK for Firewalls Overview Contents This technical brief discusses the effects of a firewall in a Crystal Enterprise SDK environment, as well as how to configure the Enterprise servers and SDK to work with a firewall. INTRODUCTION...

More information

Crystal Reports XI Release 2

Crystal Reports XI Release 2 Overview Contents This document discusses how to deploy the Crystal Reports XI Release 2 Java Reporting Component in web and desktop (thick-client) environments. INTRODUCTION... 2 Background...2 COMMON

More information

SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise

SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer,

More information

Call: Crystal Report Course Content:35-40hours Course Outline

Call: Crystal Report Course Content:35-40hours Course Outline Crystal Report Course Content:35-40hours Course Outline Introduction Of Crystal Report & It s Benefit s Designing Reports Defining the Purpose Planning the Layout Examples of Reports Choosing Data Laying

More information

Index COPYRIGHTED MATERIAL. Symbols and Numerics

Index COPYRIGHTED MATERIAL. Symbols and Numerics Symbols and Numerics ( ) (parentheses), in functions, 173... (double quotes), enclosing character strings, 183 #...# (pound signs), enclosing datetime literals, 184... (single quotes), enclosing character

More information

WebIntelligence Visualize This! Parkview Shelby Twp, MI Phone Fax

WebIntelligence Visualize This! Parkview Shelby Twp, MI Phone Fax WebIntelligence Visualize This! 56132 Parkview Shelby Twp, MI 48316 586.677.8300 Phone 586.677.8301 Fax http://www.cttsbi.com Last Revised: 5/8/2017 Trademarks & Copyrights The Business Objects logo, Business

More information

Building reports using the Web Intelligence HTML Report Panel

Building reports using the Web Intelligence HTML Report Panel Building reports using the Web Intelligence HTML Report Panel Building reports using the Web Intelligence HTML Report Panel Copyright 2008 Business Objects. All rights reserved. Business Objects owns the

More information

Crystal Reports. SYS-ED/COMPUTER EDUCATION TECHNIQUES, INC. (Crys Rept - 7.1) IDX: Page 1

Crystal Reports. SYS-ED/COMPUTER EDUCATION TECHNIQUES, INC. (Crys Rept - 7.1) IDX: Page 1 A Absolute Formatting... 4:15 ActiveX Viewer... 1:16 Adding a Command to a Report... 10:14 Adding a Command to the Repository... 10:12 Adding a Custom Function to the Repository... 10:11 Adding a List

More information

BusinessObjects Polestar Error Message Guide

BusinessObjects Polestar Error Message Guide BusinessObjects Polestar Error Message Guide BusinessObjects Polestar XI 3.1 windows Copyright 2008 Business Objects, an SAP company. All rights reserved. Business Objects owns the following U.S. patents,

More information

Crystal Reports. Overview. Contents. Using ODBC XML Data with Crystal Reports

Crystal Reports. Overview. Contents. Using ODBC XML Data with Crystal Reports Using ODBC XML Data with Crystal Reports Overview Contents This document discusses Extensible Markup Language (XML) concepts, provides sample XML scripting, and illustrates the best methods to report off

More information

Crystal Reports XI Designer 3 Workshop

Crystal Reports XI Designer 3 Workshop Crystal Reports XI Designer 3 Workshop Vision Harvest, Inc. 1-888-236-8087 sales@visionharvest.com Revised: April 1, 2006 Part # VISI100062S i ALL RIGHTS RESERVED This course covers Crystal Reports XI

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

USING JOINED REPORTS

USING JOINED REPORTS USING JOINED REPORTS Summary Use the joined report format to create multiple views of the data contained in a single report. You can add multiple report types to a joined report, create standard and cross-block

More information

Using the Drag-and-Drop Report Builder

Using the Drag-and-Drop Report Builder Using the Drag-and-Drop Report Builder Salesforce, Spring 16 @salesforcedocs Last updated: January 7, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

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

Performance Management

Performance Management NN44400-710 Document status: Standard Document issue: 01.04 Document date: 17 December 2009 Product release: Release 7.0 Job function: Administration Type: NTP Language type: English Copyright 2009 Nortel

More information

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

Monthly Formulas. Order Reports by Last Name Issue No.1 Jan Last year, this year & next year Issue No.2 Feb 2007 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

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

Crystal Reports 9 Templates

Crystal Reports 9 Templates Using Template Reports For Increased Productivity Reuse in Reporting One of the most demanding and time-consuming parts of the report design process is formatting all of your reports to have a consistent

More information

GO! with Microsoft Access 2016 Comprehensive

GO! with Microsoft Access 2016 Comprehensive GO! with Microsoft Access 2016 Comprehensive First Edition Chapter 3 Forms, Filters, and Reports 2 Create and Use a Form to Add and Delete Records A form is a database object that can be used to: display

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

Getting Started with Performance Manager

Getting Started with Performance Manager Getting Started with Performance Manager BusinessObjects Performance Manager Windows Copyright 2008 Business Objects, an SAP company. All rights reserved. Business Objects owns the following U.S. patents,

More information

BusinessObjects LifeCycle Manager Release Notes

BusinessObjects LifeCycle Manager Release Notes BusinessObjects LifeCycle Manager Release Notes BusinessObjects Enterprise XI 3.1 Copyright 2008 Business Objects, an SAP company. All rights reserved. Business Objects owns the following U.S. patents,

More information

How to Achieve Best Results When Viewing or Printing Reports

How to Achieve Best Results When Viewing or Printing Reports WHITE PAPER ActiveX Report Rendering How to Achieve Best Results When Viewing or Printing Reports CONTENTS 1 Executive Summary 2 Printers and Report Rendering 3 Configuring the Crystal Reports Enterprise

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

Desktop Studio: Sub-reports

Desktop Studio: Sub-reports Desktop Studio: Sub-reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Desktop Studio: SubReports i Copyright 2010 Intellicus Technologies

More information

Sage Fixed Assets Reporting. User Guide

Sage Fixed Assets Reporting. User Guide Sage Fixed Assets Reporting User 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 names

More information

Performing on-report analysis with Web Intelligence

Performing on-report analysis with Web Intelligence Performing on-report analysis with Web Intelligence BusinessObjects Enterprise XI 3.0 Copyright 2008 Business Objects. All rights reserved. Business Objects owns the following U.S. patents, which may cover

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

Crystal Enterprise. Overview. Contents. Upgrading CE8.5 to CE10 Microsoft Windows

Crystal Enterprise. Overview. Contents. Upgrading CE8.5 to CE10 Microsoft Windows Crystal Enterprise Upgrading CE8.5 to CE10 Microsoft Windows Overview This document is intended to assist you upgrade from a Crystal Enterprise (CE) 8.5 system to a CE 10 system. NOTE: The scenario outlined

More information

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Copyright 2012 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,

More information

User s Guide. FAS Report Writer. Version XI

User s Guide. FAS Report Writer. Version XI User s Guide FAS Report Writer Version XI 2011 Sage Software, Inc. All rights reserved. Portions Copyrighted 1991-2001 by ianywhere Solutions, Inc. Published by Sage 2325 Dulles Corner Boulevard, Suite

More information

BOCRC. SAP Crystal Reports Compact Course COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BOCRC. SAP Crystal Reports Compact Course COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BOCRC SAP Crystal Reports Compact Course. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

Crystal Reports for Visual Studio.NET

Crystal Reports for Visual Studio.NET Crystal Reports for Visual Studio.NET Export and Print a Crystal Report Overview Contents This white paper will walk you through creating a.net Windows application using Crystal Reports for Visual Studio.NET.

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

TRACES On-line Reporting DG SANCO User Introductory Guide

TRACES On-line Reporting DG SANCO User Introductory Guide Version 0.4 2 Copyright Business Objects, the Business Objects logo, Crystal Reports, and Crystal Enterprise are trademarks or registered trademarks of Business Objects SA or its affiliated companies in

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

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

Crystal Reports 2008 OFT - 700

Crystal Reports 2008 OFT - 700 Crystal Reports 2008 OFT - 700 Today s road map Why use Crystal Reports Definition of a report and its components How to use the Standard Report Creation Wizard: query the database and organize the data

More information

HP Intelligent Management Center v7.1

HP Intelligent Management Center v7.1 HP Intelligent Management Center v7.1 iar Quick Start Guide Part number: 5998-6863 Published: September 2014 Software Version: IMC PLAT 7.1 (E0302) Edition: 1.0 Legal and notice information Copyright 2014

More information

Crystal Reports. Overview. Contents. How to report off a Teradata Database

Crystal Reports. Overview. Contents. How to report off a Teradata Database Crystal Reports How to report off a Teradata Database Overview What is Teradata? NCR Teradata is a database and data warehouse software developer. This whitepaper will give you some basic information on

More information

Crystal Report 2008 Intermediate. Jeff Hutchinson Excel Networks. For Evaluation Only. Do Not Duplicate.

Crystal Report 2008 Intermediate. Jeff Hutchinson Excel Networks. For Evaluation Only. Do Not Duplicate. Crystal Report 2008 Intermediate Jeff Hutchinson Excel Networks www.excel-networks.com Crystal Reports 2008 - Intermediate Concepts This book assumes you have a firm foundation of Crystal Reports. We will

More information

The Unofficial Guide to Creating Reports In Crystal using your Pastel Data

The Unofficial Guide to Creating Reports In Crystal using your Pastel Data The Unofficial Guide to Creating Reports In Crystal using your Pastel Data This version of the ebook is an example version only. It contains only a sample of pages from the full ebook. These pages may

More information

Crystal Reports 2008 Designer 2 Workshop

Crystal Reports 2008 Designer 2 Workshop Crystal Reports 2008 Designer 2 Workshop Vision Harvest, Inc. 888-236-8087 sales@visionharvest.com Published: July 10, 2008 Part: VISI100071S i ALL RIGHTS RESERVED This course covers Crystal Reports 2008

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Welcome To The Paragon TM. 3.4 CMA Guide

Welcome To The Paragon TM. 3.4 CMA Guide Show Welcome To The Paragon TM 3.4 CMA Guide The following tutorial will assist you in performing the steps necessary in creating a CMA Packet in Paragon. For Additional information, login to Paragon and

More information

Migrating from Business Objects Crystal Reports to SQL Server 2005 Reporting Services

Migrating from Business Objects Crystal Reports to SQL Server 2005 Reporting Services Migrating from Business Objects Crystal Reports to SQL Server 2005 Reporting Services SQL Server 2005 Reporting Services Whitepaper Published: April 2006 Applies To: Microsoft SQL Server 2005 Reporting

More information

GETTING STARTED. A Step-by-Step Guide to Using MarketSight

GETTING STARTED. A Step-by-Step Guide to Using MarketSight GETTING STARTED A Step-by-Step Guide to Using MarketSight Analyze any dataset Run crosstabs Test statistical significance Create charts and dashboards Share results online Introduction MarketSight is a

More information

Exam Information Guide

Exam Information Guide Exam Information Guide Exam Numbers: Certification Track: RDCR201 & RDCR301 Availability Date: April 4, 2005 Languages Published: Exam Specifics: Target Audience: CRCP - Crystal Reports Certified Professional

More information

Crystal Reports 10. Overview. Contents. Configuring JDBC (JNDI) Connectivity

Crystal Reports 10. Overview. Contents. Configuring JDBC (JNDI) Connectivity Overview This technical brief discusses configuring JDBC (JNDI) connectivity in Crystal Reports 10. Contents INTRODUCTION... 2 BACKGROUND... 2 What is Java Database Connectivity?...2 What is Java Naming

More information

Sage What s New. October 2017

Sage What s New. October 2017 What s New October 2017 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are the trademarks of The Sage Group plc or

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

White Paper. Crystal Reports XI. Powerful Report Design Made Easy

White Paper. Crystal Reports XI. Powerful Report Design Made Easy White Paper Crystal Reports XI Powerful Report Design Made Easy Author: Christine Factor Contributors: J. Meegan, M. Meckler, D. Townley Audience: report authors Business Objects Crystal Reports XI Powerful

More information

Learning More About NetObjects Matrix Builder 1

Learning More About NetObjects Matrix Builder 1 Learning More About NetObjects Matrix Builder 1 NetObjects Matrix Builder is a service that hosts your Web site, makes it easy to update, and helps you interact with visitors. NetObjects Matrix Builder

More information

WebIntelligence for OLAP User s Guide

WebIntelligence for OLAP User s Guide WebIntelligence for OLAP User s Guide WebIntelligence for OLAP Data Sources 6.1 Windows 2 WebIntelligence for OLAP User s Guide Copyright Trademarks Use restrictions No part of the computer software or

More information

How to create a What If simulation in SAP Analytics Cloud

How to create a What If simulation in SAP Analytics Cloud How to create a What If simulation in SAP Analytics Cloud Author: Ingo Hilgefort, SAP Canada 1 1 Copyright 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

LOADING IMAGES INTO QLIKVIEW

LOADING IMAGES INTO QLIKVIEW LOADING IMAGES INTO QLIKVIEW QlikTech Technical Brief May 2013 Contents INTRODUCTION... 3 SET THE SCENE... 3 BUNDLE LOAD IMAGES ASSOCIATED TO DATA... 4 BUNDLE LOAD IMAGES NOT ASSOCIATED TO OTHER DATA FILES...

More information

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

Quick Reference Summary

Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary 3-D Chart, Rotate EX 462 3-D Rotation button (Chart Tools Layout tab Background, change rotation (Format Chart

More information

Microsoft Dynamics GP. Extender User s Guide Release 9.0

Microsoft Dynamics GP. Extender User s Guide Release 9.0 Microsoft Dynamics GP Extender User s Guide Release 9.0 Copyright Copyright 2005 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user.

More information

Oracle Enterprise Performance Reporting Cloud. What s New in February 2017 Update (17.02)

Oracle Enterprise Performance Reporting Cloud. What s New in February 2017 Update (17.02) Oracle Enterprise Performance Reporting Cloud What s New in February 2017 Update (17.02) February 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, FEBRUARY UPDATE...

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

OLAP Reporting with Crystal Reports 9

OLAP Reporting with Crystal Reports 9 Overview Crystal Reports has established itself as the reporting tool of choice for many companies and excels in providing high quality formatted information based on data stores throughout an organization.

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

WebEasy Getting Started with OsCommerce Guide

WebEasy Getting Started with OsCommerce Guide WebEasy Getting Started with OsCommerce Guide Copyright WebEasy Getting Started with OsCommerce Guide Copyright 2003 2010 Avanquest North America Inc. All Rights Reserved. Web Easy is a registered trademark

More information

Newforma Contact Directory Quick Reference Guide

Newforma Contact Directory Quick Reference Guide Newforma Contact Directory Quick Reference Guide This topic provides a reference for the Newforma Contact Directory. Purpose The Newforma Contact Directory gives users access to the central list of companies

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

Oracle Enterprise Performance Reporting Cloud

Oracle Enterprise Performance Reporting Cloud Oracle Enterprise Performance Reporting Cloud September Update (16.09) Release Content Document August 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, SEPTEMBER

More information

Chapter 3 Microsoft Office Excel

Chapter 3 Microsoft Office Excel Chapter 3 Microsoft Office Excel What is the Active Cell? In the above illustration, notice that B2 is displayed in the Name Box, and the contents of the cell is displayed in the Formula Bar. In this

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

More information

SAP BusinessObjects Integration Option for Microsoft SharePoint Getting Started Guide

SAP BusinessObjects Integration Option for Microsoft SharePoint Getting Started Guide SAP BusinessObjects Integration Option for Microsoft SharePoint Getting Started Guide SAP BusinessObjects XI3.1 Service Pack 4 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet,

More information

Portal Integration Kit User s Guide for Microsoft SharePoint

Portal Integration Kit User s Guide for Microsoft SharePoint Portal Integration Kit User s Guide for Microsoft SharePoint BusinessObjects Enterprise XI 3.1 windows Copyright 2008 Business Objects, an SAP company. All rights reserved. Business Objects owns the following

More information

RSA NetWitness Logs. Oracle Audit Vault and Database Firewall. Event Source Log Configuration Guide

RSA NetWitness Logs. Oracle Audit Vault and Database Firewall. Event Source Log Configuration Guide RSA NetWitness Logs Event Source Log Configuration Guide Oracle Audit Vault and Database Firewall Last Modified: Thursday, June 29, 2017 Event Source Product Information: Vendor: Oracle Event Source: Oracle

More information

User Guide. Version Exago Inc. All rights reserved.

User Guide. Version Exago Inc. All rights reserved. User Guide Version 2016.2 2016 Exago Inc. All rights reserved. Exago Reporting is a registered trademark of Exago, Inc. Windows is a registered trademark of Microsoft Corporation in the United States and

More information

<PROJECT> WORK BREAKDOWN STRUCTURE

<PROJECT> WORK BREAKDOWN STRUCTURE WORK BREAKDOWN STRUCTURE Version Number: 1.0 Version Date: Notes to the Author [This document is a template of a Work Breakdown Structure document for a project. The template includes

More information

How to Import a Certificate When Using Microsoft Windows OS

How to Import a Certificate When Using Microsoft Windows OS How to Import a Certificate When Using Microsoft Windows OS This document explains the process of importing your digital certificate for use in Microsoft Internet Explorer (IE) and/or Mozilla Firefox.

More information

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide Paper 809-2017 Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide ABSTRACT Marje Fecht, Prowerk Consulting Whether you have been programming in SAS for years, are new to

More information

Policy Commander Console Guide - Published February, 2012

Policy Commander Console Guide - Published February, 2012 Policy Commander Console Guide - Published February, 2012 This publication could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein; these changes

More information

RSA NetWitness Logs. Citrix Access Gateway Last Modified: Thursday, May 11, Event Source Log Configuration Guide

RSA NetWitness Logs. Citrix Access Gateway Last Modified: Thursday, May 11, Event Source Log Configuration Guide RSA NetWitness Logs Event Source Log Configuration Guide Citrix Access Gateway Last Modified: Thursday, May 11, 2017 Event Source Product Information: Vendor: Citrix Event Source: Access Gateway Versions:

More information

Reporting With SAP Crystal Reports

Reporting With SAP Crystal Reports Reporting With SAP Crystal Reports MOTIVATION This material is an introduction to how to develop report utilizing SAP Crystal Reports. It is aimed at students at universities, universities and other educational

More information

Dashboard / Output Guide

Dashboard / Output Guide Interstage Business Process Manager Analytics V11.0 Dashboard / Output Guide Windows/Solaris/Linux J2U3-0053-01(00) December 2009 About this Manual This document describes how to use the Dashboard to display

More information

Using Xcelsius 2008 with SAP NetWeaver BW

Using Xcelsius 2008 with SAP NetWeaver BW Using Xcelsius 2008 with SAP NetWeaver BW Applies to: Xcelsius 2008 Enterprise Service Pack 02 (and higher) SAP NetWeaver BW 7.0 Enhancement package 01 Service Pack 05 (and higher) Summary In this short

More information