Graph display

M

millie.patel

I have read the previous posts for people who have had problems with
having the design view of the graph and datasheet be updated; I added
this code:

Private Sub Detail_Print(Cancel As Integer, FormatCount As Integer)
On Error Resume Next

Dim objGraph As Object
Set objGraph = Me!objIndicators.Object
objGraph.Requery
'This will update the data sheet
objGraph.Application.Update
DoEvents
Set objGraph = Nothing
End Sub

to my detail print section (that is where the chart is located), but it
still displays the general data (ie East, West, etc)

Any ideas?

Thanks

Millie
 

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

Top