Splunk Search

Different values in column between two rows

vb1612
New Member

Hi , I am having data like

               Col1                Col2(created from values())

row 1 X A B C
row 2 Y A B

how to get column with value C as its unique value in col2

Thanks

Tags (1)
0 Karma
1 Solution

nareshinsvu
Builder

Not very clear. Do you want seperate row for "C" ?

<your base search>| makemv delim=" " col2|mvexpand col2

View solution in original post

0 Karma

nareshinsvu
Builder

Not very clear. Do you want seperate row for "C" ?

<your base search>| makemv delim=" " col2|mvexpand col2
0 Karma

vb1612
New Member

as A B already there in one row in single column , so want difference between two rows which is C

0 Karma

nareshinsvu
Builder

Not sure if this helps. You can use the logic according to your requirements. Hope it helps

<your base search>| makemv delim=" " col2|mvexpand col2 | stats count(col2) as count by col2 | eval new_column=if((count=1),col2,"") | table new_column
0 Karma

vb1612
New Member

to clarify

col1 having X
Col2 having A B C (multivalues)

second row col2 A B

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...