Pivot Tables

R

Rose

How do I remove the subtotal groupings within a pivot table and only display
the final totals.
 
M

Michel Walsh

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
 
Top