Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Embedded pivot graph not updating within report

Status
Not open for further replies.

mayhem11

Technical User
Jan 9, 2012
10
0
0
US
I have a report with an embedded pivot graph in the header. The report information is in the details with the labels in the header so all details are displayed correctly. My pivot graph does not update within the report. If I create a code that I will post below, both will update properly but only if they are separate entities.

Code:
Public Function GetPivot()
DoCmd.OpenForm "frmPivot", acFormPivotChart, , FilterFromList
End Function

Private Sub cmdReport_Click()
DoCmd.OpenReport "rptResults", acNormal, , FilterFromList
GetPivot
End Sub

I do not want separate results. I want the pivot graph to update the filterfromlist information just like the report updates properly.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top