<?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 to filter out specific rows in a table based on column values? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-filter-out-specific-rows-in-a-table-based-on-column/m-p/262659#M78859</link>
    <description>&lt;P&gt;Hello, &lt;/P&gt;

&lt;P&gt;I have a table like the one below, with a column containing repeated id numbers form one side and respective  messages for each id on the other side. I want to make a search which can show the id numbers that have only "Error" message as value and skip repeating ids that have Error and OK. Any help is much appreciated. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;col1       col2
11111      Error
11111      OK
55555      Error
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In the example, successful query should return 55555.&lt;/P&gt;</description>
    <pubDate>Mon, 05 Dec 2016 10:16:53 GMT</pubDate>
    <dc:creator>parizanov</dc:creator>
    <dc:date>2016-12-05T10:16:53Z</dc:date>
    <item>
      <title>How to filter out specific rows in a table based on column values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-filter-out-specific-rows-in-a-table-based-on-column/m-p/262659#M78859</link>
      <description>&lt;P&gt;Hello, &lt;/P&gt;

&lt;P&gt;I have a table like the one below, with a column containing repeated id numbers form one side and respective  messages for each id on the other side. I want to make a search which can show the id numbers that have only "Error" message as value and skip repeating ids that have Error and OK. Any help is much appreciated. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;col1       col2
11111      Error
11111      OK
55555      Error
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In the example, successful query should return 55555.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 10:16:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-filter-out-specific-rows-in-a-table-based-on-column/m-p/262659#M78859</guid>
      <dc:creator>parizanov</dc:creator>
      <dc:date>2016-12-05T10:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out specific rows in a table based on column values?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-filter-out-specific-rows-in-a-table-based-on-column/m-p/262660#M78860</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;base search | chart count over col1 by col2 | where col2=0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;OR&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;base search | eventstats values(col2) as status by col1 | where isnull(mvfind(status, "OK"))
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 05 Dec 2016 14:28:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-filter-out-specific-rows-in-a-table-based-on-column/m-p/262660#M78860</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-12-05T14:28:22Z</dc:date>
    </item>
  </channel>
</rss>

