How to Remove Subtotal in Pivot Table (5 Useful Ways)

Get FREE Advanced Excel Exercises with Solutions!

Pivot Tables are effective when it comes to sorting or grouping data. In general, Pivot Tables adds an extra field as Subtotal when it displays any dataset as Pivot Table. Sometimes it’s annoying or unnecessary to have Subtotal fields in Pivot Tables. As a result, users remove Subtotal from Pivot Table entries. There are many Pivot Table features and options as well as VBA macros that easily remove the Subtotal entries.

Dataset-Remove Subtotal in Pivot Table

In this article, we demonstrate multiple features and options to remove Subtotal in Pivot Table.


How to Remove Subtotal in Pivot Table: 5 Easy Ways

While working with Pivot Table, every time we place the mouse cursor within the Pivot Table, Excel shows PivotTable Analyze and Design tab along with the other tabs. Excel offers multiple options to alter Fields, Display, or Orientation of a Pivot Table. We’ll use these two tabs in our latter section to remove the Subtotal entries from Pivot Table.

Extra Tabs


Method 1: Using Pivot Table Design Tool to Remove Subtotal

Excel displays PivotTable Analyze and Design tab whenever we work with the Pivot Table. Pivot Table provides a Subtotal section in the Design tab. From there we can choose the offered options not to show Subtotal in the Pivot Table entries.

Step 1:  Excel shows the Design tab whenever you select a cell within the Pivot Table. Go to Design > Click on Subtotal > Select Do Not Show Subtotals (from the Subtotal options).

Design Option-Remove Subtotal in Pivot Table

Step 2: After selecting Do Not Show Subtotals, Excel removes all the Subtotal fields from the Pivot Table as shown in the below picture.

Design Tool result


Method 2: Remove Subtotal by Deselecting Context Menu Option

If we right-click on any City entries, we see multiple options and Subtotal City will be one of them. We can unselect the option to remove the Subtotalentries.

Steps: Right-click on any City Entry. The Context Menu appears. From the Context Menu, Deselect the Subtotal City option.

Context Menu-Remove Subtotal in Pivot Table

🔼 Within seconds Excel removes Subtotal fields from the Pivot Table as depicted in the below image.

Context Menu Outcome


Method 3: Remove Subtotal in Pivot Table Using Field Setting Options

As we said earlier Excel shows two Extra tabs PivotTable Analyze and Design to further modify the Pivot Tables. We can use the Pivot Table Analyze tab to alter the Field Settings.

Step 1: Select the PivotTable Analyze tab > Click on Field Setting (in the Active Field section).

Field setting-Remove Subtotal in Pivot Table

🔼 Alternatively, you can Right-Click on any City cell entries (i.e., Subtotal of whom) to bring out the Context Menu with Field Setting in its options similar to the screenshot below. Otherwise, Excel displays Value Field Setting in case you Right-Click on Value entries.

Alternative option

Step 2: The Field Setting window appears. From the window,

➧ Choose the Subtotals & Filters section (in case Excel automatically doesn’t select).

➧ Under Subtotals, Mark None.

➧ Click on OK.

Field Setting window

🔼 Afterward, Excel displays all the fields except Subtotal of the Cities in the Pivot Table.

Outcome


Method 4: Using VBA Macro to Remove Subtotal in Pivot Table

VBA macros are effective when we need specific outcome-oriented results. A macro can simply remove all the Subtotal fields from a Pivot Table.

Step 1: Use ALT+F11 or go to the Developer tab > Visual Basic (in the Code section) to open Microsoft Visual Basic window. In the Window, Click on Insert > Select Module to insert a Module.

VBA-How to Remove Subtotal in Pivot Table

Step 2: Paste the below macro in the Module.

Sub SubtotalRemoval()
Dim mPT As PivotTable
Dim mPF As PivotField
On Error Resume Next
For Each mPT In Application.ActiveSheet.PivotTables
For Each mPF In mPT.PivotFields
mPF.Subtotals(1) = True
mPF.Subtotals(1) = False
Next
Next
End Sub

macro

In the macro, the macro declares mPT and mPF as Pivot Table and Pivot Field respectively. Then using Application.ActiveSheet statement to assign Pivot Table and Pivot Fields. Also, the macro runs a VBA FOR loop to remove Subtotal values from the fields of the Pivot Table.

Step 3: To run the macro, use the F5 key. Then, return to the Worksheet, and you see Excel removes all the Subtotal fields from the Pivot Table similar to the following image.

Macro outcome


 Method 5: Hiding Subtotal Rows in Pivot Table

Excel’s typical operations for rows such as Hide, Unhide, Insert, Height, etc. are also available within the Pivot Table range. So, we can Hide or Unhide any Pivot Table rows.

Step 1: Place the cursor on City Subtotal’s Row Numbers then Right-Click on it. Excel brings out the Context Menu as depicted in the below image. Select Hide from the Context Menu options.

Hide Rows-Remove Subtotal in Pivot Table

🔼 Instantly, you see Excel removes the Subtotal Row (i.e., Row Number 7).

Outcome

Step 2: Repeat Step 1 for other Subtotal Rows and you see a final image similar to the following picture.

Final Outcome

Hiding individual rows using Context Menu options is tiring for huge datasets. However, you can use this method for Pivot Tables containing a handful of rows.

Read More: How to Subtotal Multiple Columns in Excel Pivot Table


Download Excel Workbook


Conclusion

In this article, we use the Pivot Table Options, Excel Feature, as well as VBA macro to remove Subtotal entries. Each method we demonstrate is unique in its way and doesn’t require any specific data type to suit well. Hope you find these above-mentioned methods handy to work with. Comment, if you have further inquiries or have anything to add.


<< Go Back to Subtotals in Pivot Table | Pivot Table Calculations | Pivot Table in Excel | Learn Excel

What is ExcelDemy?

ExcelDemy - Learn Excel & Get Excel Solutions Center provides online Excel training , Excel consultancy services , free Excel tutorials, free support , and free Excel Templates for Excel professionals and businesses. Feel free to contact us with your Excel problems.
Maruf Islam
Maruf Islam

MARUF ISLAM is an excellent marine engineer who loves working with Excel and diving into VBA programming. For him, programming is like a superhero tool that saves time when dealing with data, files, and the internet. His skills go beyond the basics, including ABACUS, AutoCAD, Rhinoceros, Maxsurf, and Hydromax. He got his B.Sc in Naval Architecture & Marine Engineering from BUET, and now he's switched gears, working as a content developer. In this role, he creates techy content... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo