PC Review


Reply
Thread Tools Rate Thread

Column graph problem

 
 
Jeff
Guest
Posts: n/a
 
      15th Apr 2010
Hi,

I have a report that displays Global Variables returned from a Public Sub
after calculation. It is in a table format and each cell is a TextBox:

lblNSD No. lblCS No.
lblName1 txtNSD1 txtCS1
lblName1 txtNSD2 txtCS2
lblName3 txtNSD3 txtCS3
lblName4 txtNSD4 txtCS4

The first part has been done and works fine. Now I want to add a column
graph (Excel graph) below this table. Can anyone tell me how to feed these
variables (value) into the column graph or is there an easier way to do this?
Thank you.
--
Jeff
 
Reply With Quote
 
 
 
 
Duane Hookom
Guest
Posts: n/a
 
      15th Apr 2010
Typically you would pull the records from a table or query that would be used
in the Row Source property of a chart control.

There is some functionality for pushing values into the datasheet of the
chart but it is more difficult and rarely used.

--
Duane Hookom
Microsoft Access MVP


"Jeff" wrote:

> Hi,
>
> I have a report that displays Global Variables returned from a Public Sub
> after calculation. It is in a table format and each cell is a TextBox:
>
> lblNSD No. lblCS No.
> lblName1 txtNSD1 txtCS1
> lblName1 txtNSD2 txtCS2
> lblName3 txtNSD3 txtCS3
> lblName4 txtNSD4 txtCS4
>
> The first part has been done and works fine. Now I want to add a column
> graph (Excel graph) below this table. Can anyone tell me how to feed these
> variables (value) into the column graph or is there an easier way to do this?
> Thank you.
> --
> Jeff

 
Reply With Quote
 
Jeff
Guest
Posts: n/a
 
      16th Apr 2010
HI Duane,

Thank you for your response. I know how to build a table with these
variables, but can we build a query with these variables? With a table, I
have write the variables (table) to the hard disk, then retrieve them from
hard disk for the chart. This will slow down the speed of my program.

I think I need to learn coding in Excel to get this work.
--
Jeff


"Duane Hookom" 來函:

> Typically you would pull the records from a table or query that would be used
> in the Row Source property of a chart control.
>
> There is some functionality for pushing values into the datasheet of the
> chart but it is more difficult and rarely used.
>
> --
> Duane Hookom
> Microsoft Access MVP
>
>
> "Jeff" wrote:
>
> > Hi,
> >
> > I have a report that displays Global Variables returned from a Public Sub
> > after calculation. It is in a table format and each cell is a TextBox:
> >
> > lblNSD No. lblCS No.
> > lblName1 txtNSD1 txtCS1
> > lblName1 txtNSD2 txtCS2
> > lblName3 txtNSD3 txtCS3
> > lblName4 txtNSD4 txtCS4
> >
> > The first part has been done and works fine. Now I want to add a column
> > graph (Excel graph) below this table. Can anyone tell me how to feed these
> > variables (value) into the column graph or is there an easier way to do this?
> > Thank you.
> > --
> > Jeff

 
Reply With Quote
 
Duane Hookom
Guest
Posts: n/a
 
      16th Apr 2010
I think the performance shouldn't take much. I did a quick google search and
found this as the first hit
http://www.access-programmers.co.uk/...ad.php?t=76241.


--
Duane Hookom
MS Access MVP


