Splunk Search

How to use conditional comparison of two field values from the same event to populate a third field

373782073
Explorer

Hi all

I am trying to use the eval case function to populate a new field based on the values of 2 existing fields that meet certain string value matching.

For example:
| eval ValueY=case(Status == StringValue_A) AND (Priority == StringValue_B)), "StringValue_C")
| table Status Priority ValueY

So as you can see the above is not working and was wondering if anyone has tried to do something similar so that the exact combination of StringValueA and StringValue_B can be used to define if StringValue_C is used to populate a third column on a table.

Hope it makes sense
Many thanks

1 Solution

373782073
Explorer

I found that the following worked.

| eval ValueY=case(
match(Status, "StringValue_A") AND Priority == "StringValue_B", "StringValue_C")
| table Status Priority ValueY

thanks anyway

View solution in original post

373782073
Explorer

I found that the following worked.

| eval ValueY=case(
match(Status, "StringValue_A") AND Priority == "StringValue_B", "StringValue_C")
| table Status Priority ValueY

thanks anyway

vnravikumar
Champion

Hi

Try like

| makeresults 
| eval col1="one",col2="two" 
| eval col3=if(col1=="one" AND col2=="two","matched","unmatched")

OR

| makeresults 
| eval col1="one",col2="two" 
| eval col3=case(col1=="one" AND col2=="two","matched",1=1,"unmatched")
Get Updates on the Splunk Community!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...