<?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 How do I remove rows with null values on single/multivalue fields? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368545#M108622</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/4583iBA2A89C41570B01A/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;Hello Everyone&lt;/P&gt;

&lt;P&gt;I have a below search query that results me 4 column table. Process, RunID, StartTime and EndTime.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=xxxx
| eval Process=substr('source',1,5) 
| stats values(TaskStart) as StartTime, values(TaskEnd) as EndTime by RunID, Process 
| table RunID, StartTime, EndTime, Process
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/4584iD5F5376AB278248C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;BR /&gt;
I am unable to paste the exact results that I am getting as outputs, as they are scattering and would not be completely understandable.&lt;/P&gt;

&lt;P&gt;I have some of the columns where either RunID is missing or StartTime is missing and some of the StartTime fields have multiple values. I do not nee those rows/events where these fields are either empty or have multiple values.&lt;/P&gt;

&lt;P&gt;I need only the rows where all the 4 fields have values and all of them are single values, how do I retrieve that?&lt;/P&gt;

&lt;P&gt;Have attached 2 image files which shows what fields I need and what all the ones to be removed. Please help!&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Maria Arokiaraj&lt;/P&gt;</description>
    <pubDate>Tue, 20 Mar 2018 13:49:49 GMT</pubDate>
    <dc:creator>maria2691</dc:creator>
    <dc:date>2018-03-20T13:49:49Z</dc:date>
    <item>
      <title>How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368545#M108622</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/4583iBA2A89C41570B01A/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;Hello Everyone&lt;/P&gt;

&lt;P&gt;I have a below search query that results me 4 column table. Process, RunID, StartTime and EndTime.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=xxxx
| eval Process=substr('source',1,5) 
| stats values(TaskStart) as StartTime, values(TaskEnd) as EndTime by RunID, Process 
| table RunID, StartTime, EndTime, Process
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/4584iD5F5376AB278248C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;BR /&gt;
I am unable to paste the exact results that I am getting as outputs, as they are scattering and would not be completely understandable.&lt;/P&gt;

&lt;P&gt;I have some of the columns where either RunID is missing or StartTime is missing and some of the StartTime fields have multiple values. I do not nee those rows/events where these fields are either empty or have multiple values.&lt;/P&gt;

&lt;P&gt;I need only the rows where all the 4 fields have values and all of them are single values, how do I retrieve that?&lt;/P&gt;

&lt;P&gt;Have attached 2 image files which shows what fields I need and what all the ones to be removed. Please help!&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Maria Arokiaraj&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 13:49:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368545#M108622</guid>
      <dc:creator>maria2691</dc:creator>
      <dc:date>2018-03-20T13:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368546#M108623</link>
      <description>&lt;P&gt;Hey&lt;/P&gt;

&lt;P&gt;Consider first eliminate the null values of the RunID and StartTime and then remove the rows with mv&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; sourcetype=xxxx
 | eval Process=substr('source',1,5) 
 | stats values(TaskStart) as StartTime, values(TaskEnd) as EndTime by RunID, Process 
 | table RunID, StartTime, EndTime, Process
 | where isnotnull(RunID) AND isnotnull(StartTime)
 | eval mvc_RunID=mvcount(RunID), mvc_StartTime=mvcount(StartTime)
 | where mvc_RunID==1 AND mvc_StartTime==1
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Mar 2018 13:55:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368546#M108623</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-20T13:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368547#M108624</link>
      <description>&lt;P&gt;Hello @tiagofbmm, It doesn't work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;First the null fields are not removed and the mvcount is assigned to these MultiValue Columns also and they are also getting displayed in the final output.&lt;BR /&gt;
Earlier also I tried removing the nulls, but for some reason it is not removing.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 15:29:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368547#M108624</guid>
      <dc:creator>maria2691</dc:creator>
      <dc:date>2018-03-20T15:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368548#M108625</link>
      <description>&lt;P&gt;Can you give me the mvcount results ? &lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 15:32:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368548#M108625</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-20T15:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368549#M108626</link>
      <description>&lt;P&gt;1 is assigned to all the fields, even though they have multiple values (like the ones in attached screenshot).&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 15:56:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368549#M108626</guid>
      <dc:creator>maria2691</dc:creator>
      <dc:date>2018-03-20T15:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368550#M108627</link>
      <description>&lt;P&gt;According to your image &lt;STRONG&gt;"the-fields-i-do-not-need.jpg"&lt;/STRONG&gt;, those mvcount can't be 1 as it is clearly seen that you have multivalued fields there.&lt;/P&gt;

