Splunk Search

How to subtract 2 row sum total value

yograjpatel
New Member

How to get the Total difference amount from DP - RF

Search used:
index=elm-*** | dedup transactionid | eval amount=round(amount/100,2) | stats sum(amount) as Total by actioncode

actioncode  Total
DP              19460.63
RF                   595.14
0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi @yograjpatel,

Can you please try below search??

index=elm-*** 
| dedup transactionid 
| eval amount=round(amount/100,2) 
| stats sum(eval(if(actioncode=="DP",amount,0))) as DP sum(eval(if(actioncode=="RF",amount,0))) as RF 
| eval difference = DP - RF

Thanks

View solution in original post

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi @yograjpatel,

Can you please try below search??

index=elm-*** 
| dedup transactionid 
| eval amount=round(amount/100,2) 
| stats sum(eval(if(actioncode=="DP",amount,0))) as DP sum(eval(if(actioncode=="RF",amount,0))) as RF 
| eval difference = DP - RF

Thanks

yograjpatel
New Member

thanks Kamlesh... it worked

0 Karma
Get Updates on the Splunk Community!

Splunk is Nurturing Tomorrow’s Cybersecurity Leaders Today

Meet Carol Wright. She leads the Splunk Academic Alliance program at Splunk. The Splunk Academic Alliance ...

Part 2: A Guide to Maximizing Splunk IT Service Intelligence

Welcome to the second segment of our guide. In Part 1, we covered the essentials of getting started with ITSI ...

Part 1: A Guide to Maximizing Splunk IT Service Intelligence

As modern IT environments continue to grow in complexity and speed, the ability to efficiently manage and ...