Pivot Tables

  • Thread starter Thread starter Rose
  • Start date Start date
R

Rose

How do I remove the subtotal groupings within a pivot table and only display
the final totals.
 
Have you tired to group by on a constant, something like (in SQL view):

TRANSFROM SUM(somefield)
SELECT "All"
FROM tableName
GROUP BY "All"
PIVOT someFieldOrExpression




Vanderghast, Access MVP
 
Back
Top