Compartir vía


Propiedad ListObject.ShowTotals (Excel)

Permite obtener o establecer un valor de tipo Boolean que indica si la fila de totales está visible. Boolean de lectura y escritura.

Sintaxis

expresión. ShowTotals

Expresión Variable que representa un objeto ListObject .

Ejemplo:

En el ejemplo de código siguiente se muestra la configuración actual de la propiedad ShowTotals de la lista predeterminada en Sheet1 del libro activo.

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

Soporte técnico y comentarios

¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.