Clase PivotLineCells (Excel VBA)

Colección de objetos PivotCell de una línea dinámica específica. Para usar una variable de clase PivotLineCells, primero debe ser instanciado, por ejemplo


Dim plcs as PivotLineCells
Set plcs = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull

For Each

A continuación, se muestra un ejemplo de cómo procesar los elementos PivotLineCells en una colección.


Dim pvtlcelPivotLineCell As PivotCell
For Each pvtlcelPivotLineCell In Application.PivotLineCells
	
Next pvtlcelPivotLineCell

Count

Devuelve el número de elementos de la colección PivotLineCells .


Dim lngCount As Long
lngCount = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull.Count

Full

Si es true, se recuperan todos los PivotLineCells de la línea dinámica (incluidos los que están ocultos en el formato compacto).


Dim booFull As Boolean
booFull = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull.Full

Item

Devuelve un elemento específico del objeto de colección PivotLineCells por su posición en la colección.

Item (Index)

Index: Especifica la posición de un elemento de la colección.


Dim pvtlcelItem As PivotCell
Set pvtlcelItem = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull(Index:=1)