<?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 do I hide rows if a field matches a certain value? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426147#M167040</link>
    <description>&lt;P&gt;Got this fixed by adding below code.&lt;/P&gt;

&lt;P&gt;|eval mytext = if((Name ="No" AND Exception="Exception" ), "ExcludeThisRecord","NoNeedToExclude")&lt;BR /&gt;
|search NOT mytext="ExcludeThisRecord"&lt;/P&gt;</description>
    <pubDate>Tue, 16 Oct 2018 07:10:33 GMT</pubDate>
    <dc:creator>jiaqya</dc:creator>
    <dc:date>2018-10-16T07:10:33Z</dc:date>
    <item>
      <title>How do I hide rows if a field matches a certain value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426143#M167036</link>
      <description>&lt;P&gt;i have 2 columns , one which has install status and the other which has the exception status.&lt;BR /&gt;
install status has yes/no AND exception status has "exception/no"&lt;/P&gt;

&lt;P&gt;if i find "exception" in this field, then i would like to hide all rows which contains that field=exception.&lt;/P&gt;

&lt;P&gt;is this possible?&lt;/P&gt;

&lt;P&gt;the pattern match value is coming from a drill down input. So if a user clicks on "Exception", i still need to show that, so cannot use the !="exception".&lt;/P&gt;</description>
      <pubDate>Mon, 15 Oct 2018 14:46:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426143#M167036</guid>
      <dc:creator>jiaqya</dc:creator>
      <dc:date>2018-10-15T14:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide rows if a field matches a certain value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426144#M167037</link>
      <description>&lt;P&gt;Assuming you are extracting that field already, you can just filter that out in your base search.  For example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=YOUR_INDEX sourcetype=YOUR_SOURCETYPE YOUR_FIELD!="exception" |
table _time YOUR_FIELD ANOTHER_FIELD
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Making assumptions on your search in general, but that would be the easiest way. &lt;/P&gt;</description>
      <pubDate>Mon, 15 Oct 2018 15:14:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426144#M167037</guid>
      <dc:creator>kmorris_splunk</dc:creator>
      <dc:date>2018-10-15T15:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide rows if a field matches a certain value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426145#M167038</link>
      <description>&lt;P&gt;Morris, thanks for your response.&lt;/P&gt;

&lt;P&gt;the pattern match value is coming from an drilldown input.&lt;BR /&gt;
so if user clicks on "Exception" i still need to show that, so cannot use the !="exception".&lt;/P&gt;

&lt;P&gt;i am not able to explain the scenario here , but ill try.&lt;BR /&gt;
i have 2 columns , one which has install status and the other which has the exception status.&lt;BR /&gt;
install status has yes/no  AND exception status has "exception/no"&lt;/P&gt;

&lt;P&gt;so if input value is yes, i get all the yes, irrespective of exception status, bcoz yes means installed, so thats ok&lt;BR /&gt;
if input values is exception, then irrespective of install status, it will show exception, this is also ok&lt;BR /&gt;
now problem i have is with "no", if install status is "no" and exception status is "exception", then i would like to exclude the exception systems out of "no" click report.&lt;/P&gt;

&lt;P&gt;so i was looking at some solution , which after the report output can exclude exception="exception" rows in case "install status"="no"&lt;/P&gt;

&lt;P&gt;hope the problem is explained..&lt;BR /&gt;
sorry for long write up.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Oct 2018 15:38:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426145#M167038</guid>
      <dc:creator>jiaqya</dc:creator>
      <dc:date>2018-10-15T15:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide rows if a field matches a certain value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426146#M167039</link>
      <description>&lt;P&gt;Think this can be done with search not, can any of you provide me a syntax where in i can do a search not when a column value=matches a pattern. thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2018 05:30:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426146#M167039</guid>
      <dc:creator>jiaqya</dc:creator>
      <dc:date>2018-10-16T05:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I hide rows if a field matches a certain value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426147#M167040</link>
      <description>&lt;P&gt;Got this fixed by adding below code.&lt;/P&gt;

&lt;P&gt;|eval mytext = if((Name ="No" AND Exception="Exception" ), "ExcludeThisRecord","NoNeedToExclude")&lt;BR /&gt;
|search NOT mytext="ExcludeThisRecord"&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2018 07:10:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-hide-rows-if-a-field-matches-a-certain-value/m-p/426147#M167040</guid>
      <dc:creator>jiaqya</dc:creator>
      <dc:date>2018-10-16T07:10:33Z</dc:date>
    </item>
  </channel>
</rss>

