Crystal Reports Secrets. 20 Secret Shortcuts and Workarounds for Crystal Reports Designers and Developers
|
|
|
- Scot Gardner
- 10 years ago
- Views:
Transcription
1 Crystal Reports Secrets 20 Secret Shortcuts and Workarounds for Crystal Reports Designers and Developers
2 This guide is for your personal use, compliments of Business Objects Education Services. It contains a concise summary of answers to the most common Crystal Reports questions, along with links to more detailed explanations. Created to help report designers and developers quickly improve their skills, this guide was:.. Developed by the people who wrote the code experts who can explain their secrets, step by step Based on the most common questions identified by Technical Support Designed to help you get the most out of Crystal Reports. Learn to unlock the value inside your information to help your organization improve business performance. ii Business Objects Crystal Reports Secrets
3 Contents Why these secrets are so important i.) Critical skill deficit...5 ii) Cost of inadequate preparation...6 iii) Impact on IT project success...7 iv) Training resources available...8 Top 20 Secrets Secrets for Report Designers: #1. How to display every nth record in Crystal Reports...9 #2. How to display only the report file name on a report...11 #3. How to suppress a blank subreport from displaying...12 #4. How to share subreport data with the main report...15 #5. Evaluate null field values in formulas or record selection...18 #6. How different 'Keep Together' options affect the report...23 #7. How to export to PDF or RTF in Crystal Reports...28 #8. Suppress a section that contains a blank subreport...30 #9. How to create a table of contents for a report...39 #10. How to add time fields...43 #11. What font types are supported in Crystal Reports?...47 #12. How to format specific words or characters within a string...50 #13. How to display a date range parameter on a report...52 #14. How to suppress a blank subreport...54 iii Business Objects Crystal Reports Secrets
4 Contents Secrets for Developers: #15. How to deploy an application that uses Crystal Reports and VS.NET...56 #16. What is Unicows.dll and where can you find it?...59 #17. How to change the data source using CR for VS.NET application...60 #18. How to pass Database logon info to a Crystal Report at runtime in VB.NET...65 #19. How to create a report and add a parameter field using Report Creation API...70 #20. Crystal Reports for Visual Studio.NET...76 Summary:...78 More resources available Worldwide contact information:...79 iv Business Objects Crystal Reports Secrets
5 Critical Skill Deficit Fact: Many users are not adequately prepared Organizations around the world invest in business intelligence (BI), enterprise resource planning (ERP) and customer relationship management (CRM) solutions yet frequently fail to arm their people with the training they need to get the most out of the implementation. According to Meta Group research, three out of every four ERP users raise the white flag they do not have the skills they require. The good news is that the time you invest in learning the secrets presented in this document and in formal learning will pay off right away in greater efficiency, boosted confidence, and better reports. Overlooked: Let s learn a lesson from ERP Three out of four ERP users lack competency 76% user competency substandard or failing 24% user competency satisfactory 83% didn t institute a comprehensive training plan 42% no end-user training beyond that provided at the end of the implementation Source: Meta Group research, August 2003 as cited in ZD Net online article Three out of four ERP users raise the white flag. 5 Business Objects Crystal Reports Secrets
6 Cost of Inadequate Preparation Fact: Preparation and skill development are key project success factors The impact of inadequate preparation may be greater than you think. We all suffer from the tyranny of the urgent putting off learning critical skills even though we will desperately need these very skills in the middle of a demanding project. Here is the question: What is the cost of failure or delay on your project? Why do IT Projects fail? Incomplete Requirements 13.1% Lack of User Involvement 12.4% Lack of Resources 10.6% Unrealistic Expectations 9.9% Lack of Executive Support 9.3% Changing Requirements & Specifications 8.7% Lack of Planning 8.1% Didn t Need it any longer 7.5% Lack of IT Management 6.2% Technology Illiteracy 4.3% Source: Chaos Report N= 365 IT Managers 6 Business Objects Crystal Reports Secrets
7 Impact on IT project success Fact: The real cost of skill deficit is high Organizations often believe that users are resourceful enough to find their own way through new programs and systems. While this may be true, an unguided learning process is much less effective than a systematic approach to training. Learning the techniques that make a user proficient requires a one-time investment whereas failure to master these techniques requires a time investment every time the user performs a task. On average, most individuals spend 50 percent of their time gathering and collecting the information for standard report analysis and the remaining time analyzing the information. At those companies where BI tools and technologies have been implemented in a consistent manner, roughly 20 percent of an individual's time is spent gathering and collecting, while 80 percent is spent reporting and analyzing the information for trends, business opportunities, forecasting and other related value-based analysis Hackett Best Practices Strategic Decision Making benchmark, % of IT executives said training of users would improve information access Business Week Survey 7 Business Objects Crystal Reports Secrets
8 Training Resources Available Fact: Continuous learning yields exponential benefit Once you ve had a chance to digest these tips and tricks, you ll probably want to take your skills to the next level. Trained users take advantage of 20% more product features and have both greater competence and higher confidence as a result of their training. Learn from the experts, the people who created the software. Both classroom and e- learning training is available. Business Objects Education group has trained over 200,000 users. Only the creators of the software have in-depth understanding of all of the software features. We employ only the most experienced instructors professionals with a proven track record in sharing time-saving tips and best practices. 95% of trainees rank their experience as good to excellent in terms of job relevance. 1 Courses for Crystal Reports Designers: Report Design I: ( ) Fundamentals of Report Design Report Design II: ( Business Reporting Solutions Courses for Crystal Enterprise Administrators: Crystal Enterprise: ( Administering Users and Content Crystal Enterprise: ( Administering Servers Crystal Enterprise: ( Designing and Deploying a Solution Crystal Enterprise: ( Building and Creating Business Views 1 Source: Analysis of post class evaluations Business Objects Crystal Reports Secrets
9 #1 How to display every nth record in Crystal Reports #1 How to display every nth record in Crystal Reports The information in the article refers to: Crystal Reports 10 Applies to: Reported version and lower Formulas Conditional Suppression Format Section Synopsis: In Crystal Reports (CR), is it possible to display every nth record without indexing the database table? For example, you have a report with 100 records but you only want to see every 25th record. Your report connects to a database table that does not contain an indexed field. Solution: A formula can be created that will display every nth record by conditionally suppressing all other records. The example below shows how to display every 25th record. Example Formula: Remainder((recordnumber),25) <> 0 You will employ this formula in the Section Expert. To apply this formula in the Section Expert: 1. Right-click on the details section and click 'Section Expert'. 2. On the 'Sections' list, click the details section. 3. Leave the check box cleared and click the 'X+2' command button next to 'Suppress (No Drill-Down)'. The formula editor opens. 9 Business Objects Crystal Reports Secrets
10 #1 How to display every nth record in Crystal Reports 4. Type the formula provided by this article. 5. Save your formula and close the formula editor. 6. Click OK in the Section Expert. You will now only see every 25th record. All other records do not display on the report because of the conditional suppression at the details level. Background Information This formula returns a value of true for all records not divisible by 25 and a value of false for all records that are divisible by 25. CR reads the results of the formula to determine if a record will appear. More Information For more information about the 'Remainder' function or 'Record Number' special field, refer to the Crystal Reports Online Help by pressing the 'F1' key. Training: Learn more about Crystal Reports - Report Design. Refer to 'Courses & Schedules' at: 10 Business Objects Crystal Reports Secrets
11 # 2 How to display only the report file name on the report # 2 How to display only the report file name on the report The information in the article refers to: Crystal Reports 10 Applies to: All versions Formulas Return File Name Synopsis When using the special field called 'filename' the report shows the entire path including the file name. NOTE: How do you display just the report file name on the report? Solution The report must be saved before the formula will return a value, or it will return an empty string. This formula is not version-specific and can be placed in any report, because it uses the special field 'filename', which exists in Crystal Reports 8.5, 9, and 10. To display just the report file name on a report, use a formula similar to this: //This is the formula name StringVar Array File:=Split(filename,'\'); NumberVar i := Ubound(File); File[i]; Learn more about Crystal Reports - Report Design. Refer to 'Courses & Schedules' at: 11 Business Objects Crystal Reports Secrets
12 #3 Suppressing a blank subreport from displaying on the main report NOTE: New to Crystal Reports 9 is the 'Suppress Blank Subreport' check box. For more information on how to suppress blank subreports in CR 9, refer to our knowledge base article c #3 How to suppress a blank subreport from displaying on the main report The information in the article refers to: Seagate Info, Seagate Crystal Reports 5 Applies to: Reported version and lower Hiding subreports that have no records Using 'Suppress Printing if No Records' checkbox Synopsis How can you suppress a blank subreport from displaying on the main report. Moreover, you want to suppress the sections within a subreport, if there is no data, so that it does not display on the main report? For example: There is a subreport contained in the main report. If the subreport does not contain any data, you do not want it to display in the main report. You want to suppress the sections of the blank subreport. Solution NOTE: This workaround applies to Crystal Reports 8.5 and earlier. A subreport is an object within the Crystal Reports designer. Since the subreport is inserted into the main report, it cannot be entirely suppressed. Even when a subreport does not have any records, the subreport object still exists within a section of the main report. This means the Crystal Reports designer does not consider a section that contains a subreport as a blank section. You notice that by selecting the 'Suppress if blank' option, from the 'Section Expert' does not work. To workaround this, you must first suppress the blank subreport, then shrink the blank section. 12 Business Objects Crystal Reports Secrets
13 #3 Suppressing a blank subreport from displaying on the main report NOTE: This only suppresses the subreport from printing, so you will not see the contents of the subreport; the subreport still exists as an object in the main report. This means you still cannot format the main report section that contains the blank Suppressing a Blank Subreport To suppress the blank subreport, complete the following: 1. In the main report, right-click the subreport object and click 'Edit Subreport'. This takes you to the 'Subreport' tab of the main report. 2. On the 'File' menu, click 'Report Options'. 3. Select the 'Suppress Printing if No Records' checkbox, and then click 'OK'. 4. Return to the 'Preview' tab of the main report. 5. Refresh the report. Blank subreports now appear as empty boxes on the report. Shrinking a Blank Section To shrink the blank section, complete the following: 1. Format the subreport object so there are no borders: on the main report, right-click the subreport object and click 'Format Subreport'. on the 'Borders' tab, select 'None' from the Top, Bottom, Right and Left boxes. Click 'OK' to return to the report. 2. In 'Design' tab of the main report, resize the height of the subreport object so it is as short as possible. 3. Move the subreport object so it is at the very top of the section. 4. On the 'Format' menu of the main report, click 'Section'. 5. Select the section containing the subreport, select the 'Fit Section' checkbox, and then click 'OK' to return to the report. 13 Business Objects Crystal Reports Secrets
14 #3 Suppressing a blank subreport from displaying on the main report Now when you preview the main report, the blank subreports are hidden from view. CAUTION: If you want to actually suppress the section in the main report that contains the blank subreport, instead of merely concealing the blank subreport on the main report, refer to knowledge base article c Keep in mind, however, that the solution in knowledge base article c requires inserting another subreport, which will significantly increase the time it takes to process and display your report. Training: Learn more about Crystal Reports - Report Design. Refer to 'Courses & Schedules' at: 14 Business Objects Crystal Reports Secrets
15 #4 How to Share Subreport Data with the Main Report #4 How to Share Subreport Data with the Main Report The information in the article refers to: Seagate Info, Crystal Reports 7 Applies to: Reported version and higher Shared variables Passing data between subreport and main report Synopsis A report contains a subreport. Data from the subreport is required for calculations in the main report. How can you share subreport data with the main report in version 7 (or higher) of the Crystal Reports Designer? Solution NOTE: This is not possible with On Demand Subreports in Crystal Reports. Shared variables, introduced in Crystal Reports version 7, make it easier to pass values from a subreport to the main report. Using shared variables requires two formulas: one to store the value in a shared variable, the other to retrieve the value from the shared variable. The most important thing to remember when using shared variables is that Crystal Reports must first evaluate the formula where the value is stored before evaluating the formula that retrieves the shared variable. For example if you want to pass a grand total from the subreport to do a calculation in the main report, follow these steps: 1. In the subreport, create a formula similar to the one below: //@SubFormula //Stores the grand total of the //{Orders.Order Amount} field //in a currency variable called 'mytotal' 15 Business Objects Crystal Reports Secrets
16 #4 How to Share Subreport Data with the Main Report WhilePrintingRecords; Shared CurrencyVar mytotal := Sum ({Orders.Order Amount}) 2. Place this formula in your subreport. 3. In the main report, create a formula that declares the same variable name: //@MainFormula //Returns the value that was stored //in the shared currency variable called //mytotal in the subreport WhilePrintingRecords; Shared CurrencyVar mytotal; mytotal 4. in a main report section that is beneath the section containing the subreport. For the shared variable to return the correct value in the main report, you must in a main report section that is beneath the section containing the subreport. This ensures Crystal Reports evaluates One way to do this is to insert a section below the section containing the subreport, and in this new sub-section: On the 'Format' menu, click 'Section'. On the 'Sections' list, click the section containing the subreport. Click 'Insert' (at top of dialog box). This inserts an additional subsection. Click 'OK' to return to the report, and into this new subsection. The next time you preview the displays the value from the subreport. In this particular example, that value was the grand total of the {Orders.Order Amount} field. 16 Business Objects Crystal Reports Secrets
17 #4 How to Share Subreport Data with the Main Report 5. Once you have verified is returning the correct value from the subreport, you can include this formula in other main report formulas, such as: //includes data from subreport Sum ({Customer.Last Year's Sales}) Place this formula in the same section or in a section further down on the report. You have now successfully shared data from a subreport with the main report. Training Learn more about subreports in the Crystal Reports - Report Design III training course. Refer to 'Courses & Schedules' at: 17 Business Objects Crystal Reports Secrets
18 #5 How to evaluate null field values in formulas or record selection criteria #5 How to evaluate null field values in formulas or record selection criteria The information in the article refers to: Crystal Reports 9 Applies to: All versions Record selection criteria Formula displays unexpected results IsNull function Synopsis A database field contains values and null values. In Crystal Reports (CR), when previewing the report, a list of values and blank values appears in the Details section. How can you evaluate this database field in formulas or record selection criteria to return the expected result set? Example Scenario 1. Add a Number field, {YourDatabaseTable.NumberField}, to the Details section of the report. NOTE: The <blank space> in CR represents the null values from the database field. Field values contained in the database 1 <Null> <Null> 2 3 Field values that appear in CR 1 <blank space> <blank space> Business Objects Crystal Reports Secrets
19 #5 How to evaluate null field values in formulas or record selection criteria 2. Add the following record selection criteria to the report: {YourDatabaseTable.NumberField} < 3 3. Upon adding the record selection criteria, the values that appear on the report are not what you expected. Expected field values based on record selection criteria 1 <blank space> <blank space> 2 Field values that appear in CR based on the record selection criteria 1 2 Why do the null values not appear in the result set based on the record selection criteria? How can you evaluate the null values in the Number field to return the expected result set? Why do blank values or incorrect values appear in the result set of a formula? Solution The expected result set does not appear because the example of record selection criteria does not evaluate the null values. Null values in the Number field are not evaluated as zero (0) values by default. In CR, to evaluate fields that contain null values to return the expected result set, use one of the following solutions: Option A) Convert the null value to the default value of their data type. EXAMPLE DEFAULT VALUES BY DATA TYPE * The null values in a Number field are converted to a zero (0) number value. * The null values in a String (Text) field are converted to an empty string ("") value. 19 Business Objects Crystal Reports Secrets
20 #5 How to evaluate null field values in formulas or record selection criteria * The null values in a Date field are converted to zero (0, 0, 0) date values. * The null values in a Date-time field are converted to zero (0, 0, 0, 0, 0, 0) date-time values. - OR - Option B) Evaluate the null value within record selection criteria or within formulas using the IsNull function. Follow the steps below for A) or B) to evaluate null values to return the expected result set. Also, with regards to the related issue, blank values or incorrect values appear because the formula includes a database field that contains null values. Follow the steps below for A) or B) to correctly evaluate the null values to return the expected result set. A) STEPS TO CONVERT NULL FIELD VALUES TO DEFAULT VALUE FOR ALL FIELDS IN CR 1. Click File > Report Options 2. Select the 'Convert NULL Field Values to Default' check box. NOTE: The IsNull function evaluates the database field(s) for null values. It is important to evaluate every database field included in the formula or record selection criteria for null values. 3. Click 'OK'. Selecting 'Convert NULL Field Values to Default' affects all database fields on the report. CR is now able to successfully evaluate any null or blank values contained in the database fields according to the default value of their data type. B) STEPS TO EVALUATE THE NULL FIELD VALUES IN CR 1. Create formula or record selection criteria. 2. Use the IsNull function at the beginning of the formula or record selection criteria. 3. If applicable, specify a value or action if the IsNull function evaluates a null record. 20 Business Objects Crystal Reports Secrets
21 #5 How to evaluate null field values in formulas or record selection criteria EXAMPLES OF THE ISNULL FUNCTION IN A FORMULA OR RECORD SELECTION CRITERIA Evaluate for null values in a Date field //Date values that are not null are returned based on this record selection criteria. //Also, date values are returned where it is less than the current date. Not IsNull({YourDatabaseTable.DateField}) And {YourDatabaseTable.Datefield} < CurrentDate; b) Evaluate for null values in a Number field to create a total //This formula evaluates if the Number field contains null records. If the record contains a //null value, the total is increased by a zero value. If the record is not null, the total is //increased by the value of the record. Whileprintingrecords; Numbervar Total; If IsNull({YourDatabaseTable.NumberField}) Then Total := Total Else Total := Total + {YourDatabaseTable.NumberField}; c) Evaluate for null values in a String or Text field //This formula evaluates if the String field contains null records. Additionally, the Trim //formula function is used to account for a blank space caused by pressing the Space Bar. WhilePrintingRecords; Stringvar Message; If IsNull({YourDatabaseTable.StringField}) or Trim({YourDatabaseTable.StringField}) = "" Then Message := "Your Message" Else Message := {YourDatabaseTable.StringField} Upon completing the above steps, CR will successfully evaluate null field values in a formula or record selection criteria to return the expected result set. Background information If the 'Convert Null Field Values to Default' check box is not selected or if the database field has not been evaluated using the IsNull function, the following behavior occurs in CR when a null value is encountered: * Formulas or record selection criteria stop evaluating the null value. For example, if the 21 Business Objects Crystal Reports Secrets
22 #5 How to evaluate null field values in formulas or record selection criteria formula is incrementing a value based on the database field, the value does not increment nor does the remainder of the formula continue to evaluate. However, the formula continues on to evaluate the next record. * Formulas or record selection criteria return a blank value. If the formula's calculations are based on the field values, it is possible to return incorrect values. Training: Learn more about additional functions in the Crystal Reports - Report Design II training course. Refer to 'Courses & Schedules' at: 22 Business Objects Crystal Reports Secrets
23 #6 How Different 'Keep Together' Options Affect the Report #6 How Different 'Keep Together' Options Affect the Report The information in the article refers to: Seagate Info, Crystal Reports 8.5 Applies to: Reported version and lower Keep Group Together Keep Columns Together Keep Object Together Synopsis In the Crystal Reports (CR) Designer, how do the different 'Keep Together' options affect the report? The 'Keep Together' options in CR are as follows: * Keep Together * Keep Group Together * Keep Object Together * Keep Columns Together Where do you find the 'Keep Together' options in CR and how do they affect your report? Solution The 'Keep Together' options are available to format objects and sections of the report. The 'Keep Together' options affect how the report displays the particular object or section. Based on the report sections and commonly used report objects, this article provides the following: * Where to find the 'Keep Together' options * Example report details * How the report is affected based on the example report details Report sections and commonly used report objects that include the 'Keep Together' 23 Business Objects Crystal Reports Secrets
24 #6 How Different 'Keep Together' Options Affect the Report options: A) Report Header/Report Footer, Group Header/Group Footer, Details B) Group Options C) Subreports, Text Objects, Ole Objects, And Other Database Fields D) Cross-tabs A) REPORT HEADER/REPORT FOOTER, GROUP HEADER/GROUP FOOTER, DETAILS To locate the 'Keep Together' option for the different sections of the report, follow these steps: 1. Click Format > Section. NOTE: 'Keep Together' is unavailable for the Page Header and Page Footer sections. This is by design. Each Page Header and Page Footer is already designed to keep together at the top and bottom of each page. NOTE: Do not use this option if your intention is to keep the entire group together. Use the 'Keep Group Together' option as described in B) 2. In the Section Expert, select the section. 3. Under the Common tab, select 'Keep Together' check box. When the 'Keep Together' option is selected, CR keeps the entire instance of the particular section on the same page. EXAMPLE REPORT DETAILS: * The Group Footer is three inches in height. * The 'Keep Together' option is selected for the Group Footer section. * There is only one inch available at the end of the page. Based on the EXAMPLE REPORT DETAILS, the entire Group Footer section will begin at the top of the next page. 24 Business Objects Crystal Reports Secrets
25 #6 How Different 'Keep Together' Options Affect the Report B) GROUP OPTIONS NOTE: If the group instance spans multiple pages, 'Keep Group Together' option starts on a new page and continues through the multiple pages until the particular group instance is completed. If more than one group instance can fit on one page, more than one group instance will display on the same page. Do not use this option if the intended purpose is to have each group start on a new page. If the intended purpose is to have each groupstarton To locate the 'Keep Group Together' option for inserting or changing a group, follow these steps: 1. Click the following options depending on whether you are inserting a new group or changing an existing group: * Insert > Group for inserting a new group * Report > Change Group Expert > Options for changing an existing group 2. Under the "Group Options" heading, select the 'Keep Group Together' check box. 3. Click 'OK'. EXAMPLE REPORT DETAILS: * The Group Header, Details and Group Footer are displayed for each group instance. * The amount of space required to display for a group instance exceeds the remaining space available on the report page. Based on the EXAMPLE REPORT DETAILS, the entire group instance will start on a new page. The entire group instance includes the Group Header, Details and Group Footer. C) SUBREPORTS, TEXT OBJECTS, OLE OBJECTS, AND OTHER DATABASE FIELDS To locate the 'Keep Object Together' option for formatting subreports, text objects, OLE objects, and other database fields, follow these steps: 1. Right-click the report object. 2. Select the one of following available options depending on the object type: * 'Format Subreport' for subreports * 'Format Text' for text objects * 'Format Graphic' for OLE objects * 'Format Field' for database fields 25 Business Objects Crystal Reports Secrets
26 #6 How Different 'Keep Together' Options Affect the Report 3. Under the Common tab, select the 'Keep Object Together' check box. When the 'Keep Object Together' option is selected, CR keeps the entire instance of the particular object on the same page. EXAMPLE REPORT DETAILS: The Group Footer contains a subreport and a text object. The Group Footer contains a subreport and a text object. The text object is placed above the subreport. The subreport in the Group Footer instance exceeds the remaining mount of space available on that page. The Group Footer section is not formatted with the 'Keep Together' option. The Group is not formatted with the 'Keep Group Together' option. The text object is not formatted with the 'Keep Object Together' option. The subreport is formatted with the 'Keep Object Together' option. Based on the EXAMPLE REPORT DETAILS, the subreport will start on a new page. However, the Group Footer instance and the text object will start on the previous page. The 'Keep Object Together' option is only applicable to the particular object. D) CROSS-TABS: To locate the 'Keep Columns Together' option for formatting a cross-tab, follow these steps: 1. Right-click the cross-tab. 2. Select 'Format Cross-tab'. 3. Under the Customize Style tab, select the 'Keep Columns Together' check box. When the 'Keep Columns Together' option is selected, CR keeps the columns together if a column width spans across to a second page. EXAMPLE REPORT DETAILS: The Report Footer contains a cross-tab. The cross-tab columns span multiple pages. Based on the EXAMPLE REPORT DETAILS, the 'Keep Columns Together' option is 26 Business Objects Crystal Reports Secrets
27 #6 How Different 'Keep Together' Options Affect the Report selected, the columns that would span across the edge of the pages start on a new page. A cross-tab column is not divided between two pages. Training Learn more about object and section formatting options in these courses: Crystal Reports - Report Design I Crystal Reports - Report Design II Refer to 'Courses & Schedules' at: 27 Business Objects Crystal Reports Secrets
28 #7 Exporting to PDF or RTF in Crystal Reports NOTE: This export DLL is designed to work with Adobe Acrobat #7 Exporting to PDF or RTF in Crystal Reports The information in the article refers to: Crystal Reports 9 Applies to: Reported version and lower Report Design Exporting to PDF and RTF Synopsis Can I export my report to Adobe Acrobat PDF (Portable Document Format) or RTF (Rich Text Format) from the Crystal Reports report designer? If so, how? Solution Crystal Reports 8.5 and later allows exporting to PDF. Exporting to PDF in Crystal Reports 8 and earlier is not supported. Crystal Reports 8 and later allows exporting to RTF. Exporting to PDF or RTF in Crystal Reports 8.5 retains the best WYSIWYG (What-yousee-is-what-you-get) format of the original report. Exporting to PDF and RTF in Crystal Reports 8.5 support many features that other exporting formats cannot. Export to PDF 1. On the 'File' menu, click 'Export'. 2. In the 'Export' dialog box, click 'Acrobat Format (PDF)' from the 'Format' drop-down box. 3. Click the destination of your choice from the 'Destination' drop-down box. (To save to a file on your computer, click 'Disk file'.) 4. Click 'OK'. 28 Business Objects Crystal Reports Secrets
29 #7 Exporting to PDF or RTF in Crystal Reports Export to RTF 1. On the 'File' menu, click 'Export'. 2. In the 'Export' dialog box, click 'Rich Text Format' from the 'Format' drop-down box. 3. Click the destination of your choice from the 'Destination' drop-down box. (To save to a file on your computer, click 'Disk file'.) 4. Click 'OK'. More Information For information on troubleshooting errors exporting to PDF and RTF refer to our knowledge base article c For information on ALL the formats that Crystal Reports has exporting functionality to, download the applicable document. For Crystal Reports version 7 - SCR7ExportLimitations.zip For Crystal Reports version 8 - SCR8_ExportLimitations.zip For Crystal Reports version cr85_exportlimitations.zip For Crystal Reports version 9 - cr9_exportlimitations.pdf These documents also list all supported and unsupported exporting features in Crystal Reports 7, 8, and 8.5. These information sources are available on our website: Training Learn more about exporting in the Crystal Reports - Report Design I training course. Refer to 'Courses & Schedules' at 29 Business Objects Crystal Reports Secrets
30 #8 Suppress a section that contains a blank subreport #8 Suppress a section that contains a blank subreport The information in the article refers to: Seagate Info, Seagate Crystal Reports 8.5 Applies to: Reported version and lower Seagate Info Blank Subreports Conditional Suppression Synopsis In Crystal Reports (CR) 8.5 and earlier, how do you suppress a section in the main report that contains a blank subreport? For example: A subreport is placed in the group header of the main report. You notice that if the subreport does not return data the group header contains a blank space the size of the subreport. You want to suppress the group header of the main report when the subreport is blank. NOTE: New to Crystal Reports 9 is the 'Suppress Blank Subreport' check box. For more information on how to suppress blank subreports in CR 9, refer to our knowledge base article c Solution The group header that contains the blank subreport does not shrink because the subreport is an object within the Crystal Reports designer. A section containing a subreport is never blank even if the subreport is because it contains a subreport object. You notice that by selecting the 'Suppress if blank' option, from the 'Section Expert' does not work. This knowledge base article provides a solution to suppress a section that contains a blank subreport for CR 6, 7, 8 and 8.5. The following procedures must be completed in order to achieve the desired results: creating a duplicate subreport placement of a duplicate subreport 30 Business Objects Crystal Reports Secrets
31 #8 Suppress a section that contains a blank subreport creating a formula to test if the subreport is blank conditionally suppressing a section that contains original subreport minimizing a duplicate subreport and resizing the section NOTE: Crystal Reports 7, 8 and 8.5 You must create another subreport based on the original subreport. To create a duplicate subreport, complete the following steps: 1. From the main report in CR, rightclick the subreport. 2. From the fly-out menu, select 'Save Subreport As'. 3. Provide a name for the duplicate subreport and click 'Save'. Placement of a Duplicate Subreport To suppress a section that contains a blank subreport in CR 7, 8 and 8.5, complete the following: Creating a Duplicate Subreport Place the duplicate subreport into the section above the original subreport. For example, if the original subreport is contained in the group header of the main report, create another group header and place the duplicate subreport into it. To insert a section into the report, complete the following steps: 1. In design mode, right-click the left gray margin where the subreport is located. For example, if the subreport is located in the group header, right-click the left gray margin at the group header level. 2. From the fly-out menu, select 'Insert Section Below'. You notice another section is inserted into the report labeled 'b'. For example, by inserting another group header you notice that there is group header A and group header B. 3. Select the original subreport, drag and drop it into the second section. 4. Insert the duplicate subreport by selecting 'Subreport', from the 'Insert' menu. 5. Select 'Choose a report', from the 'Insert Subreport' dialog box. 6. Browse to find the duplicate subreport. 7. Select the report and click 'Open'. 31 Business Objects Crystal Reports Secrets
32 #8 Suppress a section that contains a blank subreport 8. Click 'OK'. The duplicate subreport will be attached to the cursor. 9. Insert the subreport in the new section (such as group header b from step 2). 10. In the main report, on the 'Edit' menu click 'Subreport Links'. The top drop-down box will contain both the original and duplicate subreports. Compare these two subreports and enure that the fields in the 'Filed(s) to link to' box are the same. Also, check that the parameter in the bottom-left drop-down box and the field in the bottom-right dropdown box are the same. Creating A Formula To Test If The Subreport Is Blank In the duplicate subreport, you must create a formula to test whether the contents of the subreport are blank. The results of this formula are going to be stored as a shared variable and shared with the main report. To create this formula, complete the following steps: 1. Right-click on the duplicate subreport and from the fly-out menu, select 'Edit Subreport'. 2. From the 'Insert' menu, select ' select 'Field Object'. This launches the 'Field Explorer'. 3. Select 'Formula Fields' and select the 'New' icon. 4. Type a name into the 'Formula Name' box and click 'OK'. For example, CheckForNull. This launches the formula editor. 5. Create a formula similar to the following: Whileprintingrecords; Shared BooleanVar Suppress; If IsNull(Count({Table.field})) or Count(Table.field) = 0 then Suppress:= TRUE Else Suppress:= FALSE 6. in the Report Header of the duplicate subreport. 32 Business Objects Crystal Reports Secrets
33 #8 Suppress a section that contains a blank subreport Conditionally Suppressing a Section Containing Original Subreport To conditionally suppress the section that contains the original subreport, complete the following steps: 1. From the 'Format' menu, select 'Section'. This launches the 'Section Expert'. 2. From the 'Section Expert' dialog box, select the section that contains the original subreport. 3. Click the 'X+2' button beside the 'Suppress (No drill down) check box. Ensure the checkbox is clear. 4. In the 'Format Formula Editor', create a formula similar to the following: // The section will be suppressed if // variable Suppress is True Whileprintingrecords; Shared BooleanVar Suppress = True Now when you preview the report, you notice that the sections that contain a blank subreport are suppressed. However, the section that contains the duplicate subreport is visible on the main report. In order to suppress the section still visible you must minimize and resize the section. Minimizing the Duplicate Subreport & Resizing the Section To minimizing the duplicate subreport on the main report and resize the section, complete the following steps: 1. From the main report, right-click the duplicate subreport. 2. From the fly-out menu, select 'Edit subreport'. 3. Suppress all of the sections in the duplicate report. 4. Select the main report. 5. Right-click the duplicate subreport, and from the fly-out menu, select 'Format Subreport'. 6. From the 'Format Editor', select the 'Border' tab. 33 Business Objects Crystal Reports Secrets
34 #8 Suppress a section that contains a blank subreport 7. From 'Line style', select 'None' for Left, Right, Top, Bottom. 8. Select the main report. 9. Resize the section that contains the duplicate subreport to be as small as possible. Crystal Reports 6 Before you begin this process, you will need to download uflstore.zip from our website at: The reason you need to obtain this file is because shared variables were introduced in Crystal Reports 7. In order to suppress a section that contains a blank subreport in Crystal Reports 6, you will need to use the store and fetch function. To suppress a section that contains a blank subreport in Crystal Reports 6, complete the following: Creating a Duplicate Subreport You must create another subreport based on the original subreport. To create a duplicate subreport, complete the following steps: 1. From the main report in CR, right-click the subreport. 2. From the fly-out menu, select 'Save Subreport As'. 3. Provide a name for the duplicate subreport and click 'Save'. Placement of a Duplicate Subreport Place the duplicate subreport into the section above the original subreport. For example, if the original subreport is contained in the group header the main report, create another group header and place the duplicate subreport into it. To insert a section into the report, complete the following steps: 1. In design mode, right-click the left gray margin where the subreport is located. 34 Business Objects Crystal Reports Secrets
35 #8 Suppress a section that contains a blank subreport For example, f the subreport is located in the group header, right-click the left gray margin at the group header level. 2. From the fly-out menu, select 'Insert Section Below'. You notice another section is inserted into the report labeled 'b'. For example, by inserting another group header you notice that there is group header A and group header B. 3. Select the original subreport, drag and drop it into the second section. 4. Insert the duplicate subreport by selecting 'Subreport', from the 'Insert' menu. 5. Select 'Choose a report', from the 'Insert Subreport' dialog box. 6. Browse to find the duplicate subreport. 7. Select the report and click 'Open'. 8. Click 'OK'. The duplicate subreport will be attached to the cursor. 9. Insert the subreport in the new section (such as group header b from step 2). 10. In the main report, on the 'Edit' menu click 'Subreport Links'. The top drop-down box will contain both the original and duplicate subreports. Compare these two subreports and enure that the fields in the 'Filed(s) to link to' box are the same. Also, check that the parameter in the bottom-left drop-down box and the field in the bottom-right dropdown box are the same. Creating a Formula to Test if the Subreport is Blank In the duplicate subreport, you must create a formula to test whether the contents of the subreport are blank. The results of this formula are going to be stored as a shared variable and shared with the main report. To create this formula, complete the following steps: 1. Right-click on the duplicate subreport and from the fly-out menu, select 'Edit Subreport'. 2. From the 'Insert' menu, select ' select 'Field Object'. This launches the 'Field Explorer'. 35 Business Objects Crystal Reports Secrets
36 #8 Suppress a section that contains a blank subreport 3. Select 'Formula Fields' and select the 'New' icon. 4. Type a name into the 'Formula Name' box and click 'OK'. For example, CheckForNull. This launches the formula editor. 5. Create a formula similar to the following: Whileprintingrecords; If IsNull(Count(Table.field)) or Count(Table.field) = 0 then StoreBooleanVar ("Suppress", True) else StoreBooleanVar("Suppress", False) 6. in the Report Header of the duplicate subreport. Conditionally Suppressing a Section Containing Original Subreport To conditionally suppress the section that contains the original subreport, complete the following steps: 1. From the 'Format' menu, select 'Section'. This launches the 'Section Expert'. 2. From the 'Section Expert' dialog box, select the section that contains the original subreport. 3. Click the 'X+2' button beside the 'Suppress (No drill down) check box. Ensure the checkbox is clear. 4. In the 'Format Formula Editor', create a formula similar to the following: // Conditional suppression on section containing original subreport Whileprintingrecords; FetchBooleanVar("Suppress") = True Now when you preview the report, you notice that the sections that contain a blank subreport are suppressed. However, the section that contains the duplicate subreport is visible on the main report. In order to suppress the section still visible you must minimize and resize the section. 36 Business Objects Crystal Reports Secrets
37 #8 Suppress a section that contains a blank subreport Minimizing the Duplicate Subreport & Resizing the Section TIP: To minimize the duplicate subreport on the main report and resize the section, complete the following steps: 1. From the main report, right-click the duplicate subreport. 2. From the fly-out menu, select 'Edit subreport'. 3. Suppress all of the sections in the duplicate report. 4. Select the main report. 5. Right-click the duplicate subreport, and from the fly-out menu, select 'Format Subreport'. 6. From the 'Format Editor', select the 'Border' tab. 7. From 'Line style', select 'None' for Left, Right, Top, Bottom. 8. Select the main report. 9. Resize the section that contains the duplicate. To distinguish between the section containing the duplicate subreport and the section containing the original subreport, you can format one of the sections with a different background color. To format a section with a background color, follow these steps: 1. Right click the section to select it and from the fly out menu select 'Format Section'. 2. In the 'Section Expert' select the section containing the duplicate subreport from the 'Sections' dialog box. 3. Click the 'Color' tab and select the 'Background Color' check box. 4. Select the desired color from the list. 37 Business Objects Crystal Reports Secrets
38 #8 Suppress a section that contains a blank subreport Training: Learn more about subreports in the Crystal Reports - Report Design III training course. Refer to 'Courses & Schedules' at: 38 Business Objects Crystal Reports Secrets
39 #9 How to create a table of contents for a report #9 How to create a table of contents for a report The information in the article refers to: Crystal Reports 9 Applies to: Reported version only Table of Contents Subreports Add Command Synopsis In Crystal Reports (CR) 9, is it possible to create a table of contents at the beginning of a report? A table of contents would be in the Report Header, showing group names next to the page numbers the groups start on. Solution You can make a table of contents using a subreport with a command object. Using a command object it is possible to write to a database from CR. The following example will use a subreport to write group names and page numbers to a new table in your database. WARNING: Crystal Reports is not recommended as a tool to write to, update or delete from a database. Database clients or applications designed specifically to edit databases should be used instead. However, now that CR has full SQL functionality it is possible to write to, update and delete from databases. This article is provided as a tip. Before attempting to implement the steps in this article, consult your Database Administrator (DBA). Your DBA needs to grant specific rights to your database. 39 Business Objects Crystal Reports Secrets
40 #9 How to create a table of contents for a report Create a Table of Contents 1. Create a new table in your database called TableOfContents. Create three fields in this table: Grouper (String data type)(ensure this field is at least as large as your longest group field value) Page (Number data type) DateTime (DateTime data type) 2. Assign rights to write to, delete, and update this table to any users of this report. The TableOfContents table will be updated as the report changes. WARNING: Use INSERT INTO, DELETE or UPDATE statements at your own risk. Once a command object containing an INSERT INTO, DELETE or UPDATE statement has run, the database has changed and the changes may not be reversible. 3. On a grouped report (for this example the report is grouped on the ProductName field), in the 'Insert' menu, click 'Subreport'. Name this subreport 'Table Of Contents'. Connect this subreport to the new TableOfContents table and insert the TableOfContents.Grouper and TableOfContents.Page fields in the Details section. Sort this subreport by the TableOfContents.Page field. 4. Insert the 'Table of Contents' subreport in the Report Header section. 5. Right-click the gray area to the left of the Report Footer, and then click 'Insert Section Below'. There will now be 'Report Footer a' (RFa) and 'Report Footer b' (RFb). 6. In the Main report, on the 'Insert' menu, click 'Subreport'. Name this subreport 'UpdateTOC'. In the 'Database Expert' dialog box, browse to your Table of Contents data source, then double-click 'Add Command'. The 'Add Command to Report' dialog box will appear. 7. Click the 'Create' button to create a parameter. Name the parameter 'LinkReceiver' and click 'String' from the 'Value Type' drop-down box. Create another parameter named 'DateTime' with a 'DateTime' value type. 40 Business Objects Crystal Reports Secrets
41 #9 How to create a table of contents for a report NOTE: This SQL Query (and any other SQL syntax in this article) is written for a Microsoft SQL Server database. Consult the database manual or Database Administrator for the correct syntax for your data source. Business Objects Technical Support does not provide support for writing SQL queries, as they are database specific. 8. In the 'Add Command to Report' dialog box enter a SQL Query similar to the following: {?LinkReceiver} DELETE FROM "TableOfContents" WHERE "TableOfContents"."DateTime" <> {?DateTime}; SELECT * FROM "TableOfContents" This command object will add new GroupName and PageNumber data to the TableOfContents table and delete any existing data based on the?datetime parameter. 9. Insert the Grouper and the Page fields in the subreport Details section. Suppress all of the subreport sections. 10. Insert the 'UpdateTOC' subreport in the Report Footer B (RFb) section. (This is to ensure that the formula used to link the subreport is processed before the subreport is processed.) 11. Right-click the 'UpdateTOC' subreport, and then click 'Format Subreport'. Click the 'Border' tab, and then click 'None' from the 'Left', 'Right', 'Top' and 'Bottom' drop-down boxes. Click 'OK' to close the 'Format Editor' dialog box. 12. In the main report, create a formula named 'DateTime' with the following syntax: CurrentDateTime NOTE: The output of this formula will look similar to this: INSERT INTO TableOfContents VALUES ('Bikes',1,' :32:01') INSERT INTO TableOfContents VALUES ('Locks',2,' :32:01') 13. Insert this formula in the main report's Report Header section. 14. Create another formula named 'LinkMaker' with the following syntax and place it in the Group Header section of the main report: WhilePrintingRecords; StringVar link; If Not InRepeatedGroupHeader Then link := link & "INSERT INTO TableOfContents VALUES ('" & GroupName ({Product.Product Name}) & "'," & ToText(PageNumber,0) & ",'" & ToText({@DateTime}, "yyyy-mm-dd HH:mm:ss") & "')" & chr(10); link 41 Business Objects Crystal Reports Secrets
42 #9 How to create a table of contents for a report 15. Create another formula named 'LinkPasser' with the following syntax and place it in the Report Footer A (RFa) Section of the main report: WhilePrintingRecords; StringVar link; link 16. In the main report, in the 'Edit' menu, click 'Subreport Links'. In the 'Subreport Links' dialog box click the 'UpdateTOC' subreport from the 'For subreport' drop-down box. 17. Click the '@DateTime' Formula field from the 'Available Fields' box and move it to the 'Field(s) to link to' box. In the 'Subreport parameter field to use' drop-down box, click the '?DateTime' parameter. 18. Repeat step 15, connecting the '@LinkPasser' Formula field to the '?LinkReceiver' parameter. Click 'OK' to close the 'Subreport Links' dialog box. 19. In the 'Field Explorer' of the main report, click 'Special Field'. Insert the 'PageNofM' field in the Page Footer. 20. Preview the report to write the Table of Contents data to the database. NOTE: 21. Refresh the report again and the Table of Contents will display the group and page number values based on your report. If changes are made to the report that affect Training: the page numbering, refresh the report twice to update the Learn more about Crystal Reports - Report Design. TableOfContents table. Refer to 'Courses & Schedules' at: If the number of pages used by the Table of Contents changes, the report must be refreshed a third time to update the 42 Business Objects Crystal Reports Secrets
43 #10 How to add time fields #10 How to add time fields The information in the article refers to: Seagate Crystal Reports 8 Applies to: Reported version and higher summing time fields converting seconds to hours, minutes, seconds Synopsis The report contains a time field that displays in hh:mm:ss format. How do you create a formula in Crystal Reports (CR) that adds more than one time field and displays the total in the same format: hh:mm:ss? For example: 1:45:01 + 1:45:01 should display 03:30:02 and not 2:90:02 Solution In order to get the sum of more than one time field and to display the total of the time field in the same format (hh:mm:ss) you must complete the following steps: 1. Convert all the time fields to a common time unit such as seconds 2. Calculate the total time in seconds 3. Convert the seconds back to hh:mm:ss format. Convert time fields to seconds Convert the time fields to seconds so that a common time unit is used to sum up all three different time units. If your field is a datetime field, complete the following steps: 1. Create a new formula and call 43 Business Objects Crystal Reports Secrets
44 #10 How to add time fields 2. To convert the datetime field to seconds, create a formula similar to the following: local numbervar hours; local numbervar minutes; local numbervar seconds; // Convert the hours to seconds by multiplying by // 3600 hours := hour({@time}) * 3600; // Convert the minutes to seconds by multiplying by // 60 minutes := minute({@time}) * 60; seconds := second({@time}); //add up all the seconds hours + minutes + seconds; To convert the string field, with the format of hh:mm:ss to seconds create a formula similar to the following: 1. Create a new formula and call 2. Create a formula similar to the following to convert the string field to seconds: local numbervar hours; local numbervar minutes; local numbervar seconds; // Parse out the hours portion of the string and // multiply by 3600 to convert to seconds hours := tonumber({timestringfield}[1 to 2])* 3600; // Parse out the minutes portion of the string and // multiply by 60 to convert to seconds minutes := tonumber({timestringfield}[4 to 5]) * 60; // Parse out the seconds seconds := tonumber({timestringfield}[7 to 8]); // Add up all the seconds hours + minutes + seconds; Calculate the total time in seconds 44 Business Objects Crystal Reports Secrets
45 #10 How to add time fields Create a summary formula that will sum 1. Create a new formula and call 2. To sum up either formula, create a formula similar to the following: sum(@converttimetoseconds, Group) - OR - sum(@converttimestringtoseconds, Group) Convert the seconds back to hh:mm:ss format Create a formula that converts results back to hh:mm:ss format. 1. Create a new formula and call 2. To convert the results back to hh:mm:ss format, create a formula similar to the following: local numbervar RemainingSeconds; local numbervar Hours ; local numbervar Minutes; local numbervar Seconds; //divide by 3600 to calculate hours. Use truncate to remove the decimal //portion. Hours := truncate({@totalseconds} / 3600); // Subtract the hours portion to get RemainingSeconds RemainingSeconds := {@TotalSeconds} - (Hours * / 3600); // Divide RemainingSeconds by 60 to get minutes. Use truncate to remove the decimal portion. Minutes := truncate(remainingseconds/60); // Subtract the Hours and Minutes and what is left over is seconds. Seconds := {@Totalseconds} - (Hours * 3600) - (Minutes * 60); // Format the hours, minutes, and seconds to hh:mm:ss totext(hours,"00") + ":" + totext(minutes,"00") + ":" + totext(seconds,"00") 45 Business Objects Crystal Reports Secrets
46 #10 How to add time fields Training: Learn more about Crystal Reports - Report Design. Refer to 'Courses & Schedules' at: 46 Business Objects Crystal Reports Secrets
47 #11 What font types are supported in Crystal Reports #11 What font types are supported in Crystal Reports The information in the article refers to: Crystal Reports 9 Applies to: Reported version and higher Supported exporting fonts TTF Exporting to PDF Synopsis For Crystal Reports (CR), this knowledge base article answers the following questions regarding embedded fonts: a) What font types can be displayed within Crystal Reports? b) What font types are supported when exporting to PDF? c) How do you verify the embedded security level of a font? Solution a) The following font types can be displayed within Crystal Reports: True Type Fonts (TTF) True Type Collection (TTC) Printer Font Metrics (PFM) Adobe Font Metrics (AFM) Printer Font Binary (PFB) Printer Font ASCII (PFA) NOTE: Font File Names (FONT) is a font type that is not supported by Crystal Reports b) The following font types are supported when exporting to PDF: True Type Fonts (TTF) True Type Collection (TTC) When exporting a report that contains a font type other than TTF or TTC to PDF format, the font is not successfully exported or the following error message appears: 47 Business Objects Crystal Reports Secrets
48 #11 What font types are supported in Crystal Reports "<Font name> cannot be found." NOTE: For the utility to allow you to view the embedded security level of a font, download the "Font properties extension" from Microsoft's web site at: /typography c) To verify the embedded security level of a font, review the font properties. If the security level contains "No-embedding" permissions, then exporting to PDF will not be successful. True Type Fonts (TTF) has embedding permissions that determine if they can be converted into an embedded font format. The permissions associated with the embedded security level of a font are as follows: No-embedding - This does not allow fonts to be embedded. Contact the font vendor to request a possible upgrade to an embeddable font. Print and preview - This allows fonts to be embedded. However, only within pages that remains static on the client computer. If a page allows fonts to be changed, then editable or installable fonts are required. Examples of a page that allows fonts to be changed are an online Java-based word processor or an editor. Editable - This allows fonts to be embedded using a tool such as Microsoft Web Embedding Fonts Tools (WEFT) beyond the limitations of the "Print and preview" permissions. Installable - This allows fonts to be embedded similar to the "Editable" permissions. Note that installable fonts are not installed in the visitors' fonts folder. Summary Not all fonts that can be displayed in Crystal Reports are supported when exporting to PDF. Since PDF format embeds fonts, the font types that are exported must allow embedding. Embedding permissions are determined by the font vendor. 48 Business Objects Crystal Reports Secrets
49 #11 What font types are supported in Crystal Reports Background Information New to version 9, Crystal Reports supports Unicode. Therefore, double-byte characters can be displayed in Crystal Reports. Also, support for exporting embedded fonts is new to Crystal Reports 9. More Information Search for "Embedding Fonts" or "About Font Embedding" on the Microsoft support site at: Search for "Font Format Types" or "Font File Formats" on the Adobe support site at: Related Information Search for the file name, Scrprinterdependency.pdf, on our support site at: Search for the knowledge base articles, c and c , on our support site at: Training: Learn more about Crystal Reports - Report Design. Refer to 'Courses & Schedules' at: 49 Business Objects Crystal Reports Secrets
50 #12 How to format specific words or characters within a string #12 How to format specific words or characters within a string The information in the article refers to: Crystal Reports 8.5 Applies to: Reported version and higher Formatting fields Word or character formatting HTML Synopsis In Crystal Reports (CR) there is no option to format occurrences of a specific word or character, for example, bold or underline, within a string field. How can you format occurrences of a specific word or character within a string field? Solution To format occurrences of a specific word or character within a string field, use the 'Replace' function in a formula to replace the word or character. For example, to bold all occurrences of the word "City' in the Customer Name field of the Xtreme sample database, use this formula: NOTE: Word or character formatting is limited to the supported HTML tags. A list of supported HTML tags can be found in the on-line help files by pressing F1. //@boldcity //This is the formula name Replace({Customer.Customer Name}, "City", "<b>city</b>") Place this formula field on the report instead of the database field 'Customer Name' and then select HTML Text Interpretation for the paragraph format as follows: 1. Right-click the formula field and click the 'Paragraph' tab in the Format Editor. 2. In the 'Text interpretation' list, click 'HTML Text'. 3. Click 'OK' to close the Format Editor. 50 Business Objects Crystal Reports Secrets
51 #12 How to format specific words or characters within a string Training: Learn more about fonts in Crystal Reports. Refer to 'Courses & Schedules' at: 51 Business Objects Crystal Reports Secrets
52 #13 How to Display a Date Range Parameter on a Report #13 How to Display a Date Range Parameter on a Report The information in the article refers to: Seagate Info, Crystal Reports 6 Applies to: Reported version and higher Parameter fields Date range selection formulas in version 5, 6, & 7 Displaying the date range in a report Synopsis A report uses parameter fields to prompt you for a start and end date. These dates are then used in the report's record selection formula. To display the date range for this report, a formula similar to the example below is placed in the Report Header: //{@DateRange} WhilePrintingRecords; DateVar date1; DateVar date2; date1:=minimum ({Datefield}); date2:=maximum ({Datefield}); "my selection is: " + totext(date1) + " " + totext(date2) However, when entering a date that is not in the database, this formula returns confusing results. For example: The database contains date values from November 3rd (11/3/97) to November 30 (11/30/97). If you enter '11/1/97' as the start date, and '11/30/97' as the end date, formula in the Report Header displays "11/3/97-11/30/97". This happens because there are no records for November 1st and 2nd. How can you resolve this issue? 52 Business Objects Crystal Reports Secrets
53 #13 How to Display a Date Range Parameter on a Report Solution NOTE: In Crystal Reports version 7 or higher, you can create ranged parameters. This means that instead of creating both a start and end parameter, you only need one date parameter, which prompts for the start AND end dates. To learn how to use ranged parameters, please consult chapter on parameters in the Crystal Reports User Guide: To display a parameter-based date range for a report, regardless of whether thos dates are in the database, use text objects. Using Text Objects to Display Date Range: 1. On the 'Insert' menu, click 'Text Object'. Place the text object in the Report Header. 2. On the 'Insert' menu, click 'Parameter fields'. This opens the 'Parameter fields' tab of the 'Insert fields' dialog box. 3. Click the Start Date parameter and insert it into the text object. 4. Press the spacebar to insert a space in the text object, then type the string "to" (without the quotes). 5. Go back to the 'Insert fields' dialog box to insert the End Date parameter into the text object, after the string 'to'. The text object now appears similar to this: [{?pm-startdate} to {?pm-enddate}] This displays the date range that was entered for this report. Chapter 16 of the CR version 7 User Guide Training: Chapter 22 of the CR version 8 User Guide. Learn more about Crystal Reports - Report Design. To display the date range using Range Parameters, please see Knowledge Base article C Refer to 'Courses & Schedules' at: 53 Business Objects Crystal Reports Secrets
54 #14 How to suppress a blank subreport #14 How to suppress a blank subreport The information in the article refers to: Crystal Reports 9 Applies to: Reported version and higher 'Suppress Blank Subpreport' option Displaying subreports Suppress blank section Synopsis In Crystal Reports (CR) 9, how is a subreport suppressed if it contains no data? Also, how is a section suppressed if it contains a blank subreport? Solution To suppress a blank subreport, select the 'Suppress Blank Subreport' check box. This feature is new to version 9 of Crystal Reports. To suppress a section that contains a blank subreport, select the 'Suppress Blank Section' check box. How to Suppress a Blank Subreport and then Suppress the Section 1. Right-click the subreport object and select 'Format Subreport'. 2. In the Format Editor dialog box, click the Subreport tab. 3. Select the 'Suppress Blank Subreport' check box. 4. Click 'OK' to exit the Format Editor dialog box. 5. Right-click the section containing the subreport and select 'Section Expert'. 6. In the Section Expert dialog box, select the 'Suppress Blank Section' check box. 7. Click 'OK' to exit the Section Expert dialog box. 54 Business Objects Crystal Reports Secrets
55 #14 How to suppress a blank subreport Upon selecting the 'Suppress Blank Subreport' and 'Suppress Blank Section' check boxes, the subreport and section will not display on the main report when no data is contained in the subreport. Background In Crystal Reports 8.5 and earlier, a blank subreport cannot be suppressed. The blank subreport is recognized as an object in the section. Therefore, a section containing a blank subreport cannot be suppressed. For more information on how to workaround this issue in CR 8.5 and earlier, refer to our knowledge base article c Training: Learn more about subreports in Crystal Reports. Refer to 'Courses & Schedules' at: 55 Business Objects Crystal Reports Secrets
56 #15 How to deploy an application that uses Crystal Reports and VS.NET #15 How to deploy an application that uses Crystal Reports and VS.NET? The information in the article refers to: Crystal Reports for Visual Studio 9 Applies to: Reported version only Application Deployment Runtime Files Synopsis How do you deploy an application that uses Crystal Reports and Visual Studio.NET? Solution Before you deploy an application that uses Crystal Reports and Visual Studio.NET you must confirm the version of Crystal Reports being used with Visual Studio.NET. The possible versions are: - Crystal Reports for Visual Studio.NET Crystal Reports for Visual Studio.NET Crystal Reports 9 - Crystal Reports 10 To do this, check the assembly version of the Crystal Reports managed components. The Crystal Reports managed components include: - CrystalDecisions.CrystalReports.Engine - CrystalDecisions.Shared - CrystalDecisions.Reportsource - CrystalDecisions.Web - CrystalDecisions.Windows.Forms. In your Visual Studio.NET 'Solution Explorer', expand 'References', right-click on a Crystal Reports managed component, select 'Properties' and check the version property. The assembly version must be the same for all the Crystal Reports managed components referenced in the solution. If your Crystal Reports managed assemblies are version , your application uses Crystal Reports for Visual Studio.NET Business Objects Crystal Reports Secrets
57 #15 How to deploy an application that uses Crystal Reports and VS.NET If your Crystal Reports managed assemblies are version , your application uses Crystal Reports for Visual Studio.NET If your Crystal Reports managed assemblies are version , your application uses Crystal Reports 9. If your Crystal Reports managed assemblies are version , your application uses Crystal Reports 10. To deploy an application that uses Crystal Reports for Visual Studio.NET Ensure that the assembly version of the Crystal Reports managed components is Go to and download "crnet_deployment.pdf". 3. Open Crnet_deployment.pdf and refer to the 'Crystal Reports Bundled Version with VS 2002' section. To deploy an application that uses Crystal Reports for Visual Studio.NET Ensure that the assembly version of the Crystal Reports managed components is Go to and download "crnet_deployment.pdf". 3. Open Crnet_deployment.pdf and refer to the 'Crystal Reports Bundled Version with VS 2003' section. To deploy an application that uses Crystal Reports 9 1. Ensure that the assembly version of the Crystal Reports managed components is Go to and download "crnet_deployment.pdf". 3. Open Crnet_deployment.pdf and refer to the 57 Business Objects Crystal Reports Secrets
58 #15 How to deploy an application that uses Crystal Reports and VS.NET 'Crystal Reports 9 Full Version with VS2002 or VS2003' section. To deploy an application that uses Crystal Reports Ensure that the assembly version of the Crystal Reports managed components is Go to and download "deploying_cr10_net.pdf". Training: Learn more about Crystal Reports. Refer to 'Courses & Schedules' at: 58 Business Objects Crystal Reports Secrets
59 #16 What is Unicows.dll and where can you find it? #16 What is Unicows.dll and where can you find it? The information in the article refers to: Crystal Reports 9 Applies to: Reported version only Unicode runtime Windows 9x/ME Synopsis The Crystal Reports (CR) 9 Developer Runtime Help (Runtime.chm) lists Unicows.dll as a dependency file for the Report Designer Component (RDC) and Crystal Print Engine API. What is Unicows.dll and where can you find it? Solution NOTE: Windows 9.x and ME are not supported platforms for Crystal Reports (CR) 10 and later. Therefore, Unicows.dll is not supported for the Windows 9.x and ME operating Unicows.dll is a wrapper to provide Unicode support for Windows 9x and ME (Windows NT, 2000, and XP already provide Unicode support). The Unicows.dll is contained in the RDC 9 merge modules. To download the RDC 9 merge modules, go to and download Cr9rdcmergemodules.zip. For information on deploying an RDC 9 application, go to and download rdc9_deployment.pdf. Search for this file at: Training: Refer to 'Courses & Schedules' at: 59 Business Objects Crystal Reports Secrets
60 #17 How to change the data source using CR for VS.NET application #17 How to change the data source using CR for VS.NET application The information in the article refers to: Crystal Reports for Visual Studio.NET Applies to: Reported version only Database connectivity Change Database and Server Synopsis An application uses Crystal Reports for Visual Studio.NET as the reporting development tool. How do you change the database and server in a report at runtime? For example, if a report is designed against the 'pubs1' database and the 'server1' server, how can you change the database to 'pubs2' and the server to 'server2'? Solution To change the database and server at runtime, copy one of the following code samples into your class (use the logon method defined in the code to change the database and server): C#.NET // Helper method that iterates through all tables // in a report document bool ApplyLogon(ReportDocument cr, ConnectionInfo ci) { TableLogOnInfo li; 60 Business Objects Crystal Reports Secrets
61 #17 How to change the data source using CR for VS.NET application CAUTION: When using ODBC, the DSN name is the server name. The DSN should be under the System DSN, and not under the User DSN. The Logon method cannot change database file name when using DAO (Microsoft Access File/.mdb). If you have a subreport that connects to a different database or server than your main report, use the ApplyLogon method instead of the Logon method. When using the ApplyLogon method, ensure you iterate through each subreports. It is not possible to use the CR for VS.NET SDK to change a report from using SQL Authentication to Windows Authentication, or vice versa. This functionality is available through the Report Application Server (RAS).NET SDK or Report Designer Component (RDC). // for each table apply connection info foreach (Table tbl in cr.database.tables) { li = tbl.logoninfo; li.connectioninfo = ci; tbl.applylogoninfo(li); // check if logon was successful // if TestConnectivity returns false, check // logon credentials if (tbl.testconnectivity()) { // drop fully qualified table location if (tbl.location.indexof(".") > 0) { tbl.location = tbl.location.substring(tbl.location.lastindexof(".") + 1); } else tbl.location = tbl.location; } else return(false) } return(true); } // The Logon method iterates through all tables 61 Business Objects Crystal Reports Secrets
62 #17 How to change the data source using CR for VS.NET application bool Logon(ReportDocument cr, string server, string db, string id, string pass) { ConnectionInfo ci = new ConnectionInfo(); SubreportObject subobj; ci.servername = server; ci.databasename = db; ci.userid = id; ci.password = pass; if (!ApplyLogon(cr, ci)) return (false); foreach (ReportObject obj in cr.reportdefinition.reportobjects) { if (obj.kind == ReportObjectKind.SubreportObject) { subobj = (SubreportObject)obj; if (!ApplyLogon(cr.OpenSubreport(subObj.SubreportName), ci)) return(false); } } return (true); } VB.NET Function ApplyLogon(ByVal cr As ReportDocument, ByVal ci As ConnectionInfo) As Boolean Dim li As TableLogOnInfo Dim tbl As Table ' for each table apply connection info For Each tbl In cr.database.tables li = tbl.logoninfo li.connectioninfo = ci tbl.applylogoninfo(li) ' check if logon was successful ' if TestConnectivity returns false, ' check logon credentials If (tbl.testconnectivity()) Then 'drop fully qualified table location If (tbl.location.indexof(".") > 0) Then tbl.location = tbl.location.substring(tbl.location.lastindexof(".") + 1) 62 Business Objects Crystal Reports Secrets
63 #17 How to change the data source using CR for VS.NET application Else tbl.location = tbl.location End If Else Return False End If Return True Next End Function 'The Logon method iterates through all tables Function Logon(ByVal cr As ReportDocument, ByVal server As String, ByVal db As String, ByVal id As String, ByVal pass As String) As Boolean Dim ci As New ConnectionInfo() Dim subobj As SubreportObject ci.servername = server ci.databasename = db ci.userid = id ci.password = pass If Not (ApplyLogon(cr, ci)) Then Return False End If Dim obj As ReportObject For Each obj In cr.reportdefinition.reportobjects If (obj.kind = ReportObjectKind.SubreportObject) Then subobj = CType(obj, SubreportObject) If Not (ApplyLogon(cr.OpenSubreport(subObj.SubreportName), ci)) Then Return False End If End If Next Return True End Function 63 Business Objects Crystal Reports Secrets
64 #17 How to change the data source using CR for VS.NET application Training: Refer to 'Courses & Schedules' at: 64 Business Objects Crystal Reports Secrets
65 #18 How to pass Database logon info to a Crystal Report at runtime in VB.NET #18 How to pass Database logon info to a Crystal Report at runtime in VB.NET The information in the article refers to: Crystal Reports for Visual Studio.NET Applies to: Reported version only Logon Information TableLogonInfo Synopsis: A VB.NET application uses Crystal Reports for Visual Studio.NET as the reporting development tool. How do you pass database logon information to a Crystal Report at runtime in this VB.NET application? Solution: To pass logon information to a Crystal Report at runtime, use the following code sample: <VB.NET> Imports CrystalDecisions.CrystalReports.Engine Imports CrystalDecisions.Shared Dim crtablelogoninfos As New TableLogOnInfos() Dim crtablelogoninfo As New TableLogOnInfo() Dim crconnectioninfo As New ConnectionInfo() Dim CrTables As Tables Dim CrTable As Table Dim TableCounter 'If you are using a Strongly Typed report (Imported in 'your project) named CrystalReport1.rpt use the 'following: Dim crreportdocument As New CrystalReport1() 65 Business Objects Crystal Reports Secrets
66 #18 How to pass Database logon info to a Crystal Report at runtime in VB.NET 'If you are using a Non-Typed report, and loading a report outside of the project, use the 'following: Dim crreportdocument As New ReportDocument() crreportdocument.load("c:\myreports\myreport.rpt") 'Set the ConnectionInfo properties for logging on to the Database 'If you are using ODBC, this should be the DSN name NOT the physical server name. If 'you are NOT using ODBC, this should be the physical server name With crconnectioninfo.servername = "DSN or Server Name" 'If you are connecting to Oracle there is no DatabaseName. Use an empty string. 'For example,.databasename = "".DatabaseName = "DatabaseName".UserID = "Your User ID".Password = "Your Password" End With 'This code works for both user tables and stored procedures. Set the CrTables to the Tables 'collection of the report CrTables = crreportdocument.database.tables 'Loop through each table in the report and apply the LogonInfo information For Each CrTable in CrTables CrTableLogonInfo = CrTable.LogonInfo CrTableLogonInfo.ConnectionInfo = crconnectioninfo CrTable.ApplyLogOnInfo(crtableLogoninfo) 'If your DatabaseName is changing at runtime, specify the table location. 'For example, when you are reporting off of a Northwind database on SQL server you 'should have the following line of code: crtable.location = "Northwind.dbo." & crtable.location.substring(crtable.location.lastindexof(".") + 1) Next 'Set the viewer to the report object to be previewed. CrystalReportViewer1.ReportSource = crreportdocument 66 Business Objects Crystal Reports Secrets
67 #18 How to pass Database logon info to a Crystal Report at runtime in VB.NET <C#.NET> using CrystalDecisions.CrystalReports.Engine; using CrystalDecisions.Shared; private CrystalReport1 crreportdocument = new CrystalReport1 (); private Database crdatabase; private Tables crtables; private Table crtable; private TableLogOnInfo crtablelogoninfo; private ConnectionInfo crconnectioninfo = new ConnectionInfo (); //Setup the connection information structure to log on to the data source for the report. // If using ODBC, this should be the DSN. If using OLEDB, etc, this should be the physical //server name crconnectioninfo.servername = "DSN or Server Name"; // If you are connecting to Oracle there is no // DatabaseName. Use an empty // string i.e. crconnectioninfo.databasename = ""; crconnectioninfo.databasename = "DatabaseName"; crconnectioninfo.userid = "Your UserID"; crconnectioninfo.password = "Your Password"; // This code works for both user tables and stored procedures //Get the table information from the report crdatabase = crreportdocument.database; crtables = crdatabase.tables; //Loop through all tables in the report and apply the connection information for each table. for (int i = 0; i < crtables.count; i++) { crtable = crtables [i]; crtablelogoninfo = crtable.logoninfo; crtablelogoninfo.connectioninfo = crconnectioninfo; crtable.applylogoninfo(crtablelogoninfo); 67 Business Objects Crystal Reports Secrets
68 #18 How to pass Database logon info to a Crystal Report at runtime in VB.NET //If your DatabaseName is changing at runtime, specify the table location. For example, when //you are reporting off of a Northwind database on SQL server you should have the following //line of code: crtable.location = "Northwind.dbo." + crtable.location.substring(crtable.location.lastindexof (".") + 1) } //Set the viewer to the report object to be previewed. crystalreportviewer1.reportsource = crreportdocument; CAUTION: If you're using a web application make sure that, you do not specify or call the DataBind in your code as this will nullify the code above. If the above code still results in a LogOn Failure in a Web application (ASP.NET), please refer to the Knowledge base article c (For Windows 2000) or c (Windows 2003 server (IIS6)), and make sure ASPNET account has enough access to the database, reports, and the application directories. If you are changing database at runtime, it is important that you specify the table location after you apply logon information (this is a case sensitive property). You can either specify the tablename only or the fully qualified tablename such as: crtable.location = "databasename.dbo.tablename" If you are reporting off of an Access Database, then you only need to specify either the ServerName or DatabaseName to the ConnectionInfo Object depending on how you are connecting to Access. For example, if you are connecting to Access through ODBC, then you just need to set the DatabaseName for the ConnectionInfo object as the following: With crconnectioninfo.databasename = "C:\mydatabase\mydata.mdb" End With If you are connecting to Access via OLEDB, then you just need to set the ServerName: With crconnectioninfo.servername = "C:\mydatabase\mydata.mdb" End With 68 Business Objects Crystal Reports Secrets
69 #18 How to pass Database logon info to a Crystal Report at runtime in VB.NET Training: Refer to 'Courses & Schedules' at: 69 Business Objects Crystal Reports Secrets
70 #19 How to create a report and add a parameter field using Report Creation API #19 How to create a report and add a parameter field using Report Creation API NOTE: For more articles on using the Report Designer Component's Report Creation API search on the keyword 'RCAPI' at taldecisions.com/k base All Runtime Report Creation functionality requires licensing. For more information, please visit decisions.com/pro ducts/crystalreport The information in the article refers to: Crystal Reports, Report Designer Component 8 Applies to: Reported version and higher Report Creations API Creating a Parameter field at runtime Including the Parameter field in a record selection formual Synopsis This article is part of a series of Knowledge Base articles that demonstrate the Report Creation API (RCAPI) available in the Report Designer Component for Crystal Reports Version 8 Developer Edition. This article demonstrates how to: - Create a report at runtime (RCAPI Method: 'NewReport') - Add a table from a Native connection to Microsoft Access. (RCAPI Method: 'Add') - Add a parameter field to the ParameterFieldDefinitions collection. (RCAPI Method: 'Add') - Create a record selection formula that includes the parameter field. - Add database fields to the report. (RCAPI Method: 'AddFieldObject') - Display the report. Solution This tutorial assumes that the developer has prior knowledge of Microsoft Visual Basic, Crystal Reports, and the Report Designer Component. The following procedure and sample code creates an application that demonstrates the RCAPI methods outlined in the Synopsis. 1. On the 'Project' menu in Microsoft Visual Basic click 'References'. The 'References' dialog box appears. 70 Business Objects Crystal Reports Secrets
71 #19 How to create a report and add a parameter field using Report Creation API NOTE: For more information on the RCAPI refer to the 'Seagate Crystal Reports 8 Technical Reference Guide'. The guide can be found in the Docs folder of the Crystal Report 8 installation CD. 2. In the dialog box select the 'Crystal Report 8 ActiveX Designer Run Time Library' check box. Click 'OK' to save the changes. 3. On the 'Project' menu, click 'Components'. The 'Components' dialog box appears. 4. In the dialog box click 'Controls', select the 'Crystal Report Viewer' check box and then click 'Apply'. This adds the CRViewer icon to the Microsoft Visual Basic toolbar. Click 'OK' to save the changes. 5. On the Microsoft Visual Basic toolbar double-click 'CRViewer'. The Crystal Report Viewer is added to the form. 6. Double-click 'Form1' to open the 'Code' module. Insert the 'Sample RDCAPI code' in the code module. 7. Once you have inserted the code, on the 'Run' menu, click 'Start' to run the application. Option Explicit 'RDC Runtime Objects used in this sample. Dim crapplication As CRAXDRT.Application Dim crreport As CRAXDRT.Report '*********************************************** 'The Form_Load event creates an instance of the RDC engine, then makes calls to routines 'that will setup the report and finally display the report in the Crystal Report Viewer control. '*********************************************** Private Sub Form_Load() 'Create an instance of the RDC engine Set crapplication = New CRAXDRT.Application 'Create a new report Set crreport = crapplication.newreport 'Calling a routine that will add a database connection for the report Call AddDatabase 'Calling a routine that will add objects to the Detail section. Call AddToDetails 'Calling a routine that will add a parameter field to the ParameterFieldDefinitions collection, 'and include the parameter in a record selection formula. Call AddParameterField 71 Business Objects Crystal Reports Secrets
72 #19 How to create a report and add a parameter field using Report Creation API 'Set the Report Viewer control to a report to view CRViewer1.ReportSource = crreport 'Display the report in the Crystal Report Viewer CRViewer1.ViewReport End Sub '*********************************************** 'The AddDatabase() routine is used to add a native database connection to the sample 'database, Xtreme.MDB. In this sample the 'Customer' table is being added. '*********************************************** Public Sub AddDatabase() 'Variables used to setup the Database connection Dim crdbtables As CRAXDRT.DatabaseTables Dim sdatabasepath As String Dim stablename As String 'Get the Tables collection because it has the Add() method needed 'to add a connection to the report Set crdbtables = crreport.database.tables 'Set the values for the connection variables The full path and name of the Access database. 'The database resides in the same directory as the application ' sdatabasepath = App.Path & "\xtreme.mdb" 'The name of the Access table stablename = "Customer" 'Use the.add() method to add the database table to the report. There are several optional 'arguments for the Add method. Which arguments are passed will depend on the type of 'database, the type of table and the type of connection. 'Add the 'Customer' table crdbtables.add sdatabasepath, stablename End Sub '*********************************************** 'The AddToDetails () routine is used to add objects to the Detail section. In this case, two 'fields from the 'Customer' table are added. '*********************************************** Public Sub AddToDetails() Dim crsection As CRAXDRT.Section Dim crfieldobject As CRAXDRT.FieldObject 72 Business Objects Crystal Reports Secrets
73 #19 How to create a report and add a parameter field using Report Creation API '****Add database fields and the formula field to the Details section***** 'Since we are working with the Details section of the report, we need to get the 'D' section of 'the report. Set crsection = crreport.sections.item("d") '**Add the 'Customer Name and 'Last Year's Sales' fields to the details section** 'Set a Field object to the AddFieldObject method of the Detail Section 'The Field parameter is set to the table.fieldname 'The Left and Top parameters are passed as integers to position the field Set crfieldobject = crsection.addfieldobject("{customer.customer Name}", 600, 0) Set crfieldobject = crsection.addfieldobject("{customer.last Year's Sales}", 3720, 0) End Sub '*********************************************** 'The AddParameterField () routine is used to add a parameter field to the 'ParameterFieldDefinitions collection. The default values for the parameter field will be set and 'the parameter will be included in a record selection formula '*********************************************** Public Sub AddParameterField() Dim crparameterfields As CRAXDRT.ParameterFieldDefinitions 'Since we are adding a formula field to the ParameterFieldDefinitions collection we need to get 'the ParameterFields from the report object Set crparameterfields = crreport.parameterfields 'Add a parameter field to the ParameterFieldDefinitions Collection The ParameterName 'parameter is set to the name of the new parameter The ValueType parameter specifies the 'value type to be passed to the parameter crparameterfields.add "Sales Maximum Value", 'crcurrencyfield 73 Business Objects Crystal Reports Secrets
74 #19 How to create a report and add a parameter field using Report Creation API 'With the new parameter field set the default values Set the Value to be a single discrete 'value and do not allow multiple values This is the first parameter field created in the report so 'we access the first item in the ParameterFieldDefinitions collection With crreport.parameterfields(1).adddefaultvalue 50.AddDefaultValue 500.AddDefaultValue AddDefaultValue AddDefaultValue AddDefaultValue AddDefaultValue AddDefaultValue AddDefaultValue AddDefaultValue AddDefaultValue DiscreteOrRangeKind = crdiscretevalue.enablemultiplevalues = False End With 'Pass a record selection formula to the report The record selection formula contains the newly 'created parameter When the report is run the parameter will prompt the user. The default 'values set previously will be available to the user to select the name of the parameter field in 'the recordslection formula will follow this format: '{? + The name of the new parameterfield + } 'crreport.recordselectionformula = "{Customer.Last Year's Sales} < {?Sales Maximum 'Value}" End Sub '*********************************************** 'The Form_Resize event is used to size the Crystal Report 'Viewer control to the size of the Parent form (Form1). '*********************************************** Private Sub Form_Resize() With CRViewer1.Top = 0.Left = 0.Width = Me.ScaleWidth.Height = Me.ScaleHeight End With End Sub '*********************************************** 'The Form_Unload event is used to clean up the objects 74 Business Objects Crystal Reports Secrets
75 #19 How to create a report and add a parameter field using Report Creation API 'used by the sample application. '*********************************************** Private Sub Form_Unload(Cancel As Integer) 'Destroy the Report object Set crreport = Nothing 'Destroy the Application object Set crapplication = Nothing End Sub Training: Refer to 'Courses & Schedules' at: 75 Business Objects Crystal Reports Secrets
76 #20 Crystal Reports for Visual Studio.NET documentation #20 Crystal Reports for Visual Studio.NET documentation The information in the article refers to: Crystal Reports for Visual Studio.NET Applies to: Reported version only Documentation Synopsis Where can you find documentation or help files for Crystal Reports for Visual Studio.NET (VS.NET)? Solution Crystal Reports documentation is included as part of the VS.NET documentation. Documentation is available online at the Microsoft Developer Network (MSDN) web site and is also bundled with VS.NET as part of MSDN. The following link leads directly to the Crystal Reports for VS.NET documentation in the MSDN Library: MSDN Website: Microsoft Visual Studio.NET You can also find CR for VS.NET resources on the Business Objects support site. Documentation is accessible through a variety of methods in VS.NET. The common ones are: Searching for "Crystal Reports" in the VS.NET documentation index. ontext sensitive help: Click the insertion point on a Crystal property method or object in the VS.NET code editor, and press the F1 key. A tab appears in the VS.NET IDE with documentation on what code is covered by the insertion point 76 Business Objects Crystal Reports Secrets
77 #20 Crystal Reports for Visual Studio.NET documentation Business Objects Support Site Download.NET documentation at Download VS.NET sample applications at Download VS.NET white papers by searching for "crnet*" at Training: Refer to 'Courses & Schedules' at: 77 Business Objects Crystal Reports Secrets
78 Summary Summary: Whether you are a novice or an expert, there are additional resources available to help you get more from your investment. To investigate all of the options, please visit You might also want to consider certification. 73% of employees surveyed said certification played a significant role in career advancement. (Certification Magazine s 2003 Salary Survey, December 2003.) A final tip: If you are responsible for team or organization training or if user adoption is important to you, we have a white paper just for you. The comprehensive report is free of charge download your copy by visiting Thank you for investing the time to learn our Crystal Reports secrets. We hope that you already feel more confident in your ability to design better reports, faster. If you have any questions, please contact us. Our customer service representatives are ready to help you. In North America call or contact a worldwide office. 78 Business Objects Crystal Reports Secrets
79 Worldwide contact information Americas Business Objects Americas 3030 Orchard Parkway San Jose, California USA Tel: Asia-Pacific Business Objects Asia Pacific Pte Ltd 350 Orchard Road #20-04/06 Shaw House Singapore Tel: Europe, Middle East, Africa Business Objects, SA rue Anatole France Levallois-Perret Cedex France Tel: Japan Business Objects Japan K.K. Head Office Yebisu Garden Place Tower 28th Floor Ebisu, Shibuya-ku Tokyo Tel: For a complete listing of our sales offices, please visit our website Business Objects Crystal Reports Secrets
Crystal Reports Designer Version 10
Crystal Reports Designer Version 10 Exporting to Microsoft Excel Overview Contents This document is intended to assist you in creating or modifying a report in Crystal Reports Designer, version 10, that
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
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
Crystal Reports Designer
Overview This document is intended to assist you in creating or modifying a report in the Crystal Reports Designer, Seagate Info Report Designer, or the Design tab of Seagate Analysis that exports successfully
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
Seagate Crystal Reports Designer
Objectives Contents This document is intended to assist you in creating or modifying a report in the Crystal Reports Designer, Seagate Info Report Designer, or the Design tab of Seagate Analysis that exports
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,
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
Crystal Reports. Overview. Contents. Columnar Drill-Down Report
Crystal Reports Overview This document explains how to create a columnar report in Crystal Reports (CR). It will also explain how to create drill-down levels in a columnar report. Although this document
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
Crystal Reports Payroll Exercise
Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will
Sophos Reporting Interface Creating Reports using Crystal Reports 2008
Sophos Reporting Interface Creating Reports using Crystal Reports 2008 Creating Reports using Crystal Reports 2008 This document describes how to use Crystal Reports to create reports from data provided
How To Understand The Error Codes On A Crystal Reports Print Engine
Overview Error Codes This document lists all the error codes and the descriptions that the Crystal Reports Print Engine generates. PE_ERR_NOTENOUGHMEMORY (500) There is not enough memory available to complete
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
6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field.
Adobe Acrobat Professional X Part 3 - Creating Fillable Forms Preparing the Form Create the form in Word, including underlines, images and any other text you would like showing on the form. Convert the
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 [email protected] TABLE OF CONTENTS Introduction... 1 Import Excel
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
Creating and Using Databases with Microsoft Access
CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries
Decision Support AITS University Administration. Web Intelligence 4.1 Reporting Basics
Decision Support AITS University Administration Web Intelligence 4.1 Reporting Basics 2 Web Intelligence 4.1: Reporting Basics Appropriate Use and Security of Confidential and Sensitive Information Due
Errors That Can Occur When You re Running a Report From Tigerpaw s SQL-based System (Version 9 and Above) Modified 10/2/2008
Errors That Can Occur When You re Running a Report From Tigerpaw s SQL-based System (Version 9 and Above) Modified 10/2/2008 1 Introduction The following is an explanation of some errors you might encounter
Using Crystal Reports with VFP
Using Crystal Reports with VFP Introduction to Crystal Reports One of the most important aspects of Visual FoxPro applications is reporting. Whether we provide canned reports or allow the user to design
Catalog Creator by On-site Custom Software
Catalog Creator by On-site Custom Software Thank you for purchasing or evaluating this software. If you are only evaluating Catalog Creator, the Free Trial you downloaded is fully-functional and all the
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
Chapter 14: Links. Types of Links. 1 Chapter 14: Links
1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and
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
Working with SQL Server Integration Services
SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to
Using an Access Database
A Few Terms Using an Access Database These words are used often in Access so you will want to become familiar with them before using the program and this tutorial. A database is a collection of related
Creating Interactive PDF Forms
Creating Interactive PDF Forms Using Adobe Acrobat X Pro Information Technology Services Outreach and Distance Learning Technologies Copyright 2012 KSU Department of Information Technology Services This
Taking Advantage of Crystal Reports
What You Will Need ArcGIS 8.3 (ArcInfo, ArcEditor, or ArcView license) with Crystal Reports installed Sample data downloaded from ArcUser Online Taking Advantage of Crystal Reports In addition to maps,
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
Password Memory 6 User s Guide
C O D E : A E R O T E C H N O L O G I E S Password Memory 6 User s Guide 2007-2015 by code:aero technologies Phone: +1 (321) 285.7447 E-mail: [email protected] Table of Contents Password Memory 6... 1
Ansur Test Executive. Users Manual
Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About
Visual Studio.NET Database Projects
Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project
Umbraco Content Management System (CMS) User Guide
Umbraco Content Management System (CMS) User Guide Content & media At the bottom-left of the screen you ll see 2 main sections of the CMS Content and Media. Content is the section that displays by default
ithenticate User Manual
ithenticate User Manual Version: 2.0.2 Updated March 16, 2012 Contents Introduction 4 New Users 4 Logging In 4 Resetting Your Password 5 Changing Your Password or Username 6 The ithenticate Account Homepage
History Explorer. View and Export Logged Print Job Information WHITE PAPER
History Explorer View and Export Logged Print Job Information WHITE PAPER Contents Overview 3 Logging Information to the System Database 4 Logging Print Job Information from BarTender Designer 4 Logging
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
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,
ithenticate User Manual
ithenticate User Manual Updated November 20, 2009 Contents Introduction 4 New Users 4 Logging In 4 Resetting Your Password 5 Changing Your Password or Username 6 The ithenticate Account Homepage 7 Main
ICP Data Validation and Aggregation Module Training document. HHC Data Validation and Aggregation Module Training Document
HHC Data Validation and Aggregation Module Training Document Contents 1. Introduction... 4 1.1 About this Guide... 4 1.2 Scope... 4 2. Steps for Testing HHC Data Validation and Aggregation Module.. Error!
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
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
Creating Database Tables in Microsoft SQL Server
Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are
Website Creator Pro Quick Reference Guide. Version: 0.5
Website Creator Pro Quick Reference Guide Version: 0.5 Contents 1. Introduction 3 2. Navigation 4 2.1. Top Bar 4 2.1.1. Tabs 4 2.1.2. Buttons 4 2.2. Website Structure Fly-Out 4 3. Usage 5 3.1. Editor 5
Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.
Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format
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
Creating Fill-able Forms using Acrobat 8.0: Part 1
Creating Fill-able Forms using Acrobat 8.0: Part 1 The first step in creating a fill-able form in Adobe Acrobat is to generate the form with all its formatting in a program such as Microsoft Word. Then
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
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
ZIMBRA LAYOUT. Keyboard Shortcuts Hitting G and the beginning letter of any of the tabs will instantly take you to that tab
TABS ZIMBRA LAYOUT Overview Pane TABS Mail Inbox, compose new Address Book contacts (university contacts do not show up in book; however, they will show up in search) Calendar appointments (can be shared)
Adobe Dreamweaver CC 14 Tutorial
Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site
Creating and Using Forms in SharePoint
Creating and Using Forms in SharePoint Getting started with custom lists... 1 Creating a custom list... 1 Creating a user-friendly list name... 1 Other options for creating custom lists... 2 Building a
Word 2007: Basics Learning Guide
Word 2007: Basics Learning Guide Exploring Word At first glance, the new Word 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This
TheFinancialEdge. Crystal Reports Tutorial
TheFinancialEdge Crystal Reports Tutorial 101911 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,
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
Using FileMaker Pro with Microsoft Office
Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker
Instructions for Creating an Outlook E-mail Distribution List from an Excel File
Instructions for Creating an Outlook E-mail Distribution List from an Excel File 1.0 Importing Excel Data to an Outlook Distribution List 1.1 Create an Outlook Personal Folders File (.pst) Notes: 1) If
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.)...
Blackbaud StudentInformationSystem. Reports Guide for Admissions Office
Blackbaud StudentInformationSystem Reports Guide for Admissions Office 102811 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means,
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
HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1
HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 Program Services Office & Decision Support Group Table of Contents Create New Analysis... 4 Criteria Tab... 5 Key Fact (Measurement) and Dimension
Generating a Custom Bill of Materials
Summary Tutorial TU0104 (v2.3) May 16, 2008 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report. The manipulation of data and columns and exporting to an Excel
Staying Organized with the Outlook Journal
CHAPTER Staying Organized with the Outlook Journal In this chapter Using Outlook s Journal 362 Working with the Journal Folder 364 Setting Up Automatic Email Journaling 367 Using Journal s Other Tracking
Page Numbering for a Thesis or Dissertation
Page Numbering for a Thesis or Dissertation Tip: Add Page Numbering to your document after you are finished making all edits. After the page numbering has been added, then add the Table of Contents and/or
Reporting Tips and Tricks
Chapter 16 Reporting Tips and Tricks Intuit Statement Writer New for 2009! Company Snapshot New for 2009! Using the Report Center Reporting Preferences Modifying Reports Report Groups Memorized Reports
Creating and Using Links and Bookmarks in PDF Documents
Creating and Using Links and Bookmarks in PDF Documents After making a document into a PDF, there may be times when you will need to make links or bookmarks within that PDF to aid navigation through the
Office of History. Using Code ZH Document Management System
Office of History Document Management System Using Code ZH Document The ZH Document (ZH DMS) uses a set of integrated tools to satisfy the requirements for managing its archive of electronic documents.
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...
User Guide for TASKE Desktop
User Guide for TASKE Desktop For Avaya Aura Communication Manager with Aura Application Enablement Services Version: 8.9 Date: 2013-03 This document is provided to you for informational purposes only.
Performing On-Report Analysis with SAP BusinessObjects Web Intelligence
Performing On-Report Analysis with SAP BusinessObjects Web Intelligence SAP BusinessObjects XI 3.1 Service Pack 3 Copyright 2010 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge,
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
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
Creating a Newsletter with Microsoft Word
Creating a Newsletter with Microsoft Word Frank Schneemann In this assignment we are going to use Microsoft Word to create a newsletter that can be used in your classroom instruction. If you already know
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
bbc Creating a Purchase Order Form Adobe LiveCycle Designer ES2 November 2009 Version 9
bbc Adobe LiveCycle Designer ES2 November 2009 Version 9 2009 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle Designer ES2 (9.0) for Microsoft Windows November 2009 This tutorial is licensed
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.
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/
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
Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint
Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint This document provides instructions for using slide masters in Microsoft PowerPoint. Slide masters allow you to make a change just
Lotus Notes Client Version 8.5 Reference Guide
Lotus Notes Client Version 8.5 Reference Guide rev. 11/19/2009 1 Lotus Notes Client Version 8.5 Reference Guide Accessing the Lotus Notes Client From your desktop, double click the Lotus Notes icon. Logging
Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate.
Microsoft Access Rollup Procedure for Microsoft Office 2007 Note: You will need tax form information in an existing Excel spreadsheet prior to beginning this tutorial. 1. Start Microsoft access 2007. 2.
Microsoft Office System Tip Sheet
Experience the 2007 Microsoft Office System The 2007 Microsoft Office system includes programs, servers, services, and solutions designed to work together to help you succeed. New features in the 2007
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
How to Customize Printing Layouts with the Print Layout Designer
SAP Business One How-To Guide PUBLIC How to Customize Printing Layouts with the Print Layout Designer Applicable Release: SAP Business One 8.8 All Countries English August 2009 Table of Contents Introduction...
Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise
Access I 2010 Tables, Queries, Forms, Reports Lourdes Day, Technology Specialist, FDLRS Sunrise Objectives Participants will 1. create and edit a table 2. create queries with criteria 3. create and edit
-SoftChalk LessonBuilder-
-SoftChalk LessonBuilder- SoftChalk is a powerful web lesson editor that lets you easily create engaging, interactive web lessons for your e-learning classroom. It allows you to create and edit content
Q&As: Microsoft Excel 2013: Chapter 2
Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats
USER GUIDE. Unit 5: Tools & Modules. Chapter 3: Forms & Surveys
USER GUIDE Unit 5: Tools & Modules Chapter 3: Schoolwires Centricity Version 4.0 TABLE OF CONTENTS Introduction... 1 Audience and Objectives... 1 Major Components of a Form or Survey... 2 Overview... 2
Web Intelligence Report Conversion
Report Conversion Contents Purpose of this Training Guide... 2 Exporting Reports to the Repository... 2 Opening a Remote Desktop Session... 5 Opening the Report Conversion Tool... 7 Converting Reports...
Web Portal User Guide. Version 6.0
Web Portal User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its subsidiaries
Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA
Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA ABSTRACT The SAS Institute has a long history of commitment to openness
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
Easy Scan Complete. Administrator User Guide. HealthStream Competency Cent. HealthStream, Inc. 209 10th Ave. South Suite 450 Nashville, TN 37203
Easy Scan Complete Administrator User Guide HealthStream, Inc. 209 10th Ave. South Suite 450 Nashville, TN 37203 HealthStream Competency Cent Table of Contents Easy Scan Overview... 3 Gathering Data for
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...
WebFOCUS BI Portal: S.I.M.P.L.E. as can be
WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will
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.
Creating Reports Using Crystal Reports
Creating Reports Using Crystal Reports Creating Reports Using Crystal Reports Objectives Learn how to create reports for Visual Studio.NET applications. Use the Crystal Reports designer to lay out report
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