&lt;P&gt;Are we talking about some other fields? Because StartTime and EndTime have definitely mvcount greater than 0 in your snapshot&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:02:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368550#M108627</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-20T16:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368551#M108628</link>
      <description>&lt;P&gt;Hello @tiagofbmm&lt;/P&gt;

&lt;P&gt;I have executed your search query and the result I have extracted to a CSV and it's screenshot "result.jpeg" has been attached to the question now. Please refer to that. The count is coming as 1 only even though the EndTime field has multiple values.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:14:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368551#M108628</guid>
      <dc:creator>maria2691</dc:creator>
      <dc:date>2018-03-20T16:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368552#M108629</link>
      <description>&lt;P&gt;I think there may be some confusion between a field with multiple values with multivalued field.&lt;/P&gt;

&lt;P&gt;What your image result.jpg is showing are fields with multiple values, one value per row.&lt;/P&gt;

&lt;P&gt;What your the-fields-i-do-not-need.jpg is showing is multivalued fields. Many values for the same row!&lt;/P&gt;

&lt;P&gt;For instance, in the-fields-i-do-not-need.jpg, your row of  process CS02 has dozens of values in StartTime and EndTime. &lt;/P&gt;

&lt;P&gt;If you don't want that row, I guarantee you that excluding mvcount&amp;gt;1 will eliminate them. &lt;/P&gt;

&lt;P&gt;In the question you asked  "I need only the rows where all the 4 fields have values and all of them are single values, how do I retrieve that?" &lt;/P&gt;

&lt;P&gt;Using mvcount&amp;gt;1 will most definitely exclude rows with multivalued fields. &lt;/P&gt;

&lt;P&gt;More, after removing the rows with multivalued fields, the remaining ones (with single valued fields only), will now be ready to be excluded with the isnotnull, so maybe it should be done backwards and to all the fields&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  sourcetype=xxxx
  | eval Process=substr('source',1,5) 
  | stats values(TaskStart) as StartTime, values(TaskEnd) as EndTime by RunID, Process 
  | table RunID, StartTime, EndTime, Process
  | eval mvc_EndTime=mvcount(EndTime), mvc_StartTime=mvcount(StartTime)
  | where mvc_EndTime==1 AND mvc_StartTime==1
  | where isnotnull(RunID) AND isnotnull(StartTime)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:24:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368552#M108629</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-20T16:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368553#M108630</link>
      <description>&lt;P&gt;@maria2691 to remove events with null values in the field you can add the following in your base search&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=xxxx RUNID=* StartTime=*
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Can you please tell which row in the data provided in the question (screenshot) has multivalued StartTime?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:32:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368553#M108630</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-03-20T16:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368554#M108631</link>
      <description>&lt;P&gt;Thanks a lot @tiagofbmm&lt;BR /&gt;
It worked &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;BR /&gt;
However the last line does not seem to work. I receive one or 2 lines with RunID and StartTime as NULL. What could be the reason.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:42:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368554#M108631</guid>
      <dc:creator>maria2691</dc:creator>
      <dc:date>2018-03-20T16:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368555#M108632</link>
      <description>&lt;P&gt;@niketnilay solution for the first part is better:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   sourcetype=xxxx RUNID=* StartTime=* EndTime=* TaskStart=* Process=*
   | eval Process=substr('source',1,5) 
   | stats values(TaskStart) as StartTime, values(TaskEnd) as EndTime by RunID, Process 
   | table RunID, StartTime, EndTime, Process
   | eval mvc_EndTime=mvcount(EndTime), mvc_StartTime=mvcount(StartTime)
   | where mvc_EndTime==1 AND mvc_StartTime==1
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:48:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368555#M108632</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-20T16:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368556#M108633</link>
      <description>&lt;P&gt;Weird!! Still the same &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:52:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368556#M108633</guid>
      <dc:creator>maria2691</dc:creator>
      <dc:date>2018-03-20T16:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368557#M108634</link>
      <description>&lt;P&gt;Do an eval to and feed us back if the result of the isnull is true or false&lt;/P&gt;

