PC Review


Reply
Thread Tools Rate Thread

chart question??

 
 
=?Utf-8?B?amVy?=
Guest
Posts: n/a
 
      12th Oct 2006
I am creating a report from a query. I have asked previously how to show
months instead of the month number. With a little help from this newsgroup,
that part is fixed. Now I cannot seem to sort the months by month order, it
is only being sorted alphabetically. Is it possible to sort by month order
on the chart.

How can I format the chart. I have tried changing the legend, for example,
and cannot seem to make it smaller - font and size - without losing some
data. Any help / suggestions / direction would be greatly appreciated
--
thanks as always for the help
jer
 
Reply With Quote
 
 
 
 
Duane Hookom
Guest
Posts: n/a
 
      12th Oct 2006
Come back with the SQL view of your chart's Row Source.

--
Duane Hookom
MS Access MVP

"jer" <(E-Mail Removed)> wrote in message
news:E7B9E4B0-9535-4619-9E1E-(E-Mail Removed)...
>I am creating a report from a query. I have asked previously how to show
> months instead of the month number. With a little help from this
> newsgroup,
> that part is fixed. Now I cannot seem to sort the months by month order,
> it
> is only being sorted alphabetically. Is it possible to sort by month
> order
> on the chart.
>
> How can I format the chart. I have tried changing the legend, for
> example,
> and cannot seem to make it smaller - font and size - without losing some
> data. Any help / suggestions / direction would be greatly appreciated
> --
> thanks as always for the help
> jer



 
Reply With Quote
 
 
 
 
=?Utf-8?B?amVy?=
Guest
Posts: n/a
 
      12th Oct 2006
as requested ...

SELECT [Monthly Volumes].Mth, Sum([Monthly Volumes].NoOfTxnsl) AS [Monthly
Transactions]
FROM [Monthly Volumes]
GROUP BY [Monthly Volumes].Mth
ORDER BY [Monthly Volumes].Mth;

--
thanks as always for the help


"Duane Hookom" wrote:

> Come back with the SQL view of your chart's Row Source.
>
> --
> Duane Hookom
> MS Access MVP
>
> "jer" <(E-Mail Removed)> wrote in message
> news:E7B9E4B0-9535-4619-9E1E-(E-Mail Removed)...
> >I am creating a report from a query. I have asked previously how to show
> > months instead of the month number. With a little help from this
> > newsgroup,
> > that part is fixed. Now I cannot seem to sort the months by month order,
> > it
> > is only being sorted alphabetically. Is it possible to sort by month
> > order
> > on the chart.
> >
> > How can I format the chart. I have tried changing the legend, for
> > example,
> > and cannot seem to make it smaller - font and size - without losing some
> > data. Any help / suggestions / direction would be greatly appreciated
> > --
> > thanks as always for the help
> > jer

>
>
>

 
Reply With Quote
 
Duane Hookom
Guest
Posts: n/a
 
      12th Oct 2006
Where is your month number? Make sure there is a date or month number in
[Monthly Volumes] and the use it in the ORDER BY rather than Mth which I
assume is text.

--
Duane Hookom
MS Access MVP

"jer" <(E-Mail Removed)> wrote in message
news:49C11B6C-B2FA-409E-9CFE-(E-Mail Removed)...
> as requested ...
>
> SELECT [Monthly Volumes].Mth, Sum([Monthly Volumes].NoOfTxnsl) AS [Monthly
> Transactions]
> FROM [Monthly Volumes]
> GROUP BY [Monthly Volumes].Mth
> ORDER BY [Monthly Volumes].Mth;
>
> --
> thanks as always for the help
>
>
> "Duane Hookom" wrote:
>
>> Come back with the SQL view of your chart's Row Source.
>>
>> --
>> Duane Hookom
>> MS Access MVP
>>
>> "jer" <(E-Mail Removed)> wrote in message
>> news:E7B9E4B0-9535-4619-9E1E-(E-Mail Removed)...
>> >I am creating a report from a query. I have asked previously how to
>> >show
>> > months instead of the month number. With a little help from this
>> > newsgroup,
>> > that part is fixed. Now I cannot seem to sort the months by month
>> > order,
>> > it
>> > is only being sorted alphabetically. Is it possible to sort by month
>> > order
>> > on the chart.
>> >
>> > How can I format the chart. I have tried changing the legend, for
>> > example,
>> > and cannot seem to make it smaller - font and size - without losing
>> > some
>> > data. Any help / suggestions / direction would be greatly appreciated
>> > --
>> > thanks as always for the help
>> > jer

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?amVy?=
Guest
Posts: n/a
 
      12th Oct 2006
Duane, thanks for the quick response, you are right Mth is text. I have a
field VMonth which is the month number. When I ORDER BY VMonth everything is
fine except that the chart shows 1 2 3 ... for the months and not January
February ... The statement using VMonth is below

