- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
bcusick
Communicator
03-17-2014
06:09 AM
Hi,
I'm thinking this has a simple solution..Is there anyway to show a table in descending order by count? Currently it always goes alphabetically.
Now:
Anthony 6
Brian 8
Michael 4
I would like to see:
Brian 8
Anthony 6
Michael 4
The way I'm currently outputting this is `
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
03-17-2014
06:17 AM
Maybe ' ... | sort - "Number of days Logged in"'
?
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

vasanthmss
Motivator
11-28-2016
10:32 AM
use the below one,
| sort 0 - "Number of days Logged in"
while using sort you can mention the limitation, zero means there will not be any limits applied. 😉
V
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
03-17-2014
06:17 AM
Maybe ' ... | sort - "Number of days Logged in"'
?
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
w531t4
Path Finder
11-28-2016
10:11 AM
I downvoted this post because does not work on datasets larger than 10000 rows
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
helge
Builder
02-15-2017
02:55 PM
Add limit=0
to remove the limitation to 10,000 rows
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
bcusick
Communicator
03-17-2014
06:22 AM
BeautifuL! Thank you.