"Jeff" <(E-Mail Removed)> wrote in message
news0BE801D-8199-40EA-9EFB-(E-Mail Removed)...
> HI Duane,
>
> Thank you for your response. I know how to build a table with these
> variables, but can we build a query with these variables? With a table, I
> have write the variables (table) to the hard disk, then retrieve them from
> hard disk for the chart. This will slow down the speed of my program.
>
> I think I need to learn coding in Excel to get this work.
> --
> Jeff
>
>
> "Duane Hookom" 來函:
>
>> Typically you would pull the records from a table or query that would be
>> used
>> in the Row Source property of a chart control.
>>
>> There is some functionality for pushing values into the datasheet of the
>> chart but it is more difficult and rarely used.
>>
>> --
>> Duane Hookom
>> Microsoft Access MVP
>>
>>
>> "Jeff" wrote:
>>
>> > Hi,
>> >
>> > I have a report that displays Global Variables returned from a Public
>> > Sub
>> > after calculation. It is in a table format and each cell is a TextBox:
>> >
>> > lblNSD No. lblCS No.
>> > lblName1 txtNSD1 txtCS1
>> > lblName1 txtNSD2 txtCS2
>> > lblName3 txtNSD3 txtCS3
>> > lblName4 txtNSD4 txtCS4
>> >
>> > The first part has been done and works fine. Now I want to add a column
>> > graph (Excel graph) below this table. Can anyone tell me how to feed
>> > these
>> > variables (value) into the column graph or is there an easier way to do
>> > this?
>> > Thank you.
>> > --
>> > Jeff


 
Reply With Quote
 
Jeff
Guest
Posts: n/a
 
      18th Apr 2010
Hi Duane,

That really helps. Thank you very much.
--
Jeff


"Duane Hookom" 來函:

> I think the performance shouldn't take much. I did a quick google search and
> found this as the first hit
> http://www.access-programmers.co.uk/...ad.php?t=76241.
>
>
> --
> Duane Hookom
> MS Access MVP
>
>
> "Jeff" <(E-Mail Removed)> wrote in message
> news0BE801D-8199-40EA-9EFB-(E-Mail Removed)...
> > HI Duane,
> >
> > Thank you for your response. I know how to build a table with these
> > variables, but can we build a query with these variables? With a table, I
> > have write the variables (table) to the hard disk, then retrieve them from
> > hard disk for the chart. This will slow down the speed of my program.
> >
> > I think I need to learn coding in Excel to get this work.
> > --
> > Jeff
> >
> >
> > "Duane Hookom" 來函:
> >
> >> Typically you would pull the records from a table or query that would be
> >> used
> >> in the Row Source property of a chart control.
> >>
> >> There is some functionality for pushing values into the datasheet of the
> >> chart but it is more difficult and rarely used.
> >>
> >> --
> >> Duane Hookom
> >> Microsoft Access MVP
> >>
> >>
> >> "Jeff" wrote:
> >>
> >> > Hi,
> >> >
> >> > I have a report that displays Global Variables returned from a Public
> >> > Sub
> >> > after calculation. It is in a table format and each cell is a TextBox:
> >> >
> >> > lblNSD No. lblCS No.
> >> > lblName1 txtNSD1 txtCS1
> >> > lblName1 txtNSD2 txtCS2
> >> > lblName3 txtNSD3 txtCS3
> >> > lblName4 txtNSD4 txtCS4
> >> >
> >> > The first part has been done and works fine. Now I want to add a column
> >> > graph (Excel graph) below this table. Can anyone tell me how to feed
> >> > these
> >> > variables (value) into the column graph or is there an easier way to do
> >> > this?
> >> > Thank you.
> >> > --
> >> > Jeff

>

 
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
stacked column graph adjacent to a regular column graph velisha Microsoft Excel Charting 0 19th Aug 2011 07:13 PM
graph column line graph with two axes trichens Microsoft Excel Charting 1 26th Apr 2010 07:58 PM
Combining a 2-D column graph and a 2-D line graph on the same char Filippo Microsoft Excel Charting 3 23rd Feb 2010 12:34 AM
LINE-Column graph - I want 1 column multiple lines BlueWolverine Microsoft Excel Charting 2 21st Nov 2008 01:11 PM
Creating a graph similar to a stacked column graph =?Utf-8?B?Sm9uYXRoYW4=?= Microsoft Excel Charting 6 4th Aug 2006 04:23 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:39 AM.