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!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...