Report Design
 Crystal Reports Forum : Crystal Reports 9 through 2022 : Report Design
Message Icon Topic: Report Footer Post Reply Post New Topic
Author Message
tarunjain
Newbie
Newbie


Joined: 14 Jul 2010
Location: United States
Online Status: Offline
Posts: 10
Quote tarunjain Replybullet Topic: Report Footer
    Posted: 10 Oct 2012 at 1:57pm
Hi Friends,
 
Please help me with below query.
 
 
 
One Order Id is having 10 items. 7 items are printing on one page and rest 3 items are printing on another page. So it means there are two pages for one orderid. At the page footer section I am displaying one image. Right now same image is printing on every page at the bottom but I want to print that image only once in the report. Please see the example below :
 
Page #1 - img A
Page #2  - img B
Page #3  - img C
page #4 - img C (Don't want display that)
page #5 - img D
 
i want img C print on Page #3 only, not on Page #4.  All other img still need to be printed on the page accordingly.
 
 
IP IP Logged
Sastry
Moderator
Moderator
Avatar

Joined: 16 Jul 2012
Online Status: Offline
Posts: 537
Quote Sastry Replybullet Posted: 11 Oct 2012 at 7:08pm
Hi
 

Hope you have group on Order ID. If not insert a group on Order ID and follow the logic :

 

Create a formulas like :

Whileprintingrecords; //Place this on your group header

Boolenvar x:= True;

 

Whileprintingrecords; // Place this on your group footer

Boolenvar x:= False

 

Now right click on the image and go in format image --Common –Suppress—Go in Formula editor and give the following condition

 

Whileprintingrecords;

Boolenvar x;

 

If x = true then true else false

 

This will not print image when you have two pages information.

 



Edited by Sastry - 11 Oct 2012 at 7:10pm
Thanks,
Sastry
IP IP Logged
Post Reply Post New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum



This page was generated in 0.031 seconds.