T
Tara
A while back, I posted a question about charts. After some help from others
users, I thought I had it figured out, but I don't. Here's what I need: A
chart that shows referrals to a specific program over the course of a year.
I can get the data to show up, but I can't get it to format correctly. For
instance, since there are 12 months in a year, the chart shows up 12 times -
once for each month. The charts each show all 12 months, so the additional,
unneeded 11 charts are just duplicates of the first. Also, I need the graph
to display as Jan, Feb, March, etc. However, if I use the month name rather
than the month number in the underlying query, the chart displays
alphabetically, not numerically. Here's the row source as it is now:
TRANSFORM Sum([CountOfProgram]) AS [SumOfCountOfProgram] SELECT
[ReferralMonth] FROM [tblReferralsTEMP] GROUP BY [ReferralMonth] PIVOT
[ReferralYear];
Any help is appreciated. I'm ready to scream...
users, I thought I had it figured out, but I don't. Here's what I need: A
chart that shows referrals to a specific program over the course of a year.
I can get the data to show up, but I can't get it to format correctly. For
instance, since there are 12 months in a year, the chart shows up 12 times -
once for each month. The charts each show all 12 months, so the additional,
unneeded 11 charts are just duplicates of the first. Also, I need the graph
to display as Jan, Feb, March, etc. However, if I use the month name rather
than the month number in the underlying query, the chart displays
alphabetically, not numerically. Here's the row source as it is now:
TRANSFORM Sum([CountOfProgram]) AS [SumOfCountOfProgram] SELECT
[ReferralMonth] FROM [tblReferralsTEMP] GROUP BY [ReferralMonth] PIVOT
[ReferralYear];
Any help is appreciated. I'm ready to scream...