Each field has a boolean SubTotals(index) property that determines whether
or not a subtotal is calculated for that field or not.
For instance, let's say you had a fieldset called Time that had two fields,
Year and Quarter. You are looking at data from 2001, and 2002, and do not
want to se subtotals for each year.
You could use:
Dim av as PivotView
Set av = m_pivot.ActiveView
av.FieldSets("Time").Fields("Year").SubTotals(0) = False
av.FieldSets("Time").Fields("Quarter").SubTotals(0) = True
Chris Magoun