SELECT [Monthly Volumes].VMonth, Sum([Monthly Volumes].NoOfTxnsl) AS
[Monthly Transactions]
FROM [Monthly Volumes]
GROUP BY [Monthly Volumes].VMonth
ORDER BY [Monthly Volumes].VMonth;

--
thanks as always for the help


"Duane Hookom" wrote:

> Where is your month number? Make sure there is a date or month number in
> [Monthly Volumes] and the use it in the ORDER BY rather than Mth which I
> assume is text.
>
> --
> Duane Hookom
> MS Access MVP
>
> "jer" <(E-Mail Removed)> wrote in message
> news:49C11B6C-B2FA-409E-9CFE-(E-Mail Removed)...
> > as requested ...
> >
> > SELECT [Monthly Volumes].Mth, Sum([Monthly Volumes].NoOfTxnsl) AS [Monthly
> > Transactions]
> > FROM [Monthly Volumes]
> > GROUP BY [Monthly Volumes].Mth
> > ORDER BY [Monthly Volumes].Mth;
> >
> > --
> > thanks as always for the help
> >
> >
> > "Duane Hookom" wrote:
> >
> >> Come back with the SQL view of your chart's Row Source.
> >>
> >> --
> >> Duane Hookom
> >> MS Access MVP
> >>
> >> "jer" <(E-Mail Removed)> wrote in message
> >> news:E7B9E4B0-9535-4619-9E1E-(E-Mail Removed)...
> >> >I am creating a report from a query. I have asked previously how to
> >> >show
> >> > months instead of the month number. With a little help from this
> >> > newsgroup,
> >> > that part is fixed. Now I cannot seem to sort the months by month
> >> > order,
> >> > it
> >> > is only being sorted alphabetically. Is it possible to sort by month
> >> > order
> >> > on the chart.
> >> >
> >> > How can I format the chart. I have tried changing the legend, for
> >> > example,
> >> > and cannot seem to make it smaller - font and size - without losing
> >> > some
> >> > data. Any help / suggestions / direction would be greatly appreciated
> >> > --
> >> > thanks as always for the help
> >> > jer
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
Duane Hookom
Guest
Posts: n/a
 
      12th Oct 2006
My suggestion was to use VMonth in the ORDER BY, not in the SELECT
Try this SQL:

SELECT [Monthly Volumes].Mth, Sum([Monthly Volumes].NoOfTxnsl) AS
[Monthly Transactions]
FROM [Monthly Volumes]
GROUP BY [Monthly Volumes].Mth
ORDER BY [Monthly Volumes].VMonth;

--
Duane Hookom
MS Access MVP

"jer" <(E-Mail Removed)> wrote in message
news:88A6F7E3-4EC1-49A8-BF96-(E-Mail Removed)...
> Duane, thanks for the quick response, you are right Mth is text. I have
> a
> field VMonth which is the month number. When I ORDER BY VMonth everything
> is
> fine except that the chart shows 1 2 3 ... for the months and not January
> February ... The statement using VMonth is below
>
> SELECT [Monthly Volumes].VMonth, Sum([Monthly Volumes].NoOfTxnsl) AS
> [Monthly Transactions]
> FROM [Monthly Volumes]
> GROUP BY [Monthly Volumes].VMonth
> ORDER BY [Monthly Volumes].VMonth;
>
> --
> thanks as always for the help
>
>
> "Duane Hookom" wrote:
>
>> Where is your month number? Make sure there is a date or month number in
>> [Monthly Volumes] and the use it in the ORDER BY rather than Mth which I
>> assume is text.
>>
>> --
>> Duane Hookom
>> MS Access MVP
>>
>> "jer" <(E-Mail Removed)> wrote in message
>> news:49C11B6C-B2FA-409E-9CFE-(E-Mail Removed)...
>> > as requested ...
>> >
>> > SELECT [Monthly Volumes].Mth, Sum([Monthly Volumes].NoOfTxnsl) AS
>> > [Monthly
>> > Transactions]
>> > FROM [Monthly Volumes]
>> > GROUP BY [Monthly Volumes].Mth
>> > ORDER BY [Monthly Volumes].Mth;
>> >
>> > --
>> > thanks as always for the help
>> >
>> >
>> > "Duane Hookom" wrote:
>> >
>> >> Come back with the SQL view of your chart's Row Source.
>> >>
>> >> --
>> >> Duane Hookom
>> >> MS Access MVP
>> >>
>> >> "jer" <(E-Mail Removed)> wrote in message
>> >> news:E7B9E4B0-9535-4619-9E1E-(E-Mail Removed)...
>> >> >I am creating a report from a query. I have asked previously how to
>> >> >show
>> >> > months instead of the month number. With a little help from this
>> >> > newsgroup,
>> >> > that part is fixed. Now I cannot seem to sort the months by month
>> >> > order,
>> >> > it
>> >> > is only being sorted alphabetically. Is it possible to sort by
>> >> > month
>> >> > order
>> >> > on the chart.
>> >> >
>> >> > How can I format the chart. I have tried changing the legend, for
>> >> > example,
>> >> > and cannot seem to make it smaller - font and size - without losing
>> >> > some
>> >> > data. Any help / suggestions / direction would be greatly
>> >> > appreciated
>> >> > --
>> >> > thanks as always for the help
>> >> > jer
>> >>
>> >>
>> >>

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?amVy?=
Guest
Posts: n/a
 
      12th Oct 2006
