Can the number of items displayed in each group be limited to the last 10?

I have created a view in table format, sorted by timestamp, and grouped by any virtual column. Is it possible to limit the number of items displayed for each of these groupings to the last 10? I am thinking that slice cannot be used because this view has other columns that require aggregation from all records.

Solved Solved
0 3 185
1 ACCEPTED SOLUTION

If I understand your question, I'm afraid that's not possible. The aggregated value is always coming from the present rows and if you don't want to show rows after 10, they are not counted. You want to calculate values from rows that doesn't exists, and that logic doesn't work.

View solution in original post

3 REPLIES 3

If I understand your question, I'm afraid that's not possible. The aggregated value is always coming from the present rows and if you don't want to show rows after 10, they are not counted. You want to calculate values from rows that doesn't exists, and that logic doesn't work.

Thanks for your prompt reply. I see. I understand. I will try to think of another solution.

You're welcome!

Top Labels in this Space