How to apply a filter on an aggregated column.
I want to aggregate all the sales amounts greater than 300,000.
One option is to project all the sales orders with gross amounts greater than 300,000 and the aggregate in the next step.
Is it possible to avoid projection and use a filter on an aggregated column. I tried to do it however filter property value is not editable.
Thanks in advance.