_Application.AddCustomList(Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a custom list for custom autofill and/or custom sort.
public void AddCustomList (object ListArray, object ByRow);
Public Sub AddCustomList (ListArray As Object, Optional ByRow As Object)
Parameters
- ListArray
- Object
Required Object. Specifies the source data, as either an array of strings or a Range object.
- ByRow
- Object
Optional Object. Only used if ListArray
is a Range object. True to create a custom list from each row in the range. False to create a custom list from each column in the range. If this argument is omitted and there are more rows than columns (or an equal number of rows and columns) in the range, Microsoft Excel creates a custom list from each column in the range. If this argument is omitted and there are more columns than rows in the range, Microsoft Excel creates a custom list from each row in the range.
Remarks
If the list you're trying to add already exists, this method does nothing.