&lt;P&gt;sourcetype=xxxx RUNID=* StartTime=* EndTime=* TaskStart=* Process=*&lt;BR /&gt;
    | eval Process=substr('source',1,5) &lt;BR /&gt;
    | stats values(TaskStart) as StartTime, values(TaskEnd) as EndTime by RunID, Process &lt;BR /&gt;
    | table RunID, StartTime, EndTime, Process&lt;BR /&gt;
    | eval mvc_EndTime=mvcount(EndTime), mvc_StartTime=mvcount(StartTime)&lt;BR /&gt;
    | where mvc_EndTime==1 AND mvc_StartTime==1&lt;BR /&gt;
    | eval isnullRunID=if(isnull(RunID),1,0),  isnullStartTime=if(isnull(StartTime),1,0)&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 18:35:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368557#M108634</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2020-09-29T18:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368558#M108635</link>
      <description>&lt;P&gt;The Result is false even though the fields are empty.&lt;BR /&gt;
Looks like Splunk does not consider these fields as NULL &lt;span class="lia-unicode-emoji" title=":face_with_open_mouth:"&gt;😮&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 17:01:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368558#M108635</guid>
      <dc:creator>maria2691</dc:creator>
      <dc:date>2018-03-20T17:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368559#M108636</link>
      <description>&lt;P&gt;Well so that is the reason. Maybe the results are "" and therefore not null. see if using the length is acceptable for your context and use case:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=xxxx RUNID= StartTime= EndTime= TaskStart= Process=*
| eval Process=substr('source',1,5) 
| stats values(TaskStart) as StartTime, values(TaskEnd) as EndTime by RunID, Process 
| table RunID, StartTime, EndTime, Process
| eval mvc_EndTime=mvcount(EndTime), mvc_StartTime=mvcount(StartTime)
| where mvc_EndTime==1 AND mvc_StartTime==1
| where len(RunID)&amp;gt;0 AND len(StartTime)&amp;gt;0
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Mar 2018 17:07:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368559#M108636</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-20T17:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368560#M108637</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;  sourcetype=xxxx
  | eval Process=substr('source',1,5) 
  | stats values(TaskStart) as StartTime, values(TaskEnd) as EndTime by RunID, Process 
  | eval StartTimeCount=mvcount(StartTime)
  | search StartTimeCount=1 AND RunID=* AND StartTime=* AND EndTime=* AND Process=*
  | table RunID, StartTime, EndTime, Process
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Mar 2018 17:16:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368560#M108637</guid>
      <dc:creator>kmaron</dc:creator>
      <dc:date>2018-03-20T17:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368561#M108638</link>
      <description>&lt;P&gt;If the answer/comments contributed to you, please don't forget to support by upvoting and accepting answer&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 17:41:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368561#M108638</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-20T17:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368562#M108639</link>
      <description>&lt;P&gt;@kmaron, unwanted events should be filtered upfront rather than later down the "pipe"line &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;BR /&gt;
So the following filter is better to be put in the main search as stated in the comment to the question: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  sourcetype=xxxxx RunID=* AND StartTime=* AND EndTime=* AND Process=*
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Mar 2018 17:50:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368562#M108639</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-03-20T17:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368563#M108640</link>
      <description>&lt;P&gt;@maria2691, you should inspect the data in Event Viewer and pull some sample in the Raw mode for us to assist you better. &lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 17:50:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368563#M108640</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-03-20T17:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows with null values on single/multivalue fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368564#M108641</link>
      <description>&lt;P&gt;I agree Process and RunID should be moved up however the StartTime and EndTime fields weren't created until after the stats command. So you are only half right. &lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 18:02:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-remove-rows-with-null-values-on-single-multivalue/m-p/368564#M108641</guid>
      <dc:creator>kmaron</dc:creator>
      <dc:date>2018-03-20T18:02:45Z</dc:date>
    </item>
  </channel>
</rss>

