Reporting with SAP Crystal Reports

Size: px
Start display at page:

Download "Reporting with SAP Crystal Reports"

Transcription

1 Coy W. Yonce, III 100 Things You Should Know About Reporting with SAP Crystal Reports Bonn Boston

2 Contents at a Glance 1 Report Layout Field Formatting Types of Reports and Forms Guided Analysis Using Web Technology with Reports Charting Creating Reusable and Accessible Report Designs Using Parameters Distributing Reports Extending the Design Experience Monitoring and Improving Report Performance

3 Contents Acknowledgments PART 1 Report Layout Creating Reports with Different Page Headers Repeating Group Headers across Pages Adding Watermarks to Reports Setting Up Unlinked Subreports Setting Up Linked Subreports Using Subreports as Templates for Headers and Footers Using On Demand or In Place Passing Data between Subreports and Main Reports Suppressing and Hiding Sections Suppressing a Blank Subreport or a Section with a Blank Subreport Creating Side-by-Side Reports Suppressing Duplicate Rows Displaying Records Horizontally Displaying a Checkbox in a Report Designing a Cover Page for Reports PART 2 Field Formatting Printing Vertical Text Fields Alongside Horizontal Text Fields Concatenating Strings with Different Formats Aligning the Vertical Alignment of Text in a Field Inserting Leading Zeroes for a Field Formatting Parts of a String Forcing a Header or Footer to Grow Automatically or Remain a Specific Size Displaying Values in a Field That s Based on a Parameter Creating a Running Total with Values Derived from a Formula Field Creating a Formula to Calculate an Average while Ignoring Zero Values Creating a Formula to Calculate a Minimum while Ignoring Zero Values Performing Data Type Conversions Checking for the Existence of Text

4 Contents PART 3 Types of Reports and Forms Creating Reports for Immediate Decision Making Creating Reports to Support Front Line Managers Creating Reports for Upper-Level Management Creating Mailing Labels Creating an Earnings Statement for a Paycheck Creating a Table of Contents for a Report Creating Calendars from an Excel Spreadsheet Laying Out Form Fields PART 4 Guided Analysis Highlighting Information Showing Visual Indicators Creating Tool Tips Enabling Drill-Down Reporting Creating a Gradual Drill-Down in a Report Sorting and Ranking within a Group Displaying Top N Records in a Report Based on a Parameter Applying and Formatting a Sort or Rank in a Crosstab Applying Color Banding to a Report Creating and Using Parameters in a Report Creating Dynamic Cascading Parameters PART 5 Using Web Technology with Reports Creating Reports from HTML Content Creating Hyperlinks in a Report Formatting Reports Using Cascading Style Sheets Creating Reports from Local XML Documents Using Web Services as a Data Source for a Report Creating XML Documents Using SAP Crystal Reports Publishing Reports as a Web Service PART 6 Charting Inserting Bar Charts in Report Details Creating a Combo Chart that Contains a Bar and Line Visualization Using Overlays with Complex Charting Removing Decimals in the X- and Y-Axis Formatting Dates in a Chart Creating Visualizations with Negative Values

5 Contents PART 7 Creating Reusable and Accessible Report Designs Creating Effective Report Templates Providing Default Formatting for a Field Using Chart Styles to Eliminate Unnecessary Report Elements Creating Reusable Formulas Setting Default Formatting Options Using Color Effectively Making Text Legible Ordering Report Objects for Screen Readers Making Tables Accessible for Screen Readers Naming Formula Fields for Ease of Use PART 8 Using Parameters Displaying Parameter Values in a Report Creating a Parameter That Provides an ALL Value Allowing Wildcards as a Parameter Value Providing Users with Groupings as a Parameter Value Controlling Values Entered into Parameters Finding and Deleting Stubborn Parameters from a Report Prompting the User for the N Value to Use for Top N Reports PART 9 Distributing Reports Scheduling Timely Reports Running Reports Based on Events or Triggers Designing Reports for Effective Excel Exports Choosing the Right Excel Export Option Analyzing Report Data with SAP BusinessObjects Explorer Sharing Reports on the Web Embedding Dynamic Reports in Microsoft Office Documents Exporting Reports to XML Creating Read-Only Reports PART 10 Extending the Design Experience Working with Files within a Report Sending s from a Report Exporting Data to CSV While Processing a Report Exporting Data to XML While Processing a Report Creating Barcodes in Your Reports Creating QR Codes in Reports Looking Up Text in an External File Creating a Report Index from an Existing Report

6 Contents 94 Using Templates to Create Labels Accessing Windows Functionality from a Report PART 11 Monitoring and Improving Report Performance Using a Built-in Dialogue to Monitor Report Performance Using Selection Formulas to Restrict Report Queries Hiding Unnecessary Data Offloading the Processing of Report Functions Using SQL Expressions The Author Index

7 Part 6 Charting Things You ll Learn in this Section 54 Inserting Bar Charts in Report Details Creating a Combo Chart that Contains a Bar and Line Visualization Using Overlays with Complex Charting Removing Decimals in the X- and Y-Axis Formatting Dates in a Chart Creating Visualizations with Negative Values Inserting charts into your reports provides your users with a visual way to understand relationships and patterns in the information being displayed. If the charts are designed well, they ll also allow users to make decisions faster. The tips in this section will help you learn the most efficient and effective ways to utilize charts in SAP Crystal Reports. 181

8 Tip 54 Inserting Bar Charts in Report Details You can provide your users with data visualizations directly beside the detailed text in a report. This allows users to see how the detailed item they re viewing compares to other items in the report. When viewing a report that has a significant amount of text in the detail, you should provide your users with some context regarding how the detailed level of data that they re viewing fits into the overall picture. Without a visual representation of how one report element relates to another, viewers must rely on pure text to make this comparison, which will slow down their analysis. However, inserting a bar chart alongside the specific items listed in the detail section of your report is not easy using the existing insert chart feature provided by SAP Crystal Reports So when you want to display a visual representation of how one value in your detail section relates to another value in your detail section, you must use special characters and formulas to create the proper visualization. And Here s How... For this solution, we ll will start with a listing report and use a formula to build an in-line bar chart alongside each value in the detail section. As you can see in Figure 1, the initial report displays the list of product categories and their associated sales revenue. 182

9 Charting Part 6 Figure 1 «Initial Report with Product Category and Sales First, create a formula that will calculate the percentage of total sales that are represented by each category. To do this, create a new formula field by right-clicking on Formula Fields and selecting New. Once the Formula Workshop dialogue is displayed, enter the following formula: {Category_Sales_for_1995.CategorySales} % Sum({Category_Sales_for_1995. CategorySales}) Now that you have the field that calculates the percentage of total sales, you can create another formula field to build the bar chart. Use the following formula for this purpose: ReplicateString (ChrW(9608), Round ({@Percentage of Total Sales}, 0)) Let s dissect this formula so that you can understand what s being done: EE The ReplicateString function repeats a string that s identified in the first argument the number of times that s specified in the second argument. E E ChrW(9608) is an ASCII character that looks like a solid black box. EE The Round function calculates the number of times the solid black box needs to be repeated by rounding the percentage formula created above to zero decimal places. Based on this formula, if we have a percentage amount of 23.1%, then the solid block box represented by ChrW(9608) will be repeated 23 times. After creating the formula above for displaying the bar chart, insert the percentage formula field and the bar chart formula field into the report by dragging them from the Field Explorer into the design canvas. This should give you a report that looks similar to the screen shown in Figure

