In your expression, you have a wront syntax concering the use of quotes. It concerns the following part of the expression:
"status = 'cut down'"
Double quotes " are used to define fields (attributes), single quotes 'there are used to define text strings.
So the correct expression to define: field status equals text cut down isseveral problems:
"status" = 'cut down'
You have a wront syntax concering the use of quotes. It concerns the following part of the expression:
"status = 'cut down'"Double quotes
"are used to define fields (attributes), single quotes'are used to define text strings. So the correct expression to define: fieldstatusequals textcut downis:"status" = 'cut down'The function
relation_aggregate()has three mandatory arguments and two optional ones:relation_aggregate(relation, aggregate, expression, [concatenator=’’], [order_by])In your expression, the forth argument is not named, so it is not clear if it is used as concatenator or for odering. You seem to attempt to filter it, but
relation_aggregatehas not filter option. You should use another expressionarray_filter()to do so.