ListColumn Object [Excel 2003 VBA Language Reference]

ListObject
ListColumns
ListColumn
Multiple objects

Represents a column in a list. The ListColumn object is a member of the

Visit ListColumns

collection. The ListColumns collection contains all the columns in a list (ListObject object).

Using the ListColumn Object

Use the ListColumns property of the ListObject object to return a ListColumns collection.

Example

The following example adds a new ListColumn object to the default ListObject object in the first worksheet of the active workbook. Because no position is specified, a new rightmost column is added.

Sub AddListColumn()
    Dim wrksht As Worksheet
    Dim objListCol As ListColumn
   
    Set wrksht = ActiveWorkbook.Worksheets("Sheet1")
    Set objListCol = wrksht.ListObjects(1).ListColumns.Add
End Sub

Properties | Application Property | Creator Property | Index Property | ListDataFormat Property | Name Property | Parent Property | Range Property | SharePointFormula Property | TotalsCalculation Property | XPath Property

Methods | Delete Method

Parent Objects | ListObject

Child Objects | ListDataFormat | Range | XPath

See Also | ListRow Object