ListDataFormat.MinNumber property (Excel)

Returns a Variant containing the minimum value allowed in this field in the list column. This can be a negative floating point number. Read-only Variant.

Syntax

expression.MinNumber

expression A variable that represents a ListDataFormat object.

Remarks

This property will return the Nothing object if no value has been specified for this field or if the setting of the Type property is such that a minimum value is not applicable to the column.

This property is used only for lists that are linked to a SharePoint site.

In Microsoft Excel, you cannot set any of the properties associated with the ListDataFormat object. However, you can set these properties by modifying the list on the SharePoint site.

Example

The following example displays the setting of the MinNumber property for the third column of a list on Sheet1 of the active workbook.

 
 Dim wrksht As Worksheet 
 Dim objListCol As ListColumn 
 
 Set wrksht = ActiveWorkbook.Worksheets("Sheet1") 
 Set objListCol = wrksht.ListObjects(1).ListColumns(3) 
 
 Debug.Print objListCol.ListDataFormat.MinNumber

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.