10 Tip 54 Inserting Bar Charts in Report Details Figure 2 Report with In-Line Bar Chart Next, reduce the scale of the font used for building the bar chart so that you don t see spaces between the blocks. Access the Format Editor by right-clicking on the field and choosing Format Field. On the Font tab, you can specify a value for how many spaces should be between each character. The default value is zero. This tells SAP Crystal Reports to use the typeface s default value for spaces between characters. We re going to reduce the number of spaces by inserting a value. For our purposes we ll use a value of 5, but you can insert other values to determine the best one for your report. The end result will look similar to the screen shown in Figure 3. Figure 3 Final Report 184

11 Tip 55 Creating a Combo Chart that Contains a Bar and Line Visualization By combining a bar chart with a line chart, you can show variations in values while also displaying a goal line of the value you want to achieve. When creating reports that contain visualizations, one of the most frequent needs is to display a bar chart that represents a comparison of a measure (e.g., revenue) over a period of time or across a specific context (e.g., product). While displaying how a dimension is tracking over time, it s also important to compare these values to a baseline or a goal. You can do this by inserting a line across the bar chart that represents the goal for each measure. Unfortunately, this is not straightforward using SAP Crystal Reports, and requires changing one of the series in the bar chart to a line. And Here s How... Let s create a report that has a single chart to display the change in revenue across a list of product categories. We ll insert a line across this bar chart that displays a goal line for revenue across each of the product categories. Figure 1 shows an initial chart available in the report that displays the sales revenue for each product category. 185

12 Tip 55 Creating a Combo Chart that Contains a Bar and Line Visualization Figure 1 Initial Visualization Using a Bar Chart Now we need to create the line that will run along the bars to display how close we have come to hitting the revenue goal for each product category. Since this data is contained within another data source, we need to add this data source to our report. To do this, choose Database Database Expert. Select the data source where the goal data is contained and insert the relevant tables into the selected tables on the right side of the Database Expert. Click on OK, and the fields from the new data source will be added to the Field Explorer. Now that the data is available, add this data into the current bar chart as another series. Right-click on the chart and choose Chart Expert. In the Chart Expert dialogue, navigate to the Data tab and insert the Revenue Goal field under the Show Value(s) heading by selecting the Revenue Goal field under Report Fields and clicking on the greater than (>) sign next to the Show Values(s) heading. Click on OK and you ll see that a new bar is inserted alongside the previous bar. This new bar represents the revenue goal. To change this bar into a line visualization, right-click on the bar and select Series Options. With the Series Options dialogue open, select Line for the Show Select Series As option. Click on OK and you ll see that the revenue goal is now displayed as a line across the bars that represent the actual revenue for each product category. After a bit of formatting, your chart can look something like the one shown in Figure

13 Charting Part 6 Figure 2 Final Visualization 187

14 Tip 56 Using Overlays with Complex Charting Building charts that can sit on top of one another in layers provide your users with more context about their data. There may be times when the charting capabilities don t allow you to build the visualization you require to display information to your users. For example, SAP Crystal Reports does allow you to build a combo chart that shows a line chart on top of a bar chart, but if you want to display the bar chart horizontally, then it s not possible to include a line as one of your series. In this tip, we ll show you how to bypass this issue and create this type of combo chart by using two charts, with one sitting on top of the other. And Here s How... Figure 1 displays a visualization that uses a horizontal bar chart for showing the total sales revenue for each product category. We want to create a line chart that represents the total revenue goal for each product category and overlay this line chart on top of the bar chart. Now, create the line chart that will display vertically across the top of the bar chart. The first thing to do is to insert a new report header section beneath the existing one. Right-click on the existing report header section and select Insert Section Below. This inserts a new report header called RHb. Now, insert a line chart into this new report header section. This opens the Chart Expert. On the Type tab of the Chart Expert, ensure that you re creating a line chart, and then set the chart to display 188

15 Charting Part 6 horizontally. Setting the chart to display horizontally forces the X-axis to become the vertical axis, thus displaying the line chart in the same orientation as the bar chart. Figure 1 Initial Visualization with a Bar Chart Navigate to the Data tab and use the Category Name field for the On Change of option and the Revenue Goal field for the Show Value(s) option. After a bit of formatting to remove unnecessary elements from the chart, you should have something similar to Figure 2. Figure 2 Line Chart with Ornamentation Removed The background color for the line chart needs to be set to transparent to allow the bars on the bar chart to show through the background of the line chart. To do this, 189

16 Tip 56 Using Overlays with Complex Charting right-click on the line chart and select Format Background. Set the foreground color to transparent rather than white and click on OK. The last step is to overlay the line chart on top of the bar chart to create the final visualization. Right-click on the RHa section (i.e., the one with the bar chart) and choose Section Expert. On the Common tab, select the Underlay Following Sections option. This forces the bar chart to display under the line chart. After a bit of formatting, you should have something similar to Figure 3. Figure 3 Final Visualization Showing a Bar Chart and Line Chart Together 190

17 Tip 57 Removing Decimals in the X- and Y-Axis You can help users better understand numeric values by removing unnecessary decimal places. Sometimes the numeric data coming from your database is stored with additional decimal places, even when there is no value after the decimal. When including these numeric values in the X- and/or Y-axis of a chart, showing values after the decimal adds nothing to the interpretation of the visualization and can be confusing for users. SAP Crystal Reports makes it possible to remove these decimal places easily for the Y-axis, but not as easily for the X-axis. And Here s How... The numeric values in the following chart that are coming from the database have values after the decimal; however, there s no need to display them, as they re always zeroes. So we re going to format the values to remove those decimal places shown in the X-axis in Figure 1. There are two ways to change the format of the X-axis and, unfortunately, neither of them are exposed via the Format Editor. You cannot format a numeric value in the X-axis using the normal field-formatting capabilities. 191

18 Tip 57 Removing Decimals in the X- and Y-Axis Figure 1 Initial Visualization with Decimals in the X-axis Default Numeric Formatting In the first option, change the default numeric formatting style. The X-axis of a chart uses the default styles for formatting the values. If you don t mind impacting the global formatting of all numeric values displayed in SAP Crystal Reports to use no decimal places by default, then you can use this option. Click on File Options, which brings up the Options dialogue, where you can navigate to the Fields tab. On this tab, you ll see various buttons that allow you to modify the default formatting options for the String, Number, Currency, Date, Time, Date and Time, and Boolean fields. For our purposes, we want to modify the default numeric value, so click on the Number button. This brings up the Format Editor. Navigate to the Number tab and can select an option with no decimal places under the Style dropdown menu, such as the one shown in Figure 2. Click on OK to close the various dialogues and then refresh your report. You should see that the decimal places are removed from the numeric values in the X-axis. 192

