Skip to main content
Nintex Community Menu Bar
Solved

Aggregate Model ORDER BY

  • July 11, 2024
  • 2 replies
  • 6 views
  • Translate

Forum|alt.badge.img+4

Is there a special trick to ORDER aggregate rows by one of the aggregate fields on a model? The error is giving me something like:

No such column ‘field1’ on Object

Which is obviously true, since it is an aggregate model. Maybe I am incorrectly assuming that I should be able to sort aggregate models? Would it be easier to sort it using JS?

Best answer by Rob_Hatch

Please don’t use JS. You need to put the full function and field name in the model sort property, instead of the alias.

So if you are aggregating the SUM of Annual Revenue - your sort order statement on the model would be : “SUM(AnnualRevenue) Desc Nulls Last”

If you are grouping by Created Date (Calendar Year) - your sort order statement would be: “CALENDAR_YEAR(CreatedDate) DESC”

If you are grouping by a field - with no function - just use the salesforce field API name (rather than the aggregation alias).

Skuid does have actions that do client side sorting. You can set those up to run on page load or on requery - but ideally you can get the sorting you need server side.

View original
Did this topic help you find an answer to your question?

2 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • 3763 replies
  • Answer
  • July 12, 2024

Please don’t use JS. You need to put the full function and field name in the model sort property, instead of the alias.

So if you are aggregating the SUM of Annual Revenue - your sort order statement on the model would be : “SUM(AnnualRevenue) Desc Nulls Last”

If you are grouping by Created Date (Calendar Year) - your sort order statement would be: “CALENDAR_YEAR(CreatedDate) DESC”

If you are grouping by a field - with no function - just use the salesforce field API name (rather than the aggregation alias).

Skuid does have actions that do client side sorting. You can set those up to run on page load or on requery - but ideally you can get the sorting you need server side.

Translate

Forum|alt.badge.img+4

Great, that worked. Thanks for the quick response!

Translate

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings