<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to edit my eval syntax to create a new field for null values? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252090#M75386</link>
    <description>&lt;P&gt;It seems I can make the changes and fill in the null values.  I just can't get my eval to read those values to form the "Powered Off" field.  It just shows all 0's.  It's like it won't read the null values I have filled.&lt;/P&gt;

&lt;P&gt;Internal Ping Time  External Ping Time  Offline Powered Off _time&lt;BR /&gt;
md                              md           500                     0                   2016-07-07T12:00:00.000-0500&lt;BR /&gt;
md                              md           500                 0                   2016-07-07T12:01:00.000-0500&lt;BR /&gt;
md                              md           500                     0                   2016-07-07T12:02:00.000-0500&lt;BR /&gt;
&lt;STRONG&gt;md                                md           md                  0                   2016-07-07T12:03:00.000-0500&lt;BR /&gt;
md                              md           md                  0                   2016-07-07T12:04:00.000-0500&lt;/STRONG&gt;&lt;BR /&gt;
md                              48           md                  0                   2016-07-07T12:05:00.000-0500&lt;BR /&gt;
md                              73           md                  0                   2016-07-07T12:06:00.000-0500&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2016 16:58:42 GMT</pubDate>
    <dc:creator>chadman</dc:creator>
    <dc:date>2016-07-13T16:58:42Z</dc:date>
    <item>
      <title>How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252075#M75371</link>
      <description>&lt;P&gt;I'm trying to create a new field for some null values.  I tried this, but it still shows the null value.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;eval Reboot=if(internal_time=null AND careers_time=null,100,null)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;am I missing something?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 16:42:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252075#M75371</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-11T16:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252076#M75372</link>
      <description>&lt;P&gt;Try like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;eval Reboot=if(isnull(internal_time) AND isnull(careers_time),100,null())
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Jul 2016 16:45:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252076#M75372</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-07-11T16:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252077#M75373</link>
      <description>&lt;P&gt;Use the isNull and null() functions instead:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;eval Reboot=if(isNull(internal_time) AND isNull(careers_time),100, null())
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Jul 2016 16:46:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252077#M75373</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2016-07-11T16:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252078#M75374</link>
      <description>&lt;P&gt;Thanks guys, but that is not working.  So I might not have given you guys all the info.  When I said null, I mean there is no event.  My Splunk data is grabbed from a csv file that is updated every min.  While a machine is powered down or rebooting that log does not get updated.  When I chart info it just show's blanks on a bar.  In this case I want to show a value of 100 when that happens.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 16:52:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252078#M75374</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-11T16:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252079#M75375</link>
      <description>&lt;P&gt;I guess you want to use the fillnull command for that. &lt;/P&gt;

&lt;P&gt;See the link:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/6.4.1/SearchReference/Fillnull"&gt;https://docs.splunk.com/Documentation/Splunk/6.4.1/SearchReference/Fillnull&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Or maybe eval with coalesce&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 17:02:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252079#M75375</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2016-07-11T17:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252080#M75376</link>
      <description>&lt;P&gt;In that case use the filldown method OR streamstats to fill the values for the periods when no data is available. &lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Filldown"&gt;http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Filldown&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/6.4.1/SearchReference/Streamstats"&gt;https://docs.splunk.com/Documentation/Splunk/6.4.1/SearchReference/Streamstats&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 17:05:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252080#M75376</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-07-11T17:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252081#M75377</link>
      <description>&lt;P&gt;It really, really, really, really, really, really, really helps to see your &lt;EM&gt;entire&lt;/EM&gt; search.  I assume that you are using &lt;CODE&gt;timechart&lt;/CODE&gt; so all you need to do is call &lt;CODE&gt;fillnull&lt;/CODE&gt; for the last field on the before the next pipe.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 00:58:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252081#M75377</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2016-07-12T00:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252082#M75378</link>
      <description>&lt;P&gt;Sorry, here is my entire search.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="search1" host=host1  | eval Offline=if(internal_time="NA" AND careers_time="NA",500,NA)  | timechart avg(internal_time) as "Internal Ping Time" avg(careers_time) as "External Ping Time" avg(Offline) 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I still cant get the sections with no data to fill&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 12:50:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252082#M75378</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-12T12:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252083#M75379</link>
      <description>&lt;P&gt;This looked like the right format, but still not seeing data.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="search1" host=host1  | eval Offline=if(internal_time="NA" AND careers_time="NA",500,NA) | fillnull value="nodata" internal_time careers_time |  eval NoPower=if(internal_time="nodata" AND careers_time="nodata",250,NA) |timechart avg(internal_time) as "Internal Ping Time" avg(careers_time) as "External Ping Time" avg(Offline) as Offline avg(NoPower) as NoPower
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Jul 2016 13:01:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252083#M75379</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-12T13:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252084#M75380</link>
      <description>&lt;P&gt;OK, like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; sourcetype="search1" host=host1 | timechart avg(internal_time) AS "Internal Ping Time" avg(careers_time) AS "External Ping Time" avg(Offline)
