Graphs in Reports

  • Thread starter Thread starter Sharon Allen
  • Start date Start date
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.
 
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
 
Back
Top