I want to show Products with highest average in a text box.
For example, if I have two products with the same highest average, then the text box should show two product names. If there are three highest, then show three names.
I tried the below expression but it works as per the number of items we define to show but not the highest average.
concat ( IF( aggr ( Rank(Avg(Number)),[Product])<=1, [Product] & chr(10)))