I have a pretty tricky report on my list of things to do and for the life of me I can't figure out a way to accomplish it. To be fair, I'm a pretty big Crystal newbie. Unfortunately, my current task is out of my realm of experience. This is where Stack Overflow comes to the rescue!
My Datasets look like this:
Usage
------
LocationID
CustomerID
Period
Usage
Amount
Customer
------
LocationID
CustomerID
CustomerName
LocationNumber
Period is a length of time (a month) where bill charges were accrued. Usage is the number of units of service a customer has used in a particular period. Amount is the dollar value billed for that usage.
The issue I'm having with the report is as follows: I want to display each period's data horizontally, like so:
LocationNumber: CustomerName - CustomerID
Period1 - Period2 - Period3 - Period4
Usage1 - Usage2 - Usage3 - Usage4
Amount1 - Amount2 - Amount3 - Amount4
So essentially, in column form, display all amounts and usages for each period a customer has. Can anyone please give some insight on what the grouping should look like?