FILTERDEEP
Returns a recursively filtered list of items from a specified array that match a specified condition.
Syntax
=FILTERDEEP(array, expression)
Arguments
Argument | Type | Description |
---|---|---|
array | Array | The array to filter |
expression | Boolean | The expression to evaluate for each item in the flattened array, to determine whether it should be counted or not |
Examples
=FILTERDEEP(ARRAY(1, 2, 3), this > 1)
→ [2, 3]
Filters the array to include numbers which are greater than 1.
=FILTERDEEP(children, this."Property 1" > 2)
→ [4, 6, 7, 8]
Returns a list of children of the current shapes whose shape data property "Property 1" is greater than 2.
Updated 9 months ago