Print Page | Close Window

Print 24 rows per page

Printed From: Crystal Reports Book
Category: Crystal Reports .NET 2003
Forum Name: Report Design
Forum Discription: The best way to design a report and problems you have encountered
URL: http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=20930
Printed Date: 03 May 2024 at 11:22pm


Topic: Print 24 rows per page
Posted By: aspfun
Subject: Print 24 rows per page
Date Posted: 31 Jul 2014 at 5:28am
I want report to print 24 rows in detail section per page.
How to do it?



Replies:
Posted By: lockwelle
Date Posted: 05 Aug 2014 at 5:18am
page header
shared numbervar cnt :=0;
""

detail section in section expert
click new page before

shared numbervar cnt;
local booleanvar g:=false;
if cnt > 24 then(
g := true;
cnt := 0)
else
cnt := cnt + 1;

g

HTH



Print Page | Close Window