Chart on Form.

  • Thread starter Thread starter Rubiano
  • Start date Start date
R

Rubiano

I have a graph in a form using data from a table. The data
in the table is changed by a selection from the user, but
the graph is not updated when the data in the table change.
How can I get the graph updated each time the data in the
table change?

Thanks in advance,
 
When the user has made the selection on the form, attach some code to say, a
button named "update chart" and then just run the code
"chartname.Requery". The .Requery method should update the chart's source
and work as functioned. You can attach that code to any event.

Regards

Ashley Bragg
 
Thanks a lot Ashley. It worked.

Ashley Bragg said:
When the user has made the selection on the form, attach some code to say, a
button named "update chart" and then just run the code
"chartname.Requery". The .Requery method should update the chart's source
and work as functioned. You can attach that code to any event.

Regards

Ashley Bragg
 
Thanks Ashley. It worked.

Ashley Bragg said:
When the user has made the selection on the form, attach some code to say, a
button named "update chart" and then just run the code
"chartname.Requery". The .Requery method should update the chart's source
and work as functioned. You can attach that code to any event.

Regards

Ashley Bragg
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top