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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pivot Table Navigation

Status
Not open for further replies.

Polariman

Technical User
Dec 5, 2006
5
US
Is there a way to navigate to a form from a pivot table form. For instance, clicking on a job number field in the pivot table and opening the job form. I can't find a way to do that.
 
You cannot execute code from table view.

One possibility is setting having the pivottable as a table view subfom. You could have a command button on the parent form that opens your edit form using the pivot table current value

Code:
DoCmd.OpenForm "detailsform", acNormal, , "MyRef=" & Me![mysubform]!Ref, acFormEdit, acDialog
[\code]

How's that work?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top