Splunk Search

Splunk Conditional Statement

sagartiwari
New Member

I am using below query where my A (0012ABC) Component is an alphanumeric and B is a string (ab) but its considering A as numeric only

base query |eval details = if(A>1 AND B >1,A,"Alone")|dedup details| table details

want the results as if in my result set there is a duplicate value occurrence with respect to the combination of A and B then show me that value for A(duplicate values only.

E.g.
ColumnA Coulmn B
0001AB ab
0002AB pq
0001AB ab

expected result set
details
0001AB

0 Karma

jkat54
SplunkTrust
SplunkTrust

To convert the integer to a string, use eval

| eval a=tostring(a)

https://docs.splunk.com/Documentation/Splunk/8.0.3/SearchReference/Eval

0 Karma

richgalloway
SplunkTrust
SplunkTrust

It doesn't make sense to compare strings to integers.

To show ColumnA where there are duplicate combinations of ColumnA and ColumnB, use stats.

base query
| stats count by ColumnA ColumnB
| where count > 1
| table ColumnA
---
If this reply helps you, Karma would be appreciated.
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Index This | What travels the world but is also stuck in place?

April 2026 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...