- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
chadman
Path Finder
07-11-2016
07:39 AM
I would like to use an if statement to create a new field based on a value. Something like if field1=0 and field2=0, then create new field with value of 1.
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
gfreitas
Builder
07-11-2016
07:42 AM
Hi, you can use that. Follow an old question about it: https://answers.splunk.com/answers/10947/if-statement-with-multiple-tests.html
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
splunkton
Path Finder
07-11-2016
07:48 AM
If you want to use case statement this may helps
search | eval newfield=case(field1=field2,1,1=1,0)
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
twinspop
Influencer
07-11-2016
07:46 AM
| eval newfield=if(field1=0 and field2=0,1,null)
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
gfreitas
Builder
07-11-2016
07:42 AM
Hi, you can use that. Follow an old question about it: https://answers.splunk.com/answers/10947/if-statement-with-multiple-tests.html
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
chadman
Path Finder
07-11-2016
07:44 AM
Perfect! thanks!
