Pivot Tables
============

openpyxl provides read-support for pivot tables so that they will be
preserved in existing files. The specification for pivot tables, while
extensive, is not very clear and it is not intended that client code should
be able to create pivot tables. However, it should be possible to edit and
manipulate existing pivot tables, eg. change their ranges or whether they
should update automatically settings.

As is the case for charts, images and tables there is currently no management
API for pivot tables so that client code will have to loop over the
``_pivots`` list of a worksheet.


Example
-------

.. code::

    from openpyxl import load_workbook
    wb = load_workbook("campaign.xlsx")
    ws = wb["Results"]
    pivot = ws._pivots[0] # any will do as they share the same cache
    pivot.cache.refreshOnLoad = True


For further information see :class:`openpyxl.pivot.cache.CacheDefinition`