

| Type | Description | |||
| Long | A Long expression that specifies the number of data columns |
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