19 Charting Part 6 Figure 2 «Changing the Default Numeric Style Formula If you don t want to affect the global style for all numeric values, then you can use the second option: Create a formula that turns the number into a string. To do this, create a new formula field by right-clicking on Formula Fields and selecting New. In the Formula Workshop dialogue, enter the following formula: ToText ({auto_mpg_txt.mpg_continuous},0) This formula will convert the MPG field into a string and force the formatting to set the number of decimal places to zero. Next, replace the database field displayed in the chart with your new formula field. To do this, use the Chart Expert, which you access by right-clicking on the chart and selecting the Chart Expert command. In the Chart Expert dialogue, remove the current field in the On Change Of section of the chart by selecting the field under the On Change Of heading and clicking the less than (<) sign. Insert the formula field into the On Change Of section by selecting the formula field and clicking the greater than (>) sign as shown in Figure

20 Tip 57 Removing Decimals in the X- and Y-Axis Figure 3 Replacing a Numeric Field with a Text Field in the Chart Expert 194

21 Tip 58 Formatting Dates in a Chart You can help your readers understand reports more easily by ensuring that the dates displayed in your report follow the formats typically used by your organization. Often when you return data in a report, it isn t in the format you want to display. This is often the case with date fields, as they can be stored in a variety of formats depending upon the database or the application that inserted the data. If you display date formats with which your users aren t familiar, it creates confusion and potentially incorrect analysis of information. With SAP Crystal Reports 2011, it s possible to format the dates in a chart to be displayed based on specific requirements for each report. In this tip, we ll show you multiple ways to change the format of a date field in a chart. And Here s How... Let s look at a chart that displays the list of store open dates for a retail store and provides a count of the number of stores opened for each time period. As you can see from Figure 1, the report currently shows the date in a format of 1/1/2011. Figure 1 «Initial Chart with Default Date Format 195

22 Tip 58 Formatting Dates in a Chart Default Date Format The first method to format the dates is to modify the default date format. You can do this by changing the default format for all dates that are displayed in any report built using SAP Crystal Reports. If this is an option, access the Options menu and then click on File Options. In the Options dialogue, click on the Date button and then navigate to the Date tab. From here, you can modify the default date format. After changing the default date format, refresh your report to ensure that the new format is shown in your chart. Numeric Axis Chart If changing the default date format for all reports is not an option and you re using a bar, line, or area chart for your visualization, then you can use a numeric axis chart instead. To do this, open the Chart Expert by right-clicking on the chart and selecting Chart Expert. In the Chart Expert, navigate to the Type tab and select Numeric Axis. Be sure to select a date axis chart and then click on OK. This changes the chart type. You can now format the axis label by right-clicking on it in the chart and selecting Format Axis Label. As shown in Figure 2, you can navigate to the Number tab and change the Date format. «Figure 2 Date Format Options for Numeric Axis Chart 196

23 Charting Part 6 Base Chart off of Group Another method is to base the chart off of a group. First, insert a group into the report based on the date field you want to use in your report. Then insert a summary field for the measure you want to visualize. When inserting the summary (in our case, a count of the number of stores), be sure to select the Add to all Group Levels option before clicking on OK. You can now launch the Chart Expert and navigate to the Data tab. From here, click on the Group button as shown in Figure 3, and specify the group field and summary field to use for the chart. Format the date field in the group with the date format you want to use to display the date. Figure 3 Chart Based Off of a Group and Summary Field Base Chart off of Crosstab Your final option is to base the chart off of a crosstab rather than a group. To do this, you first need to insert a crosstab into your report with the values you want to use for your visualization. Once you ve inserted the crosstab, access the Chart Expert and navigate to the Data tab. As shown in Figure 4, select the fields you want to use for your chart. You have the additional option of subdividing your chart, based on the rows in the crosstab. You can then format the date field in the crosstab to affect the format of the date field in the chart. 197

24 Tip 58 Formatting Dates in a Chart Figure 4 Chart Based Off of a Crosstab 198

25 Tip 59 Creating Visualizations with Negative Values When you create reports for analytical purposes, you may need to create charts that effectively display negative values. You can do this by modifying the scale of the report. When creating visualizations that report off of numeric values, you need to include the potential to visually display negative numbers. This is helpful when creating visualizations that show inventory levels where there are backorders or negative profit margins. Including negative values in your visualizations properly takes some understanding of the available options in the Chart Expert. With SAP Crystal Reports, you can create these types of visualizations by modifying the scale of the chart, which we ll explain in this tip. And Here s How... For this solution, we ll create a report that contains a bar chart for displaying the change in the Consumer Price Index (CPI) for Atlanta, Georgia, from 2001 to The dataset currently has values for the year, the month within each year, and the CPI for each month. It doesn t contain a value representing a change in the CPI. The first thing to do is create a formula field to calculate the change. Your formula should look like the following: {Pivot_.CPI} - Previous({Pivot_.CPI}) With this formula field created, you can now create your visualization. For our purposes, we ll create a group on the year and then insert a chart into a secondary group header, as you can see in Figure

26 Tip 59 Creating Visualizations with Negative Values Figure 1 Initial Chart Missing Values As you can see, we re missing several values from the formula field. One of the reasons for this is that the CPI can only be tracked for each month in the dataset. The other reason is because the bar chart only shows positive values. To ensure that the chart shows negative values, you need to change the ranges for the axis. Right-click on the chart and choose Chart Expert. Once the Chart Expert dialogue is open, navigate to the Axes tab. As shown in Figure 2, turn off the Auto Range option and set a manual range. Select the Min and Max ranges that are appropriate for your data. For example, if your possible lowest value is -10, then you should set the Min to a value of -10. Figure 2 Modifying the Data Range in the Chart Expert 200

27 Charting Part 6 After clicking on OK to close the Chart Expert dialogue, you ll notice that your bar chart displays a zero line with bars going above and below the zero line. The next step is to apply a color change to the bars based on whether the value is above or below zero. Reopen the Chart Expert dialogue, but choose the Color Highlight tab. Click New to create a new condition and select the CPI Change field as the field to evaluate. Set the evaluation to be less than a value of 0.00 and set Format Color to Red, as shown in Figure 3. Figure 3 Color Highlighting in the Chart Expert The condition you just created will change the color of the bar to red if the visualized value is less than 0. You can now create a new condition to evaluate the same field for a value greater than zero. After creating both conditions and exiting the Chart Expert, you ll see that you have green and red lines based on the value of the CPI change field. Clean up the bar chart by turning off the gridlines; right-click on the Y-axis label and select Data (Y) Axis Options. In the Data (Y) Axis Settings dialogue, navigate to the Gridlines tab and turn off the Show Major Gridlines option. To clean the bar chart even further, set the chart frame border to be transparent so that only the zero line, X-axis line, and Y-axis line are displayed, as shown in Figure

28 Tip 59 Creating Visualizations with Negative Values Figure 4 Final Visualization 202

