Click here to Skip to main content
15,885,632 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I have to create a crystal report that has 60 report fields. Please help me how can I show the field in rpt in crystal report. If it is not possible then give me another way. I will be very regreful.
Posted
Updated 9-Aug-14 23:39pm
v2
Comments
Dilan Shaminda 10-Aug-14 5:55am    
60 columns?!What is the paper size you are going to use?
Sumon562 10-Aug-14 6:14am    
paper size is legal
Dilan Shaminda 10-Aug-14 6:21am    
legal paper size has 8.501" and Height 14.002". So how is it possible to show 60 columns?So i suggest you to remove some unwanted columns from the report.
Sumon562 10-Aug-14 6:29am    
I want to divide the report into four different rpt. Is it possible?

1 solution

You could, just reduce the font size, reduce horizontal space, reduce margins, etc.,
You can't if you want a perfect report. See below

Group the columns like below(sample example). It depends on your table data(rows & columns).
BEFORE
-------------------------------------------------------
StudentID Name Age Mark1 Mark2 Mark3 Mark4 Mark5 Total
-------------------------------------------------------
1         AAA  20  10    20    30    40    50    150
2         BBB  20  10    20    30    40    60    160
3         CCC  20  10    20    30    40    70    170
-------------------------------------------------------

AFTER
-------------------------------------------------------
StudentID Name Age Marks Total
-------------------------------------------------------
1         AAA  20  10    150
                   20
                   30
                   40
                   50
2         BBB  20  10    160
                   20
                   30
                   40
                   60
3         CCC  20  10    170
                   20
                   30
                   40
                   70
-------------------------------------------------------
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900