If the source array is empty, this function returns true.
Specifies the array to work with.
Specifies the condition that all elements must satisfy for the function to return true.
1. |
The following example returns true, because all elements of the array are greater than 5. ALL([6, 90, 1000,
45], Item > 5)
|
2. |
In this example, one of the elements is less than 5, so it fails the condition and the function returns false. ALL([4, 90, 1000,
45], Item > 5)
|