29 Index?ALL, 242, 245 A Accounts Receivable statements, 124 Add custom value, 243 Additional functions, 286, 292, 310 a href, 162, 164 Allow custom values, 253 Allow multiple values, 237 ALL value in parameter, 239 Alternating page headers, 14 Analysis, 127 Appearance and personalization, 299 Array, 95, 245 asmx, 172, 179, 180 ASP.NET web site, 167, 179 Attributes, 162 Auto Range option, 200 Average, 323 Average calculation, 86 Axes tab, 200 AZTN, 301 B B, 162 Background color, 168 Bar chart, 182, 185, 186, 211 Bar chart and line chart, 190 Barcodes, 298, 301 Base chart off crosstab, 197 Base chart off group, 197 BIG, 162 BI inbox, 260 BI launch pad, 104 BODY, 162 Boolean, 52, 192 Bottom N, 107, 144, 148, 253 Bottom percentage, 107 BR, 162 Build website, 180 Business processes, 102 C Calendar, 119, 123, 259 Cascading Style Sheets, 166 CDate, 91 CDateTime, 91 CENTER, 162 Change group options, 18 Change subreport links, 26, 35, 45, 123, 251 Character spacing exactly, 59 Chart, 105, 107, 181, 211 Chart Expert, 106, 186, 193, 199, 212 Chart styles, 211 Checkbox, 52, 53 Checking for null values, 94 Checking for numeric values, 93 Checking for the existence of a partial text string, 94 Checking for the existence of text, 93 Checkmark, 132 Chelsea Technologies, 286, 289, 292, 295 CodeType, 302 Color-banded rows, 150 Color banding, 149 Color highlighting, 201 Color Highlight tab, 201 COM and.net UFLs, 286, 289, 292, 295 Combo chart, 185 Comparison of a measure, 185 Complex charting, 188 Composite information view, 44 Concatenate, 61 Concatenating Strings with different formats, 61 Conditional format, 130, 132 Conditional formulas, 129 Conditionally hiding subreports,

30 Index Conditional page header, 14 Confidential, 20 data, 19 text object, 20 Consumer Price Index (CPI), 199 Controlling values, 246 Conversions, 90 Count, 95 Cover page, 54 CR.COM, 273 Create custom value, 240 Create new parameter, 152, 156, 157 Create parameter, 154 Create reports from local XML documents, 170 Create running total field, 87 Creating operational reports, 98 Crosstab, 147 CrossTab Expert, 147 Crosstab top N, 148 CRUFLContents, 305 CRUFLFileManagement, 286 CRUFLFileManagement.dll, 286 CRUFLGrid, 292 CRUFLIndex, 305 CRUFLXML, 295 CrystalKiwi, 305 Crystal Reports, 275, 276 CrystalReports.com, 273, 274 Crystal Reports read only, 281 CrystalReportViewer, 168 CSS, 168 CSV, 279, 292 Currency, 192 CurrentLocale, 304 Custom functions, 215 Customize group name, 119 cviewmail, 289 D Data, 302 Database, 326 Database Expert, 160, 174 Database files, 171 Data labels, 106 Data range, 200 Data type conversions, 90 Data (Y) axis options, 201 Data (Y) axis settings, 201 Date, 91, 192 Date and time, 192 DateDiff, 288 DatePart, 120, 122 DateTime, 91 DayOfWeek, 120, 122 Default.aspx, 168 Default date format, 195 Default formatting options, 218 Default numeric style, 193 Define, 261 Destination, 260 Detail, 137, 156 section, 149 Directed analysis, 127 Display parameter values, 236 Display string, 52 Display user values, 238 Distinct count, 323 DIV, 162 dlsoft, 300 DLU2Dbars, 301 Double, 91 DrillDownGroupLevel, 139, 140 Drilling, 105, 136, 321 Drill-through reporting, 136 Duplicate records, 47 Dynamic cascading parameters, 156 Dynamic cascading prompt, 158 Dynamic list of values, 237 Dynamic reports, 275 E Earnings Statement, 112, 114 Edit Mask option, 247 Edit parameter, 240 Edit Parameter dialogue, 237, 244 Effective Excel exports, 264 , 260, 289 Enterprise, 258 Enterprise reporting, 97 Evaluation time,

31 Index Events, 261 Events to trigger upon completion, 263 Events to wait for, 263 Excel, 264, 267, 269 export, 267 Explorer in the cloud, 271 Export, 264, 267, 279, 281, 295 report, 280 Export data to XML, 295 Exporting data to CSV, 292 Extending the design experience, 285 F Field Explorer, 29, 174, 236 Field formatting, 57 Field interpreted as HTML, 161 Fields, 207, 208 FileManagementFileCopy, 287, 288 FileManagementFileDelete, 288 FileManagementFileExists, 287 File system, 260 Filters, 127 Find and delete parameters, 250 Find in formulas, 250 Fit section, 265 FONT, 162 Fonts, 207 Footers, 28 Form, 126 Format, 259 Best practices, 264 Format background, 190 Format Editor, 134, 218 Format field, 52, 160, 164 Format graphic, 132, 301 Format subreport, 31, 32 Formatting dates, 195 Formatting the chart, 106 Formula, 136 field, 136 workshop, 134, 149 Formula field, 293, 301, 323 Formulas, 90, 325 Formula Workshop, 66, 115, 176, 183, 215, 240, 242, 304 Free-form text, 246 Front line managers, 102 Front line personnel, 98 FTP, 260 Funds Transfer Forms, 124 G Global, 95, 115, 217 Goal line, 185 Gradual drill-down, 138 Graphic location, 302 GridCellClear, 293 GridCellLoadRawValue, 293 GridCellSave, 294 Gridlines, 106 Grids, 265 Grid UFL, 293 Group, 103 Group by, 120 Group Expert, 138 Group footer, 89, 142, 176 Group header, 17, 39, 89, 100, 101, 103, 117, 120, 130, 136, 141, 156, 176 GroupName, 130 Group Report Expert, 147 Group Sort Expert, 142, 143, 146, 254 Guided analysis, 127 Guidelines, 265 H H1, 162 Headers, 28 Hide, 38, 137, 140 drill-down OK, 40 report sections, 15, 38 Hide (drill-down OK), 137 Hide (drill-down okay), 321 Hierarchy, 17, 156 Highlighting, 129 information, 128 Highlighting Expert, 128, 129 HL7, 279 Horizontal alignment, 219 Horizontal bar chart,

