Thermometer chart on form

mtom5

New member
Local time
Today, 10:35
Joined
Jun 28, 2005
Messages
7
I am using a one column chart on a form (unbound object) which references a query that sums a field in my table that tracks monetary amounts. As I enter records and go to the next record the chart does not update. It only updates when I close and then open the form. Has anyone had experience using this type of chart on a form and had it update after each record was entered?

Thanks
 
Try the following from your form's Current event.

Code:
Me.GraphName.Requery

The graph's RowSource, of course, does need to contain paramaters feeding off the current record.
 
Thanks

Thanks SJ. That tip worked great !!
 

Users who are viewing this thread

Back
Top Bottom