Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To suppress details sections in Crystal Reports depending on the page number, you can use the following steps:

  1. From the Insert menu, select Formula Field.

  2. Name the formula, and in the formula editor, enter the following formula:

if PageNumber = 1 then false else true

  1. Click OK.

  2. In the report, right-click on the details section you want to suppress, and select Section Expert.

  3. In the Section Expert, select the details section you want to suppress.

  4. In the Common tab, check the Suppress checkbox.

  5. Click the formula button to the right of Suppress.

  6. Select the formula you created in step 2 from the list of available formulas.

  7. Click OK.

This will suppress the details section on all pages except for the first page. You can modify the formula to suppress the section on different pages as needed.