32 Index Horizontal records, 50 HTML, 160, 162, 279 HTML anchor tag, 164 HTML tags, 160, 162 Hyperlinks, 163 Hyperlinks inserted into report, 165 I IDAutomation, 298 IDAutomation_SUni_XL, 299 IDAutomation_Uni_C128C, 299 Ignoring zero values, 87 Import XML transform, 279 Improving report performance, 313 Inbox, 260 Include negative values, 199 Index, 306 IndexEntryClear, 306 IndexEntrySave, 306 IndexEntryStore, 306 Indexes, 323 Informative text, 133 INI, 310 In-line bar chart, 182, 184 In place, 31 Insert subreport, 22, 25, 34, 45 InStr, 94 InStrRev, 94 Interactive analysis, 275 Interactive report elements, 127 Interpret text as HTML, 163 Invoice, 124 IsNull, 94, 176 J Join, 238 JXDM, 279 K Keep group together, 18 L Labels, 58, 109, 111, 307 Landscape, 119 Languages, 260 Latest report changes, 315 Layout, 264 Leading zeroes, 69 Left, 63 Line chart, 185, 188, 189 Linked subreports, 25 Listing, 115 List of values, 99, 125, 241 LiveOffice, 275, 277 add-on, 275 Live Office Insert Wizard, 276 Load template, 213 Local, 115, 288 Locales, 304 LocalLookup, 303 Long-term strategic reports, 105 Long-term trends, 105 Look up, 303, 304 Look up text, 303 M Mailing Label Report Wizard, 109, 110, 307 Main report, 44 with two subreports side-by-side, 46 Main report preview, 167 MakeArray, 245 Manage XML exporting, 279 formats, 279, 280 Map Fields dialogue, 308 Match type, 309 Max, 200 Median, 136 Metrics, 102, 105 Microsoft Excel, 270 ( ), 267 ( ) Data-only, 268 Workbook data-only, 259, 269 Microsoft Office documents, 275 Microsoft Word, 109, 275 Min,

33 Index Minimum, 87 Modify the default numeric value, 192 Monitoring report performance, 313 Month, 122 More data sources, 288 Multiple context, 105 Multiple page headers, 14 N Negative values, 199 New page after, 55 Non-zero values, 86 Nth day of the month, 259 Number, 192 Number converted to words, 92 Number of records, 317 Numbers to text, 92 Number to date conversion, 91 Numeric axis chart, 196 Numeric fields, 69 NumericText, 93 O Object properties, 278 Object size and position, 265 Office 2007, 269 Offload, 322 On-demand, 31 subreport, 32 Open from repository, 278 Operational report, 98, 99 Options, 218 Options dialogue, 192, 196 Orientation, 105 Outlook, 311 Outlook.exe, 312 Overlays, 188 P Page, 55 Page footer, 177 Page header, 14, 19, 125, 177 Page number, 15 Paragraph, 161 Parameter, 99, 127, 144, 152, 157, 235 field, 101, 125, 144, 152, 156, 235, 236, 240, 247 panel, 247 value, 243 value masks, 246 Parameter edit mask options, 248 Passing data between subreports, 34 Paycheck, 112 PDF, 114 Performance Information dialogue, 314 Performance timing, 314 Perform grouping on server, 322, 326 Picture, 131, 301 Precisely formatted, 97 Printing, 14 Print state, 217 Processing, 315 Prompt group text, 125 Prompts, 259 Publish report as a web service, 178, 179 Purchase orders, 124 Q QR code, 300 image, 301 R Rank, 141, 147 Rank in a crosstab, 147 Ranking, 144, 253 parameter, 145 Read only, 281 Read-only reports, 281 RecordNumber, 293 Record Selection Formula, 101, 104, 122 Record Selection Formula Editor, 154 Recurrence, 259 Reducing the amount of information, 128 Refresh all objects, 278 Refresh object, 277 Removing decimals, 191 Repeating group headers,

34 Index ReplicateString, 183 Report custom function, 215 Report definition, 252, 315 Report footer, 177 Report header, 105, 177 Report header template, 29 Report index, 305, 306 Report layout, 13 Report options, 323 Report preview, 167 Report Wizard, 23 Reposition images, 132 Repository, 257 Request for disability forms, 124 Reset page number after, 55 Right, 63 Round, 183 rptr, 281 Rulers, 265 Running totals, 87, 323 S SAP BusinessObjects, 104 SAP BusinessObjects BI, 258 platform, 258, 274, 276 SAP BusinessObjects BI launch pad, 258 SAP BusinessObjects Central Management Console, 261 SAP BusinessObjects Edge, 258 SAP BusinessObjects Explorer, 270 SAP BusinessObjects LiveOffice, 275, 277 SAP BusinessObjects OnDemand, 270 SAP Crystal Reports for Visual Studio 2010, 166 standalone viewer, 271 template, 167 viewer, 270 SAP Crystal Server, 258 Save as, 273 Save as template, 213 Saved data, 315 Save to repository, 278 Schedule, 259, 261, 263 Scheduling, 258 Schema, 171 Section Expert, 15, 20, 38, 40, 55, 111, 137, 139, 149, 190, 321 Select data in subreport based on field, 27 Select distinct records, 48 Select Expert, 125 Selection formulas, 101, 104, 122, 154, 207, 245, 317, 318 SendMailUFL, 289 Separated values (CSV), 269 Series, 106 Series options, 186 SetClipboardText, 312 Set CSS class, 168 Set datasource location, 307 dialogue, 307 Set the text interpretation, 161 Setup, 119 Shared, 217 Sharing data between reports, 25 ShellExecute, 311, 312 Short-term strategic objectives, 102 Short-term strategic reports, 102 Show major gridlines, 201 Side-by-side reports, 44 Single value selection, 243 Size and position, 265 SMALL, 162 Smart tag, 168 SMTPMsgBody, 290 SMTPMsgClear, 290 SMTPMsgSaveOutbox, 290 SMTPMsgSendOutbox, 291 Solution Explorer, 168 Sort, 147 Sorted and ranked crosstab, 148 Sorted group header, 142 Sort Expert, 148 Sorting, 141 Sorts, 127 SPAN, 162 Span a single section, 58 Span multiple sections, 60 Special fields, 54 Split, 114 SQL,

35 Index expressions, 325, 326 Standard Report Creation Wizard, 23, 206 STRIKE, 162 String, 192 Strings with different formats, 61 StringVar, 117, 288, 290, 311 Style, 168 of the report, 166 Sub-divide chart, 197 Subreport, 107, 108 options, 42 Subreports, 22, 25, 26, 28, 29, 31, 44 as templates, 28 Sum, 126, 130 Summary, 141 Supported HTML attributes, 162 Supported HTML tags, 162 Suppress, 38, 48, 105, 118, 119, 132, 137, 139, 140 blank subreport, 41 duplicate rows, 47 no drill-down, 51 page header, 15 report sections, 38 Switch to fields, 276 System events, 262 T Table of Contents, 115, 118, 306 Tags, 162 Template Expert, 206, 210 Templates, 109, 204, 208, 307 Text interpretation, 165 Text object, 124 Text to numbers, 92 Time, 91, 192 ToNumber, 92 Toolbox, 168 Tool tip, 133 text, 134 Top N, 107, 143, 144, 148, 253, 323 reports, 253 Top percentage, 107 ToText, 63, 116, 135, 193, 312 ToWords, 92 TR, 162 Tracking over time, 185 Triggers, 261 Type conversions, 90 Types of reports, 97 U U21win32, 310 UBound, 66, 95 UFL, 285, 289, 292, 295, 298, 300, 303, 305, 310, 311 Underlay following sections, 20, 60 Universe query, 275 Unlinked subreports, 22 Update, 308 UpperCase, 62 Use a formula, 89 Use editor, 216 Use export options defined in the report, 260 Use extractor, 215 Use formula as group name, 119 Use indexes or server for speed, 323 User-filtered values, 236 User function libraries, 217 User function libraries (UFL), 285, 310 User parameters, 239 Use web service data source, 173 V Value options, 247, 253 Variable, 66 Variations in values, 185 Vertical alignment, 65 Vertical field spanning multiple sections, 60 Vertical text fields, 58, 59 View in browser, 180 Visual indicators, 131 Visual information, 105 Visualizations, 211 Visual Studio,

