Default Sort Order for Aggregate Table by Count of Record IDs
This is probably simple, but what syntax to I use on an aggregate table to default the sort order so that the category with the highest number of records is first?
1
Categories
- 7.9K Questions
- 926 Ideas
- 220 Discussion Categories
- 178 General
- 9 Community Feedback
- 3 Community Info
- 18 Knowledge Base
Comments
You'll put the function and field of whichever field is the "number" field in the Fields to order records by property of the aggregate model. For example, I have an aggregate Account model that groups by Industry and has an aggregation on Id. If I want to show the records sorted by count high to low, then I put COUNT(Id) DESC into the Fields to order records by property