Sorting a Grouped List View by CountIssue Sorting a Grouped List View by CountReleaseALLCauseInformationResolutionDid you know that you can sort a List View by the count of grouped items? You can very easily with the use of the following URL Parameters: "&sysparm_group_sort=COUNT" —> This will sort the List View so the lowest number of grouped items is at the top"&sysparm_group_sort=COUNTDESC" —> This will sort the List View so the highest number of grouped items is at the top Simply append either to the end of the URL after you do a Group By like this: https://instance.service-now.com/incident_list.do?sysparm_query=GROUPBYnumber&sysparm_group_sort=COUNTDESC This is quite useful. One real world scenario is when you are looking for all occurrences of Duplicate Numbers. You can use this to group them and show them all at the top!