36 Index W Watermarks, 19 Web-based data formats, 159 Web-based viewer, 274 Web-enabled data structures, 159 Web Service Definition Language, 172 Web services, 170, 172, 173, 174, 178 Web technology, 159 WhilePrintingRecords, 293, 296 Wildcards as a parameter value, 241 Windows variables, 310 World Label, 307 WSDL, 172, 173 X X-axis, 192, 201 XBRL, 279 xlsx, 269 XML, 170, 171, 172, 175, 176, 177, 279, 295, 296, 304 export options, 280 transform (XSL), 279 XML and web services, 172 data source, 173 XMLFileCloseheader, 297 XMLFileCreateheader, 296 XMLFileEndGroup, 296 XMLFileStartGroup, 296 XMLFileWriteTag, 296 XSL, 279 Xunit, 302 Y Y-axis, 201 Year, 62,

2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together

2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together Crystal Reports Level 2 Computer Training Solutions Course Outline 1. Creating Running Totals Create a Running Total Field Modify a Running Total Field Create a Manual Running Total on Either Detail Data

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Parameter Fields and Prompts. chapter

Parameter Fields and Prompts. chapter Parameter Fields and Prompts chapter 23 Parameter Fields and Prompts Parameter and prompt overview Parameter and prompt overview Parameters are Crystal Reports fields that you can use in a Crystal Reports

More information

Custom Reporting System User Guide

Custom Reporting System User Guide Citibank Custom Reporting System User Guide April 2012 Version 8.1.1 Transaction Services Citibank Custom Reporting System User Guide Table of Contents Table of Contents User Guide Overview...2 Subscribe

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content

SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content SAP Business Objects Web Intelligence and BI Launch Pad 4.0 Introducing Web Intelligence BI launch pad: What's new in 4.0 Customizing BI launch

More information

COGNOS 8 Business Intelligence

COGNOS 8 Business Intelligence COGNOS 8 Business Intelligence QUERY STUDIO USER GUIDE Query Studio is the reporting tool for creating simple queries and reports in Cognos 8, the Web-based reporting solution. In Query Studio, you can

More information

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Participant Guide RP301: Ad Hoc Business Intelligence Reporting RP301: Ad Hoc Business Intelligence Reporting State of Kansas As of April 28, 2010 Final TABLE OF CONTENTS Course Overview... 4 Course Objectives... 4 Agenda... 4 Lesson 1: Reviewing the Data Warehouse...

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

BusinessObjects Enterprise InfoView User's Guide

BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise XI 3.1 Copyright 2009 SAP BusinessObjects. All rights reserved. SAP BusinessObjects and its logos, BusinessObjects, Crystal Reports,

More information

SAP Crystal Reports for Enterprise Document Version: 4.0 Support Package 6-2013-04-30. SAP Crystal Reports for Enterprise User Guide

SAP Crystal Reports for Enterprise Document Version: 4.0 Support Package 6-2013-04-30. SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise Document Version: 4.0 Support Package 6-2013-04-30 Table of Contents 1 Document History.... 11 2 Introduction to SAP Crystal Reports for Enterprise....12 2.1 About Crystal

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

Sample- for evaluation purposes only! Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only! Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

How To Learn To Write A Report In A Database On A Microsoft Powerbook

How To Learn To Write A Report In A Database On A Microsoft Powerbook Crystal Reports XI: Level 1 Course Specifications Course number: 085517 Software: Crystal Reports? Course length: 2.0 day(s) Course Description Crystal Reports XI: Level 1 is the primary recommended course

More information

InfoView User s Guide. BusinessObjects Enterprise XI Release 2

InfoView User s Guide. BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 InfoView User s Guide BusinessObjects Enterprise XI Release 2 Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents,

More information

Create Analysis, Interactive Reports, and Dashboards

Create Analysis, Interactive Reports, and Dashboards Create Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

Crystal Reports Secrets. 20 Secret Shortcuts and Workarounds for Crystal Reports Designers and Developers

Crystal Reports Secrets. 20 Secret Shortcuts and Workarounds for Crystal Reports Designers and Developers Crystal Reports Secrets 20 Secret Shortcuts and Workarounds for Crystal Reports Designers and Developers This guide is for your personal use, compliments of Business Objects Education Services. It contains

More information

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012 2012 SAP Business Intelligence (BI) Reporting Training for MM General Navigation Rick Heckman PASSHE 1/31/2012 Page 1 Contents Types of MM BI Reports... 4 Portal Access... 5 Variable Entry Screen... 5

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Course Descriptions for Focused Learning Classes

Course Descriptions for Focused Learning Classes Course Descriptions for Focused Learning Classes Excel Word PowerPoint Access Outlook Adobe Visio Publisher FrontPage Dreamweaver EXCEL Classes Excel Pivot Tables 2 hours Understanding Pivot Tables Examining

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 The biggest difference between Excel 2007 and its predecessors is the new layout. All of the old functions are still there (with some new additions), but they are now located

More information

Utilizing Microsoft Access Forms and Reports

Utilizing Microsoft Access Forms and Reports Utilizing Microsoft Access Forms and Reports The 2014 SAIR Conference Workshop #3 October 4 th, 2014 Presented by: Nathan Pitts (Sr. Research Analyst The University of North Alabama) Molly Vaughn (Associate

More information

BIA and BO integration other performance management options Crystal Reports Basic: Fundamentals of Report Design

BIA and BO integration other performance management options Crystal Reports Basic: Fundamentals of Report Design SAP BO Training Content Overview System Set up and Administration SAP BO Integration Kit Installation & Configuration SAP BO integrated solution approach Server administration SAP Authorization administration

More information

Business Objects Version 5 : Introduction

Business Objects Version 5 : Introduction Business Objects Version 5 : Introduction Page 1 TABLE OF CONTENTS Introduction About Business Objects Changing Your Password Retrieving Pre-Defined Reports Formatting Your Report Using the Slice and Dice

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

SAP BusinessObjects Business Intelligence (BI) platform Document Version: 4.1, Support Package 3-2014-04-03. Report Conversion Tool Guide

SAP BusinessObjects Business Intelligence (BI) platform Document Version: 4.1, Support Package 3-2014-04-03. Report Conversion Tool Guide SAP BusinessObjects Business Intelligence (BI) platform Document Version: 4.1, Support Package 3-2014-04-03 Table of Contents 1 Report Conversion Tool Overview.... 4 1.1 What is the Report Conversion Tool?...4

More information

Enterprise Reporting Advanced Web Intelligence Training. Enterprise Reporting Services

