Splunk Search

AddColTotal value in a new column

zacksoft
Contributor

I use addcoltotal for one of my columns .
But my result has a lot of rows, so I have to browse a lot of pages to find my sum result at the bottom.
Can we have the sum/result in a new column instead ?

Tags (1)
0 Karma
1 Solution

mayurr98
Super Champion

Hey @zacksoft

As per your comments you want total of third column in the new column right?
Let suppose your third column name is third_column

Then your query will be

Your base search with all 5 columns | eventstats sum(third_column) as total 

After this you will get the total which will be reflected at every line in the new column called total

Another solution is if you are just interested in total
Then try this

Your base search will all 5 columns | addcoltotals third_column | tail 1

Let me know if this helps you!

View solution in original post

0 Karma

mayurr98
Super Champion

Hey @zacksoft

As per your comments you want total of third column in the new column right?
Let suppose your third column name is third_column

Then your query will be

Your base search with all 5 columns | eventstats sum(third_column) as total 

After this you will get the total which will be reflected at every line in the new column called total

Another solution is if you are just interested in total
Then try this

Your base search will all 5 columns | addcoltotals third_column | tail 1

Let me know if this helps you!

0 Karma

mayurr98
Super Champion

hey, @zacksoft have you tried above two queries?

0 Karma

zacksoft
Contributor

I'm trying this now.

0 Karma

zacksoft
Contributor

Hi @mayurr98,

I tried both the queries , both works . I am more interested towards the first query.
The only thing is, it shows the sum of third row in a newly created column called total "in every row".
Is it possible to have the sum only in the first row ?

0 Karma

mayurr98
Super Champion

hey, you can show it using appendcols command but it will take longer to run.
Try this !

Your base search with all 5 columns | appendcols [Your base search with all 5 columns  | eventstats sum(third_column) as total | head 1]

otherwise, i do not think any other solution for this!
let me know if this helps you!

0 Karma

risgupta
Path Finder

you can try
| addtotals col=t row=f

Let me know if that helps you.

0 Karma

zacksoft
Contributor

I have 5 columns.
I need to calculate the total of the third column only.
And instead of seeing the total of it at the bottom of the result, I want to see it , say on the first row of a newly created sixth column called Sum_calculated.

0 Karma

risgupta
Path Finder

I think this answer can help your query
https://answers.splunk.com/answers/478795/how-to-append-columns-based-on-searches-and-row-va.html

Please check the same.

0 Karma

zacksoft
Contributor

I have 5 columns.
I need to calculate the total of the third column only.
And instead of seeing the total of it at the bottom of the result, I want to see it , say on the first row of a newly created sixth column called Sum_calculated.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Index This | What travels the world but is also stuck in place?

April 2026 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...