Crystal 11
I have the following report layout. Gist of the data is that each "service" can be offered to multiple suppliers for bid, one of those suppliers is then selected to actually perform the service.
The suppliers that can be offered or Assigned might change on a day-to-day basis, so I believe a crosstab is the only reasonable solution.
GH1 Client
GH2 Customer
GH3 Service
Detail
The data is displayed in the report like this:
GH1: Client A (group On Client)
GH2: Customer 1234 (group On Customer)
GH3: Service1, Assigned to Organization (group On Service)
Detail: Offered to Organization1, Organization2, Organization3
GH3: Service2, Assigned to Organization (group On Service)
Detail: Offered to Organization1, Organization2, Organization3
Desired Output in Report Footer:
Service1 Offers Summary (from Details section)
Organization1 CountOfferedtoOrganization1
Organization2 CountOfferedtoOrganization2
Organization3 CountOfferedtoOrganization3
etc.
Service1 Assigned Summary (From GH3 Service)
Organization1 CountAssignedtoOrganization1
Organization2 CountAssignedtoOrganization2
Organization3 CountAssignedtoOrganization3
etc.
Service2 - Offers and Assignment Counts same as Service1.
Approach so far:
I added a formula @OfferCount to count each offer in the detail section:"If Service=service1 then 1 else 0" Each Offered Organization under the Detail Section for "Service1" shows a "1" so looks OK at this point.
I then created a Running Total @OfferTotal based upon the @OfferCount, Evaluate on Change of Service, Reset Never. I then added a crosstab to the Report footer with Offered Organization field as a Row and @OfferTotal as the Summarized Field.
I've tried every possible variation of the crosstab/runningtotals that I can think of to get the correct counts to no avail. Any ideas?
I have the following report layout. Gist of the data is that each "service" can be offered to multiple suppliers for bid, one of those suppliers is then selected to actually perform the service.
The suppliers that can be offered or Assigned might change on a day-to-day basis, so I believe a crosstab is the only reasonable solution.
GH1 Client
GH2 Customer
GH3 Service
Detail
The data is displayed in the report like this:
GH1: Client A (group On Client)
GH2: Customer 1234 (group On Customer)
GH3: Service1, Assigned to Organization (group On Service)
Detail: Offered to Organization1, Organization2, Organization3
GH3: Service2, Assigned to Organization (group On Service)
Detail: Offered to Organization1, Organization2, Organization3
Desired Output in Report Footer:
Service1 Offers Summary (from Details section)
Organization1 CountOfferedtoOrganization1
Organization2 CountOfferedtoOrganization2
Organization3 CountOfferedtoOrganization3
etc.
Service1 Assigned Summary (From GH3 Service)
Organization1 CountAssignedtoOrganization1
Organization2 CountAssignedtoOrganization2
Organization3 CountAssignedtoOrganization3
etc.
Service2 - Offers and Assignment Counts same as Service1.
Approach so far:
I added a formula @OfferCount to count each offer in the detail section:"If Service=service1 then 1 else 0" Each Offered Organization under the Detail Section for "Service1" shows a "1" so looks OK at this point.
I then created a Running Total @OfferTotal based upon the @OfferCount, Evaluate on Change of Service, Reset Never. I then added a crosstab to the Report footer with Offered Organization field as a Row and @OfferTotal as the Summarized Field.
I've tried every possible variation of the crosstab/runningtotals that I can think of to get the correct counts to no avail. Any ideas?