Specifies the array to work with.
Specifies the condition to evaluate whether or not an element should be skipped.
1. |
The following example skips the elements at the beginning of the source array until a positive value is found. The function returns the remaining elements [1, 4, -15, 13]. SKIPWHILE([-9,
-52, -20, -15, -4, 1, 4, -15, 13], Item < 0)
|
Specifies the array to work with.
Specifies the condition to evaluate whether or not an element should be skipped.
Specifies the maximum number of elements to return after trimming the source array.
1. |
The following example skips the elements at the beginning of the source array until a positive value is found. The resulting array contains the remaining elements of the source array, up to the maximum allowed size. The function returns [1, 2, 3, 4]. SKIPWHILE([-9,
-52, -20, -15, -4, 1, 2, 3, 4, 5, 6, 7], Item < 0, 4)
|