|
SortSeriesDual |
Top Previous Next |
|
Sorts the series1 based on the values in series2. Only for non auto indexed series. Not available for auto indexed series.
Note that the three optional parameters are only optional if the preceding parameter is included. The following are valid:
SortSeriesDual( series1, series2 ) SortSeriesDual( series1, series2, elementCount ) SortSeriesDual( series1, series2, elementCount, offset ) SortSeriesDual( series1, series2, elementCount, offset, direction )
The following is not valid:
SortSeriesDual( series1, series2, direction )
Syntax
SortSeriesDual( series1, series2, [element count], [offset], [direction] )
Parameters
Example
' Sort resultsIndex based on the values of the results series. SortSeriesDual( resultsIndex, results, elementsToSort, elementsToSort, -1 )
' Now sort the results series. SortSeries( results, elementsToSort, elementsToSort, -1 )
|