Print Page | Close Window

Horizontal Record in Crystal Report

Printed From: Crystal Reports Book
Category: Crystal Reports for Visual Studio 2005 and Newer
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=17008
Printed Date: 08 Apr 2025 at 5:47am


Topic: Horizontal Record in Crystal Report
Posted By: bicycle
Subject: Horizontal Record in Crystal Report
Date Posted: 11 Jul 2012 at 6:05pm
how to show record in detail section like

Record 1 Record 2 Record 3
Record 4 Record 5 Record 6
Record 7 Record 8 Record 9

 what the formula the showing record like that



Replies:
Posted By: lockwelle
Date Posted: 12 Jul 2012 at 4:06am
I build delimited string in the detail portion of the report (suppressing the detail section) and then format the string in the group footer.
 
simple example:
(in the detail section)
shared stringvar x;
x := x + ", " + {table.field};
 
(in group footer)
shared stringvar x;
mid(x, 3)    //strips leading comma and space
 
HTH
 


Posted By: bicycle
Date Posted: 12 Jul 2012 at 4:46pm
thanks for your response

i try the formula and i get the record horizontal which i want

thanks alotSmile






Print Page | Close Window