Enterprise Reporting Advanced Web Intelligence Training. Enterprise Reporting Services Enterprise Reporting Advanced Web Intelligence Training Enterprise Reporting Services Table of Contents Chapter Page 1 Overview 4 2 Web Intelligence Access 8 3 BI Launch Pad Navigation 12 4 Nested Query

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Table Of Contents. iii

Table Of Contents. iii s Table Of Contents s... 1 s Overview... 1 Entering the License Code into ServiceCEO... 1 Categories... 2 Types... 2 Customer s... 2 Scheduling s... 3 Employee s... 5 Financial s... 7 Quotes/Estimates

More information

Creating Acrobat Forms Acrobat 9 Professional

Creating Acrobat Forms Acrobat 9 Professional Creating Acrobat Forms Acrobat 9 Professional Acrobat forms typically have an origin from another program, like Word, Illustrator, Publisher etc. Doesn t matter. You design the form in another application

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

TheFinancialEdge. Reports Guide for Accounts Receivable

TheFinancialEdge. Reports Guide for Accounts Receivable TheFinancialEdge Reports Guide for Accounts Receivable 041813 2013 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or

More information

Crystal Reports Form Letters Replace database exports and Word mail merges with Crystal's powerful form letter capabilities.

Crystal Reports Form Letters Replace database exports and Word mail merges with Crystal's powerful form letter capabilities. Crystal Reports Form Letters Replace database exports and Word mail merges with Crystal's powerful form letter capabilities. Prerequisites: Fundamental understanding of conditional formatting formulas

More information

Computer Training Centre University College Cork. Excel 2013 Pivot Tables

Computer Training Centre University College Cork. Excel 2013 Pivot Tables Computer Training Centre University College Cork Excel 2013 Pivot Tables Table of Contents Pivot Tables... 1 Changing the Value Field Settings... 2 Refreshing the Data... 3 Refresh Data when opening a

More information

MICROSOFT ACCESS 2007 BOOK 2

MICROSOFT ACCESS 2007 BOOK 2 MICROSOFT ACCESS 2007 BOOK 2 4.1 INTRODUCTION TO ACCESS FIRST ENCOUNTER WITH ACCESS 2007 P 205 Access is activated by means of Start, Programs, Microsoft Access or clicking on the icon. The window opened

More information

Dashboard Builder TM for Access

Dashboard Builder TM for Access Dashboard Builder TM for Access Professional Edition Application Guide Version 5 8/8/15 This document is copyright 2007-2015 OpenGate Software. The information contained in this document is subject to

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

BUSINESS OBJECTS XI WEB INTELLIGENCE

BUSINESS OBJECTS XI WEB INTELLIGENCE BUSINESS OBJECTS XI WEB INTELLIGENCE SKW USER GUIDE (Skilled Knowledge Worker) North Carolina Community College Data Warehouse Last Saved: 3/31/10 9:40 AM Page 1 of 78 Contact Information Helpdesk If you

More information

