Clase Actions (Excel VBA)
Colección de todos los objetos Action de la serie especificada. Para usar una variable de clase Actions, primero debe ser instanciado, por ejemplo
Dim acts as Actions
Set acts = ActiveCell.PivotTable.PivotValueCell.ServerActions
Count
Devuelve el número de objetos de la colección.
Dim lngCount As Long
lngCount = ActiveCell.PivotTable.PivotValueCell.ServerActions.Count
Item
Devuelve un objeto Actions que representa una colección de acciones en un libro.
Item (Index)
Index: Valor de índice de la acción.
Dim actItem As Action
Set actItem = ActiveCell.PivotTable.PivotValueCell.ServerActions(Index:=1)