6.11 Use group’s aggregation value when filtering

 

We have an aggregation table for the sales of grouped products:

imagepng

Now we want to find out the product whose sales is greater than the average in its group:

=spl("=E(?1).group(CategoryName).(a=~.avg(ProductSales),~.select(ProductSales>a)).conj()",A1:C78)

To solve this problem, we can first calculate group’s average sales and assign it to the temporary variable a, and then use ProductSales>a as the filter condition to filter the group.

imagepng


https://c.scudata.com/article/1651916536524
https://c.scudata.com/article/1654307922996
https://c.scudata.com/article/1654391240951