cancel
Showing results for 
Search instead for 
Did you mean: 

Program other way than sub report?

Former Member
0 Kudos
141

I have a report :

Order #        CAA PBP  Amt.

123                                100.00

124        

124           CAA              100.0

CAA and PBP is a transcode. Order # has row for 001 main transcode, we are not displaying this code, only the 2 shown on their display column.

I want to do as sub report but that will mess up the excel. how else to get one row per order#ut showing if the order# also has the 2 codes?

If I group on order#, I wont get the ones which has also CAA or PBP. If I group on order and code, it sorts it not the way I want.

View Entire Topic
Former Member
0 Kudos

Hi Paul,

You may try this.

Group by Order#

and put summary_1 count of code where value = 001

put summary_2 count of code where value = CAA

put summary_3 count of code where value = PBP

Make two formulas at Group Header

1) CAA --> if summary1>0 and summary_2>0 then return CAA else ' '

2) PBP --> if summary1>0 and summary_3>0 then return PBP else ' '

then show these two formula beside order#.

Message was edited by: Devanshi Prajapati