Thank you Duane. That's it, perfectly
--
thanks as always for the help


"Duane Hookom" wrote:

> My suggestion was to use VMonth in the ORDER BY, not in the SELECT
> Try this SQL:
>
> SELECT [Monthly Volumes].Mth, Sum([Monthly Volumes].NoOfTxnsl) AS
> [Monthly Transactions]
> FROM [Monthly Volumes]
> GROUP BY [Monthly Volumes].Mth
> ORDER BY [Monthly Volumes].VMonth;
>
> --
> Duane Hookom
> MS Access MVP
>
> "jer" <(E-Mail Removed)> wrote in message
> news:88A6F7E3-4EC1-49A8-BF96-(E-Mail Removed)...
> > Duane, thanks for the quick response, you are right Mth is text. I have
> > a
> > field VMonth which is the month number. When I ORDER BY VMonth everything
> > is
> > fine except that the chart shows 1 2 3 ... for the months and not January
> > February ... The statement using VMonth is below
> >
> > SELECT [Monthly Volumes].VMonth, Sum([Monthly Volumes].NoOfTxnsl) AS
> > [Monthly Transactions]
> > FROM [Monthly Volumes]
> > GROUP BY [Monthly Volumes].VMonth
> > ORDER BY [Monthly Volumes].VMonth;
> >
> > --
> > thanks as always for the help
> >
> >
> > "Duane Hookom" wrote:
> >
> >> Where is your month number? Make sure there is a date or month number in
> >> [Monthly Volumes] and the use it in the ORDER BY rather than Mth which I
> >> assume is text.
> >>
> >> --
> >> Duane Hookom
> >> MS Access MVP
> >>
> >> "jer" <(E-Mail Removed)> wrote in message
> >> news:49C11B6C-B2FA-409E-9CFE-(E-Mail Removed)...
> >> > as requested ...
> >> >
> >> > SELECT [Monthly Volumes].Mth, Sum([Monthly Volumes].NoOfTxnsl) AS
> >> > [Monthly
> >> > Transactions]
> >> > FROM [Monthly Volumes]
> >> > GROUP BY [Monthly Volumes].Mth
> >> > ORDER BY [Monthly Volumes].Mth;
> >> >
> >> > --
> >> > thanks as always for the help
> >> >
> >> >
> >> > "Duane Hookom" wrote:
> >> >
> >> >> Come back with the SQL view of your chart's Row Source.
> >> >>
> >> >> --
> >> >> Duane Hookom
> >> >> MS Access MVP
> >> >>
> >> >> "jer" <(E-Mail Removed)> wrote in message
> >> >> news:E7B9E4B0-9535-4619-9E1E-(E-Mail Removed)...
> >> >> >I am creating a report from a query. I have asked previously how to
> >> >> >show
> >> >> > months instead of the month number. With a little help from this
> >> >> > newsgroup,
> >> >> > that part is fixed. Now I cannot seem to sort the months by month
> >> >> > order,
> >> >> > it
> >> >> > is only being sorted alphabetically. Is it possible to sort by
> >> >> > month
> >> >> > order
> >> >> > on the chart.
> >> >> >
> >> >> > How can I format the chart. I have tried changing the legend, for
> >> >> > example,
> >> >> > and cannot seem to make it smaller - font and size - without losing
> >> >> > some
> >> >> > data. Any help / suggestions / direction would be greatly
> >> >> > appreciated
> >> >> > --
> >> >> > thanks as always for the help
> >> >> > jer
> >> >>
> >> >>
> >> >>
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2007 error "some chart types cannot be combined with other chart types. Select a different chart types" roadsidetree Microsoft Excel Charting 17 12th May 2010 06:51 PM
Cannot Activate Chart Area in Chart. Chart Object Failed ahperez@gmail.com Microsoft Excel Programming 2 8th Aug 2006 02:38 AM
pasting chart shows chart area, not the chart =?Utf-8?B?UGlyam8=?= Microsoft Powerpoint 3 13th Oct 2005 04:31 AM
VBA - Excel chart to Powerpoint linked chart Ben Microsoft Powerpoint 3 18th Feb 2004 06:49 PM
PowerPoint Chart slide- chart disappears techintegrator Microsoft Powerpoint 1 26th Sep 2003 01:13 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:52 PM.