My table output gives me values in two columns . Column 1 gives different user name, Column 2 gives transaction time.
Column 1 contains user ids (repeated many time over differenr transactions).
I want to find what the transaction time ordered by user name.
Is it possible to achieve ?
hey zacksoft
Try below query:
your_base_query | rename "Transaction Time" as transaction_time | stats sum(transaction_time) as transaction_time by User
Let me know if this helps you!
Hi
Are you looking for like this?
YOUR_SEARCH | table User "Transaction Time" | stats sum("Transaction Time") by User
Thanks
Kamlesh
hey zacksoft
Try below query:
your_base_query | rename "Transaction Time" as transaction_time | stats sum(transaction_time) as transaction_time by User
Let me know if this helps you!
Can you try below
...| table Transactiontime user|stats sum(Transactiontime) by user
its possible to achieve. Can you pls elaborate more on what do you want exactly by providing sample input and output values?
User Transaction Time
Tom 15
Pean 14
Harry 12
Tom 15
Bob 11
John 19
Pean 10
Above is the sample input in tabular format.
I want to see Transaction time ordered by user.
like this
Tom 30
Penn 24
etc ....