| foreach "* *" [ eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;=if((&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;=0), 100, $&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;$) ]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or maybe this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; sourcetype="search1" host=host1 | timechart avg(internal_time) AS "Internal Ping Time" avg(careers_time) AS "External Ping Time" avg(Offline)
| eval Reboot=if("Internal Ping Time"=0 AND "External Ping Time"=0,100, 0)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Jul 2016 13:33:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252084#M75380</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2016-07-12T13:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252085#M75381</link>
      <description>&lt;P&gt;the foreach comes up with an unknown search command error.  The other search gives an error for the compares unless I put the 0 in quotes.  It will do the search, but I still don't have a value for the missing data&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 14:18:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252085#M75381</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-12T14:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252086#M75382</link>
      <description>&lt;P&gt;There is something VERY big missing in the explanation of your situation so rather than give you a direction solution (many have tried and failed), I will give you the understanding that you need to craft your own.&lt;/P&gt;

&lt;P&gt;Here is how &lt;CODE&gt;timechart&lt;/CODE&gt; works.  It will create an event for EVERY aggregate time value (in your case, since you did not tell us your &lt;CODE&gt;timepicker&lt;/CODE&gt; values and you did not specify a &lt;CODE&gt;span=&lt;/CODE&gt; value, we cannot know the spacing particulars) whether or not there is a value for anything else.  If there is not a value for any time slot, it will simply not have a value (null).  Take this base search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| gentimes [|noop|stats count AS end|eval end=now() | eval start = end - 4*60*60*24
| eval start=strftime(start, "%m/%d/%Y") | eval end=strftime(end, "%m/%d/%Y")
| format "" "" "" "" "" "" | return $search]
| eval _time = starttime | table _time
| streamstats count AS X
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It gives events like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time         X
2016-07-08  1
2016-07-09  2
2016-07-10  3
2016-07-11  4
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Now that we have sample events that anybody can use on any system, we can add a basic &lt;CODE&gt;timechart&lt;/CODE&gt; with additional eval like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart span=1d avg(X) AS avgX avg(Y) AS avgY
| eval avgZ = (avgX + avgY)/2
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;When we run for the &lt;CODE&gt;Last 7 days&lt;/CODE&gt; then we get this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time          avgX          avgY
2016-07-05
2016-07-06
2016-07-07
2016-07-08  1.000000
2016-07-09  2.000000
2016-07-10  3.000000
2016-07-11  4.000000
2016-07-12 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;All the desired fields are broken: &lt;CODE&gt;avgX&lt;/CODE&gt; had gaps, &lt;CODE&gt;avgY&lt;/CODE&gt; has no data and &lt;CODE&gt;avgZ&lt;/CODE&gt; doesn't exist at all.&lt;BR /&gt;
We can force any null values to obtain any specific value we like with the &lt;CODE&gt;fillnull&lt;/CODE&gt; command.&lt;BR /&gt;
If we insert it between the last 2 lines like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart span=1d avg(X) AS avgX avg(Y) AS avgY
| fillnull value=0 avgX avgY | rename Comment AS "&amp;lt;-------THIS LINE IS INSERTED"
| eval avgZ = (avgX + avgY)/2
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then we get all fields with data:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time       avgX  avgY  avgZ
2016-07-05  0   0   0
2016-07-06  0   0   0
2016-07-07  0   0   0
2016-07-08  1   0   0.5
2016-07-09  2   0   1
2016-07-10  3   0   1.5
2016-07-11  4   0   2
2016-07-12  0   0   0
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Jul 2016 16:35:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252086#M75382</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2016-07-12T16:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252087#M75383</link>
      <description>&lt;P&gt;Thanks for that!  I think I'm close.  I think I have the fillnull working now.  I then use that data to try to create my "Power Off" field.  It's only showing 0's.  I can see the "Internal Ping Time" and "External Ping Time" both = "md"&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="search1" host=host1  | eval Offline=if(internal_time="NA" AND careers_time="NA",500,"NA")  | timechart span=1m avg(internal_time) as "Internal Ping Time" avg(careers_time) as "External Ping Time" avg(Offline) as Offline | fillnull value="md" "Internal Ping Time" "External Ping Time" | eval "Powered Off"=if("Internal Ping Time"="md" AND "External Ping Time"="md",250,0) | fields "Internal Ping Time" "External Ping Time" Offline "Powered Off"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Jul 2016 19:30:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252087#M75383</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-12T19:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252088#M75384</link>
      <description>&lt;P&gt;So I have this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=search1 host=host1  | eval Offline=if(internal_time="NA" AND careers_time="NA",500,"NA")  | timechart span=1m avg(internal_time) as "Internal Ping Time" avg(careers_time) as "External Ping Time" avg(Offline) as Offline | fillnull value="md" "Internal Ping Time" "External Ping Time" Offline | eval "Powered Off"=if("Internal Ping Time"="md" AND "External Ping Time"="md" AND Offline="md",400,0) | fields "Internal Ping Time" "External Ping Time" Offline "Powered Off"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I get output that looks like:&lt;/P&gt;

