Splunk Search

how to set null value ?

WXY
Path Finder

If the field value is null, the value is null, and if it is not controlled, it is still the original value

I want to get a field value ,if it is null ,I set it null,if not ,I hope it still the original value

I use :

index = abc_text  | eval Codelocation = if(isnull(Codelocation), "null",Codelocation)|stats  max(_time) as _time  values(Codelocation) as codelocation by source

It did not achieve the desired effect.

Tags (3)
0 Karma

zihenggong
Engager

use null() instead of "null"

renjith_nair
Legend

@WXY, just a clarification - if the value is null why do you want to set it again to null ? Do you mean you want to convert "space" to null.

Anyway try this |eval Codelocation = if(isnull(Codelocation), null(),Codelocation)

---
What goes around comes around. If it helps, hit it with Karma 🙂
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...