Splunk Search

How to add a character to front of result if true in an if statement?

alex389
Engager

Hi, I want to use an eval if statement to add a minus onto the original value if it's is true. I am using table command to display these results.

Value0 = 10
Value1 = No

In the above scenario I want Value0 to to become -10

What I have so far only replaces Value0 with "-" only and does not retain the original Value0. What is the correct way to do this

Search | eval Value0=if(Value1="No", "-" ,Value0)

Thank you

0 Karma
1 Solution

renjith_nair
Legend

@alex389,

eval Value0=if(Value1=="No",-1*Value0,Value0)
Happy Splunking!

View solution in original post

renjith_nair
Legend

@alex389,

eval Value0=if(Value1=="No",-1*Value0,Value0)
Happy Splunking!

renjith_nair
Legend

Just in case if you need a '-' character for non integer field then, "." is the concatenation operator.

eval Value0=if(Value1=="No","-".Value0,Value0)
Happy Splunking!
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 ...