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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...