Sort Data Table
Sorts the data table.
Last updated
Sorts the data table.
Last updated
Sorts an entire data table in ascending or descending order based on a specified column.
Input :
The DataTable
variable to be sorted.
Column Index : The index of the column you want to sort by.
Column Name : DynamicSearchString
The name of the column you want to sort by.
Text
- The full name of the column that is to be sorted.
Regex
- The regex is used to find matching column names to be sorted.
Wildcard
- The character that is used to search for matching column name. The asterisk (*)and the question mark (?) are used as wildcard characters. The asterisk represents zero or more characters in a string. The question mark represents any one character.
Data Column : The Data Column you want to sort by.
Order :
Ascending
- Sorts the data table by ascending order which means the first value is the lowest
Descending
- Sorts the data table in descending order which means the first value is the highest.
Output : Sorted Data Table result. Placing the same variable as the variable in the Input field changes the initial variable while adding new variables does not affect the initial variable.