Graphs in Reports

S

Sharon Allen

My graphs (scattergrams) in my reports do not print
correct data. The data will change on the screen but will
not print correctly.
 
P

Pat Hartman

Try requerying the chart in the format event of the
section that it is in. Here's the code from one of my
reprots with two charts in a footer.

Private Sub FtrProjVer_Format(Cancel As Integer,
FormatCount As Integer)
Me.chrtPlan.Requery
Me.chrtImplement.Requery
End Sub
 
Top