How To Create A Web Report In A Windows 7.5 (Windows 7) With A Windows 8.5) Or Windows 7 (Windows 8) With Anhtml (Windows) Or A Windows 10 (Windows 10) (Windows Xp) (

How To Create A Web Report In A Windows 7.5 (Windows 7) With A Windows 8.5) Or Windows 7 (Windows 8) With Anhtml (Windows) Or A Windows 10 (Windows 10) (Windows Xp) ( 21 Crystal Reports Web Alternatives So far, this book has discussed many techniques for creating sophisticated reports with the Crystal Reports 10 designer. Part III of the book discusses methods for integrating

More information

Course Title: Microsoft Access 2007- Basic Duration: 12 hours

Course Title: Microsoft Access 2007- Basic Duration: 12 hours Course Title: Microsoft Access 2007- Basic Duration: 12 hours Getting started Topic A: Database concepts A-1: Identifying database components A-2: Identifying the advantages of relational databases Topic

More information

3 What s New in Excel 2007

3 What s New in Excel 2007 3 What s New in Excel 2007 3.1 Overview of Excel 2007 Microsoft Office Excel 2007 is a spreadsheet program that enables you to enter, manipulate, calculate, and chart data. An Excel file is referred to

More information

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS 28-APRIL-2015 TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. USE GET HELP NOW & FAQS... 1 SYSTEM

More information

Taleo Enterprise. Taleo Reporting Getting Started with Business Objects XI3.1 - User Guide

Taleo Enterprise. Taleo Reporting Getting Started with Business Objects XI3.1 - User Guide Taleo Enterprise Taleo Reporting XI3.1 - User Guide Feature Pack 12A January 27, 2012 Confidential Information and Notices Confidential Information The recipient of this document (hereafter referred to

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Access 2007 Creating Forms Table of Contents

Access 2007 Creating Forms Table of Contents Access 2007 Creating Forms Table of Contents CREATING FORMS IN ACCESS 2007... 3 UNDERSTAND LAYOUT VIEW AND DESIGN VIEW... 3 LAYOUT VIEW... 3 DESIGN VIEW... 3 UNDERSTAND CONTROLS... 4 BOUND CONTROL... 4

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Business Objects 4.1 Quick User Guide

Business Objects 4.1 Quick User Guide Business Objects 4.1 Quick User Guide Log into SCEIS Business Objects (BOBJ) 1. https://sceisreporting.sc.gov 2. Choose Windows AD for Authentication. 3. Enter your SCEIS User Name and Password: Home Screen

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

TIBCO Spotfire Metrics Modeler User s Guide. Software Release 6.0 November 2013

TIBCO Spotfire Metrics Modeler User s Guide. Software Release 6.0 November 2013 TIBCO Spotfire Metrics Modeler User s Guide Software Release 6.0 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

COGNOS Query Studio Ad Hoc Reporting

COGNOS Query Studio Ad Hoc Reporting COGNOS Query Studio Ad Hoc Reporting Copyright 2008, the California Institute of Technology. All rights reserved. This documentation contains proprietary information of the California Institute of Technology

More information

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp.

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp. Enhanced Formatting and Document Management Word 2010 Unit 3 Module 3 Diocese of St. Petersburg Office of Training Training@dosp.org This Page Left Intentionally Blank Diocese of St. Petersburg 9/5/2014

More information

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

More information

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office Access 2007 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table

More information

DESKTOP PRODUCTIVITY SOFTWARE

DESKTOP PRODUCTIVITY SOFTWARE USING WINDOWS 8 UNIT 1: INTRODUCTION TO COMPUTERS Topic A: Overview of computers Topic B: How computers work Topic C: Starting the computer UNIT 2: INPUT DEVICES Topic A: Mouse and keyboard basics Topic

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

Practical Example: Building Reports for Bugzilla

Practical Example: Building Reports for Bugzilla Practical Example: Building Reports for Bugzilla We have seen all the components of building reports with BIRT. By this time, we are now familiar with how to navigate the Eclipse BIRT Report Designer perspective,

More information

University of Rochester

University of Rochester University of Rochester User s Guide to URGEMS Ad Hoc Reporting Guide Using IBM Cognos Workspace Advanced, Version 10.2.1 Version 1.0 April, 2016 1 P age Table of Contents Table of Contents... Error! Bookmark

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

Release Document Version: 1.4-2013-05-30. User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office

Release Document Version: 1.4-2013-05-30. User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office Release Document Version: 1.4-2013-05-30 User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office Table of Contents 1 About this guide....6 1.1 Who should read this guide?....6 1.2 User profiles....6

More information

SAS BI Dashboard 3.1. User s Guide

SAS BI Dashboard 3.1. User s Guide SAS BI Dashboard 3.1 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2007. SAS BI Dashboard 3.1: User s Guide. Cary, NC: SAS Institute Inc. SAS BI Dashboard

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

MicroStrategy Analytics Express User Guide

MicroStrategy Analytics Express User Guide MicroStrategy Analytics Express User Guide Analyzing Data with MicroStrategy Analytics Express Version: 4.0 Document Number: 09770040 CONTENTS 1. Getting Started with MicroStrategy Analytics Express Introduction...

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

ENTERPRISE DATA WAREHOUSE PRODUCT PERFORMANCE REPORTS USER GUIDE EXTERNAL. Version: 1.0

ENTERPRISE DATA WAREHOUSE PRODUCT PERFORMANCE REPORTS USER GUIDE EXTERNAL. Version: 1.0 ENTERPRISE DATA WAREHOUSE PRODUCT PERFORMANCE REPORTS USER GUIDE EXTERNAL Version: 1.0 September 2004 Table of Contents 1.0 OVERVIEW...1 1.1 Product Performance Overview... 1 1.2 Enterprise Data Warehouse

More information

Serif PagePlusX4. Group Listing

Serif PagePlusX4. Group Listing File Menu New Startup Wizard New Publication New Book Open File Open Browse Files Browse Revert Close File Save Save As Save As Package Export As Picture Properties Page Setup Layout Guides Print Print

More information

Reporting and Analysis with SAP BusinessObjects

Reporting and Analysis with SAP BusinessObjects Ingo Hilgefort Reporting and Analysis with SAP BusinessObjects Bonn Boston Contents at a Glance 1 Introduction to the SAP BusinessObjects Reporting and Analysis Tools... 19 2 Customer Requirements and

More information

SAP BusinessObjects Web Intelligence Users Guide SAP BusinessObjects Business Intelligence Suite 4.0 Feature Pack 3

SAP BusinessObjects Web Intelligence Users Guide SAP BusinessObjects Business Intelligence Suite 4.0 Feature Pack 3 SAP BusinessObjects Web Intelligence Users Guide SAP BusinessObjects Business Intelligence Suite 4.0 Feature Pack 3 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge,

More information

COGNOS (R) 8 Business Intelligence

COGNOS (R) 8 Business Intelligence COGNOS (R) 8 Business Intelligence QUERY STUDIO USER GUIDE Query Studio Quick Tour Cognos(R) 8 Business Intelligence Readme Query Studio User Guide USER GUIDE THE NEXT LEVEL OF PERFORMANCE TM Product Information

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

More information

CPM 5.2.1 5.6 release notes

CPM 5.2.1 5.6 release notes 1 (18) CPM 5.2.1 5.6 release notes Aditro Oy, 2014 CPM Release Notes Page 1 of 18 2 (18) Contents Fakta version 5.2.1. version 1.2.1... 3 Fakta version 5.2.1.1038 sp1 version 1.2.1.300 sp1... 4 Fakta version

More information

How to Work with SAP Crystal Reports in SAP Business One

How to Work with SAP Crystal Reports in SAP Business One l How-To Guide SAP Business One 9.0, 9.1 Document Version: 1.5 2014-09-22 How to Work with SAP Crystal Reports in SAP Business One All Countries Typographic Conventions Type Style Example Description Words

More information

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide CONTENTM WEBSITE MANAGEMENT SYSTEM Getting Started Guide Table of Contents CONTENTM WEBSITE MANAGEMENT SYSTEM... 1 GETTING TO KNOW YOUR SITE...5 PAGE STRUCTURE...5 Templates...5 Menus...5 Content Areas...5

More information

How to Work with Crystal Reports in SAP Business One

How to Work with Crystal Reports in SAP Business One SAP Business One How-To Guide PUBLIC How to Work with Crystal Reports in SAP Business One Applicable Release: SAP Business One 8.8 All Countries English January 2010 Table of Contents Introduction... 4

More information

DATA VISUALIZATION WITH TABLEAU PUBLIC. (Data for this tutorial at www.peteraldhous.com/data)

DATA VISUALIZATION WITH TABLEAU PUBLIC. (Data for this tutorial at www.peteraldhous.com/data) DATA VISUALIZATION WITH TABLEAU PUBLIC (Data for this tutorial at www.peteraldhous.com/data) Tableau Public allows you to create a wide variety of interactive graphs, maps and tables and organize them

More information

8/19/2010. Crystal Reports Beginner Training: Part I August 13, 2010. Crystal Report Trainings. Intro to Crystal Reports TODAY!

8/19/2010. Crystal Reports Beginner Training: Part I August 13, 2010. Crystal Report Trainings. Intro to Crystal Reports TODAY! Crystal Reports Beginner Training: Part I August 13, 2010 Tom Bedall, Pro Seniors, Inc. Crystal Report Trainings Intro to Crystal Reports TODAY! Will be recorded and made available for FREE Crystal Reports

More information

SAP BO 4.1 COURSE CONTENT

SAP BO 4.1 COURSE CONTENT Data warehousing/dimensional modeling/ SAP BW 7.0 Concepts 1. OLTP vs. OLAP 2. Types of OLAP 3. Multi Dimensional Modeling Of SAP BW 7.0 4. SAP BW 7.0 Cubes, DSO s,multi Providers, Infosets 5. Business

More information

Creating PDF Forms in Adobe Acrobat

Creating PDF Forms in Adobe Acrobat Creating PDF Forms in Adobe Acrobat Flinders University Centre for Educational ICT Contents What are PDF forms?... 1 Viewing a PDF form... 1 Types of PDF forms... 1 Printing and saving PDF forms... 1 Forms

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

Dreamweaver and Fireworks MX Integration Brian Hogan Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

MICROSOFT OUTLOOK 2010

MICROSOFT OUTLOOK 2010 MICROSOFT OUTLOOK 2010 George W. Rumsey Computer Resource Center 1525 East 53rd, Suite 906 Chicago, IL 60615 (773) 955-4455 www.computer-resource.com gwrumsey@att.net What Is Outlook?... 1 Folders... 2

More information

Chapter 4 Accessing Data

Chapter 4 Accessing Data Chapter 4: Accessing Data 73 Chapter 4 Accessing Data The entire purpose of reporting is to make sense of data. Therefore, it is important to know how to access data locked away in the database. In this

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

ReportPortal Web Reporting for Microsoft SQL Server Analysis Services

ReportPortal Web Reporting for Microsoft SQL Server Analysis Services Zero-footprint OLAP OLAP Web Client Web Client Solution Solution for Microsoft for Microsoft SQL Server Analysis Services ReportPortal Web Reporting for Microsoft SQL Server Analysis Services See what

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

Creating Custom Crystal Reports Tutorial

Creating Custom Crystal Reports Tutorial Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information