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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Split columns in cross tab 1

Status
Not open for further replies.

neskin

Programmer
Mar 13, 2002
104
AU
Hi ,
In crystal XI how can I split columns in cross tab. I am not able to fit across the page all columns .How can I show first 13 and then another 20
1 2 3 4 5 6 7....


14 15 16 17 18 19 20 ...

thank you in advance
Nat
 
I have created formula for column
if {SPCRYRPT_SANADNLQUARTER.RMTID} in 1 to 13 then "RMT" & totext({SPCRYRPT_SANADNLQUARTER.RMTID},"###")
but it is still show me the column of remaining total of 14 to 20
How to suppress or exclude the column

thanks in advance
Nat
 
If your ID field is sequential, then create a formula:

if {SPCRYRPT_SANADNLQUARTER.RMTID} in 1 to 13 then 1 else
if {SPCRYRPT_SANADNLQUARTER.RMTID} in 14 to 26 then 2 else
if {SPCRYRPT_SANADNLQUARTER.RMTID} in 27 to 39 then 3 else //etc.
4

Insert a group on this formula and then place your crosstab in the group header or footer and suppress the detail section.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top