ListDataFormat.Choices Property

Excel Developer Reference

Returns an Array of String values that contains the choices offered to the user by the ListLookUp, ChoiceMulti, and Choice data types of the DefaultValue property. Read-only Variant.

Syntax

expression.Choices

expression   A variable that represents a ListDataFormat object.

Remarks

In Microsoft Excel, you cannot set any of the properties associated with the ListDataFormat object. You can set these properties, however, by modifying the list on the server that is running Microsoft Windows SharePoint Services.

Example

The following example displays the setting of the Choice property for the third column in a list that is linked to a SharePoint list. In this example, it is assumed that the DefaultValue property has been set to the Choice, ChoiceMulti, or ListLookup data type.

Visual Basic for Applications
  Sub PrintChoices()
   Dim wrksht As Worksheet
   Dim objListCol As ListColumn
   
   Set wrksht = ActiveWorkbook.Worksheets("Sheet1")
   Set objListCol = wrksht.ListObjects(1).ListColumns(3)

Debug.Print objListCol.ListDataFormat.Choices End Sub

See Also