I’m using Crystal XI with Oracle 10g
I need to create a summary report of the total number of procedures done in combination or as a single procedure. I’ve read several postings on arrays, but can’t figure out if I can group by the results.
The procedure data looks like this:
PatientID Procedure
34814 PHACOEMULSIFICATION
35002 PHACOEMULSIFICATION
35002 TRABECULECTOMY
35844 PHACOEMULSIFICATION
39432 TRABECULECTOMY
I need the summary to look like this:
Procedure Count
PHACOEMULSIFICATION 2
PHACOEMULSIFICATION, TRABECULECTOMY 1
TRABECULECTOMY 1
Thank you.
I need to create a summary report of the total number of procedures done in combination or as a single procedure. I’ve read several postings on arrays, but can’t figure out if I can group by the results.
The procedure data looks like this:
PatientID Procedure
34814 PHACOEMULSIFICATION
35002 PHACOEMULSIFICATION
35002 TRABECULECTOMY
35844 PHACOEMULSIFICATION
39432 TRABECULECTOMY
I need the summary to look like this:
Procedure Count
PHACOEMULSIFICATION 2
PHACOEMULSIFICATION, TRABECULECTOMY 1
TRABECULECTOMY 1
Thank you.