Using Table Styles and Total Row Calculations0%

Using Table Styles and Total Row Calculations

Beginner12 min readUpdated: Jul 11, 2026
Study Materials

Using Table Styles and Total Row Calculations

Excel Tables combine visual appeal with analytical functionality. Built-in Table Styles provide polished, accessible color themes with a single click, while the Total Row delivers instant summary statistics powered by the intelligent 'SUBTOTAL' function.


1. Customizing Table Styles & Layout Options

When your active cell is within a Table, navigate to the Table Design ribbon tab to customize visual presentation:

Table Style Options (Checkboxes):

  • Header Row: Toggles visibility of column titles.
  • Total Row: Inserts or hides the summary row at the bottom.
  • Banded Rows: Shades alternating rows with contrasting tones to guide the eye across wide tables.
  • First Column: Emphasizes the leftmost column (frequently row labels or IDs) with bold text.
  • Last Column: Emphasizes the rightmost column (often row totals).
  • Banded Columns: Shades alternating columns (useful when rows are not banded).
  • Filter Button: Shows or hides the dropdown filter arrows on header cells.
Output
Table Styles Gallery:
- Light Styles : Minimalist borders and soft pastel fills.
- Medium Styles: High-contrast corporate palettes (Navy, Teal, Slate, Forest).
- Dark Styles : Bold headers with saturated accent bands.

2. Enabling and Configuring the Total Row

The Total Row provides instant mathematical summaries without manually typing formulas:

  1. 1
    In the Table Design tab, check the box for Total Row (shortcut: Ctrl + Shift + T).
  2. 2
    A new row labeled Total appears at the bottom of the table.
  3. 3
    Click any cell in the Total Row; a drop-down arrow appears.
  4. 4
    Select the desired aggregation function from the menu:
  • None: Leaves the cell blank.
  • Average: Calculates the arithmetic mean.
  • Count: Counts all entries ('COUNTA').
  • Count Numbers: Counts numeric entries only ('COUNT').
  • Max / Min: Finds the highest or lowest value.
  • Sum: Computes the total sum.
  • StdDev / Var: Computes standard deviation or variance.
Table Styles and Total RowClick to Zoom
Table Styles and Total Row

3. Why the Total Row Uses SUBTOTAL Instead of SUM

When you inspect the formula generated by the Total Row, you will see:

EXCEL
=SUBTOTAL(109, [Revenue])

Why doesn't it use '=SUM([Revenue])'?

  • Function code 109 specifies that hidden filtered rows must be excluded from the sum.
  • When you filter the table (e.g., viewing only the 'East Region'), the Total Row automatically recalculates to reflect only the visible filtered records!
  • If it used standard 'SUM', the total would stubbornly display the grand total of all records, regardless of active filters.

Multiple Choice Questions

1. What is the keyboard shortcut to toggle the Total Row on and off in an active Excel Table?

A. Ctrl + T B. Ctrl + Shift + T C. Alt + Shift + R D. Ctrl + Shift + L Answer: B Explanation: Ctrl + Shift + T is the dedicated shortcut to toggle the Total Row in an Excel Table.


2. Which function does Excel use in the Total Row to automatically exclude rows hidden by filters?

A. SUMIF B. SUBTOTAL C. AGGREGATE.ONLY D. FILTERSUM Answer: B Explanation: The Total Row generates SUBTOTAL formulas (such as SUBTOTAL(109, ...)), which ignore rows hidden by an AutoFilter.


3. In the formula '=SUBTOTAL(109, [Sales])', what does the number 109 signify?

A. The number of rows in the table B. The command to perform a SUM while ignoring manually hidden and filtered rows C. A security PIN code D. The column index number Answer: B Explanation: In the SUBTOTAL function, 109 represents the SUM operation that ignores hidden rows.


4. How can you change a Total Row calculation from 'Sum' to 'Average'?

A. Retype the entire table B. Click the cell in the Total Row and choose 'Average' from the drop-down menu C. Reapply the table style D. Run a macro Answer: B Explanation: Each cell in an Excel Table Total Row contains an interactive drop-down menu allowing users to switch between Sum, Average, Count, Min, Max, and more.


5. What visual effect does checking 'Banded Rows' apply to an Excel Table?

A. Adds double vertical borders B. Alternates background shading across every other row for visual tracking C. Turns all negative numbers red D. Highlights the top 10% of values Answer: B Explanation: Banded Rows apply alternating background colors to even and odd rows, improving visual tracking across wide datasets.


Next Lesson

Highlighting Cells Based on Rules

Continue learning with hands-on practice, examples, and exercises in the upcoming topic.

Practice Quiz

Test your understanding of this lesson with 5 questions. Each question has one correct answer.

PrevNext