Skip to main content
Nintex Community Menu Bar
Question

Default Sort Order for Aggregate Table by Count of Record IDs

  • July 10, 2024
  • 2 replies
  • 10 views

Forum|alt.badge.img+2

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?

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+7
  • 595 replies
  • July 10, 2024

Shane,

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


Forum|alt.badge.img+2
  • Author
  • 6 replies
  • July 10, 2024

That worked, thanks so much!