ListObject.ShowTotals Property (Excel)
Gets or sets a Boolean to indicate whether the Total row is visible. Read/write Boolean.
Syntax
식 .ShowTotals
식 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.
Sub test()
Dim oListObj As ListObject
Set wrksht = ActiveWorkbook.Worksheets("Sheet1")
Set oListObj = wrksht.ListObjects(1)
Debug.Print oListObj.ShowTotals
End Sub