How to open by VBA a "pivot Grath"

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

The Access automactically generate VBA as below to open a PIVOTTABLE:
DoCmd.OpenForm stDocName, acFormPivotTable, , stlinkcriteria


My question is:
I want to open the "pivot GRATH", how to write this VBA? (--- that is, I
want to open the GRATH of this acFormPivotTable. but I don't know whether
the Englih is GRATH)

Thanks.

Martin
 
I'm guessing, but my guess, for whatever that may be worth, is that you may
want acFormPivotChart, e.g.

DoCmd.OpenForm stDocName, acFormPivotChart, , stLinkCriteria
 
You help me a lot!

Thanks! :)

Brendan Reynolds said:
I'm guessing, but my guess, for whatever that may be worth, is that you
may want acFormPivotChart, e.g.

DoCmd.OpenForm stDocName, acFormPivotChart, , stLinkCriteria
 
gaDFKSJAghdjkaJDKLAhdkja
Brendan Reynolds said:
I'm guessing, but my guess, for whatever that may be worth, is that you may
want acFormPivotChart, e.g.

DoCmd.OpenForm stDocName, acFormPivotChart, , stLinkCriteria
 
GJLK
Brendan Reynolds said:
I'm guessing, but my guess, for whatever that may be worth, is that you may
want acFormPivotChart, e.g.

DoCmd.OpenForm stDocName, acFormPivotChart, , stLinkCriteria
 

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

Back
Top