ListObject.ShowTotals Property

Excel Developer Reference

Gets or sets a Boolean to indicate whether the Total row is visible. Read/write Boolean.

Syntax

expression.ShowTotals

expression   A variable that represents a ListObject object.

Example

The following code sample displays the current setting of the ShowTotals property of the default list in Sheet1 of the active workbook.

Visual Basic for Applications
     
Sub test()   
Dim oListObj As ListObject
   
   Set wrksht = ActiveWorkbook.Worksheets("Sheet1")
   Set oListObj = wrksht.ListObjects(1)
   
   Debug.Print oListObj.ShowTotals
End Sub

See Also