Splunk Search

How to use if statements to validate two strings

moinyuso96
Path Finder

I would like TestResult to give output "1" if there are "Pass" or "Completed" in Status and "0" if otherwise. How to change this query below to check for both strings?

| eval TestResult=if(like(Status, "%Completed%"), 1, 0)

Labels (2)
0 Karma
1 Solution

venkatasri
SplunkTrust
SplunkTrust

Hi @moinyuso96 

Can you try this,

| eval result=if(like(Status,"%Completed%") OR like(Status,"%Pass%"), 1 , 0 )

---

An upvote would be appreciated if this reply helps and Accept the solution!

View solution in original post

venkatasri
SplunkTrust
SplunkTrust

Hi @moinyuso96 

Can you try this,

| eval result=if(like(Status,"%Completed%") OR like(Status,"%Pass%"), 1 , 0 )

---

An upvote would be appreciated if this reply helps and Accept the solution!

Get Updates on the Splunk Community!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...