ChristianWhite
Programmer
I'm designing a histogram in Crystal XI, Win XP Professional version 2002 SP2, SQL Server 2000.
Here's how it should look when I finish:
y-axis
(Number of
Subscribers)
400
300
200
100
0
Jan,Feb,Mar-etc JFMe JFMe JFMe
0 1-20 21-40 41-60 etc.
x-axis
(Counts of Articles Downloaded Jan-Dec of current year)
further grouped by month
As you can see, a user glancing at the chart should be able to answer questions such as:
How many subscribers downloaded 1 - 20 articles in March?
How many subscribers downloaded 1 - 20 articles in April?
How many subscribers downloaded 1 - 20 articles in May?
How many subscribers downloaded 61- 80 articles in August?
So far I have been able to return a histogram with this layout:
y-axis
(Number of
Subscribers)
400
300
200
100
0
0 1-20 21-40 41-60 etc.
x-axis
(Counts of Articles Downloaded Jan-Dec of current year)
As you can see, I'm missing the subgrouping by month.
I'm still deciding how to optimally organize the stored procedure. It could return Subscriber ID, Date (e.g. first of each month), and Article Count if desired.
My question, then, is how to get Crystal to subdivide the bars for the months. I don't see such a feature. Is there a way I can design my stored procedure to get this layout? Have I missed a setting in Crystal that would enable this subdivision?
Christian
Here's how it should look when I finish:
y-axis
(Number of
Subscribers)
400
300
200
100
0
Jan,Feb,Mar-etc JFMe JFMe JFMe
0 1-20 21-40 41-60 etc.
x-axis
(Counts of Articles Downloaded Jan-Dec of current year)
further grouped by month
As you can see, a user glancing at the chart should be able to answer questions such as:
How many subscribers downloaded 1 - 20 articles in March?
How many subscribers downloaded 1 - 20 articles in April?
How many subscribers downloaded 1 - 20 articles in May?
How many subscribers downloaded 61- 80 articles in August?
So far I have been able to return a histogram with this layout:
y-axis
(Number of
Subscribers)
400
300
200
100
0
0 1-20 21-40 41-60 etc.
x-axis
(Counts of Articles Downloaded Jan-Dec of current year)
As you can see, I'm missing the subgrouping by month.
I'm still deciding how to optimally organize the stored procedure. It could return Subscriber ID, Date (e.g. first of each month), and Article Count if desired.
My question, then, is how to get Crystal to subdivide the bars for the months. I don't see such a feature. Is there a way I can design my stored procedure to get this layout? Have I missed a setting in Crystal that would enable this subdivision?
Christian