

| Type | Description | |||
| Index as Variant | A Long expression that specifies the index of the column to be requested, a String expression that indicates the caption of the column to be accessed. | |||
| Column | A Column object being requested. |
The following VB sample enumerates the data columns:
With Pivot1
Dim c As EXPIVOTLibCtl.Column
For Each c In .DataColumns
Debug.Print c.Caption
Next
End With