Splunk Search

How do you display the values that are present in field A but not in Field B(Uncommon field values)?

pavanae
Builder

I have a query which gives the results as follows

April May June July
A G G K
B A H L
C B I I

Now, how do I get the values that are present in April but not in May and vice versa?

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@pavanae

Can you please try this?

YOUR_SEARCH | eval N=1 
| accum N 
| eventstats values(May) as May_All values(April) as April_All 
| eval April_in=mvfind(May_All,April), May_in=mvfind(April_All,May) | where (isnull(April_in) OR isnull(May_in)) | table April May June July

Sample Search:

| makeresults 
| eval April="A",May="G",June="G",July="K" 
| append 
    [| makeresults 
    | eval April="B",May="A",June="H",July="L" ] 
| append 
    [| makeresults 
    | eval April="C",May="B",June="I",July="I" ] 
| eval N=1 
| accum N 
| eventstats values(May) as May_All values(April) as April_All 
| eval April_in=mvfind(May_All,April), May_in=mvfind(April_All,May) | where (isnull(April_in) OR isnull(May_in)) | table April May June July

Thanks

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...