Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Visible Records in crystal report 2008 where in other version 1

Status
Not open for further replies.

kuekue

Programmer
Dec 2, 2008
35
TH
i use 'visible records' in detail / section expert / paging , that has in crystal report version 2008
then i save it and open in crystal report 10. this function still work. but it function on version 2008.

i save again in version 10, this function still come to and worked.

but i cannot know where to edit in version 10 OR How to coding like this function?.

i think many long times. i cannot. then i test in version 2008 and found new function this, and OK Worked. :)

but i like to make report in version 10.

Many Thanks.
 
I assume you are using New Page After N Visible Records CR 2008
This is not a feature in CR10.

Best way to replicate is to use a Variable to cout the visible records and when coult reaches an amount use that to set new page.

This will require 2 formula

@reset // place this in page header
whleprintingrecords;

global numbervar RecCount:=0;

@eval // place this in details and suppress
whleprintingrecords;

global numbervar RecCount;

RecCount:=RecCount+1
// if there are Suppression rules for details the opposite will need to be included
//eg
// If {suppression condition} = false then RecCount:=RecCount+1;

Go to section expert for details section, in formula box opposite new page after enter

whleprintingrecords;

global numbervar RecCount> 25// or what ever count you want

Ian
 
Ok. Thank you Ian.
i got the idea i create complex report then i forgot this solution. ;)

Many Many Thanks. :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top