&lt;P&gt;1 7/7/16 12:00:00.000 PM md md 500.000000 0 &lt;BR /&gt;
2 7/7/16 12:01:00.000 PM md md 500.000000 0 &lt;BR /&gt;
3 7/7/16 12:02:00.000 PM md md 500.000000 0 &lt;BR /&gt;
4 7/7/16 12:03:00.000 PM md md md 0    Here is where I think I should see 250&lt;BR /&gt;
5 7/7/16 12:04:00.000 PM md md md 0   Here is where I think I should see 250&lt;BR /&gt;
6 7/7/16 12:05:00.000 PM md 48.000000 md 0 &lt;BR /&gt;
7 7/7/16 12:06:00.000 PM md 73.000000 md 0 &lt;BR /&gt;
8 7/7/16 12:07:00.000 PM md 48.000000 md 0 &lt;BR /&gt;
9 7/7/16 12:08:00.000 PM md 80.000000 md 0 &lt;BR /&gt;
10 7/7/16 12:09:00.000 PM 78.000000 md md 0 &lt;BR /&gt;
11 7/7/16 12:10:00.000 PM md md md 0 &lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 19:47:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252088#M75384</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-12T19:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252089#M75385</link>
      <description>&lt;P&gt;You need to add the field names (header line on top) and format the spacing so we can make sense of your output.  Be sure to lead with a blank line and have 4 spaces in front of every line.  In any case, there really isn't anything more to say.  Just work your way slowly through it.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2016 16:13:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252089#M75385</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2016-07-13T16:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252090#M75386</link>
      <description>&lt;P&gt;It seems I can make the changes and fill in the null values.  I just can't get my eval to read those values to form the "Powered Off" field.  It just shows all 0's.  It's like it won't read the null values I have filled.&lt;/P&gt;

&lt;P&gt;Internal Ping Time  External Ping Time  Offline Powered Off _time&lt;BR /&gt;
md                              md           500                     0                   2016-07-07T12:00:00.000-0500&lt;BR /&gt;
md                              md           500                 0                   2016-07-07T12:01:00.000-0500&lt;BR /&gt;
md                              md           500                     0                   2016-07-07T12:02:00.000-0500&lt;BR /&gt;
&lt;STRONG&gt;md                                md           md                  0                   2016-07-07T12:03:00.000-0500&lt;BR /&gt;
md                              md           md                  0                   2016-07-07T12:04:00.000-0500&lt;/STRONG&gt;&lt;BR /&gt;
md                              48           md                  0                   2016-07-07T12:05:00.000-0500&lt;BR /&gt;
md                              73           md                  0                   2016-07-07T12:06:00.000-0500&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2016 16:58:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252090#M75386</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-13T16:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my eval syntax to create a new field for null values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252091#M75387</link>
      <description>&lt;P&gt;The bold lines should not have a 0 and should show 400&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2016 16:59:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-eval-syntax-to-create-a-new-field-for-null-values/m-p/252091#M75387</guid>
      <dc:creator>chadman</dc:creator>
      <dc:date>2016-07-13T16:59:21Z</dc:date>
    </item>
  </channel>
</rss>

