<?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 can I remove or hide a column in a table? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116438#M30920</link>
    <description>&lt;P&gt;Not a problem!&lt;/P&gt;</description>
    <pubDate>Fri, 25 Oct 2013 23:20:04 GMT</pubDate>
    <dc:creator>ShaneNewman</dc:creator>
    <dc:date>2013-10-25T23:20:04Z</dc:date>
    <item>
      <title>How can I remove or hide a column in a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116435#M30917</link>
      <description>&lt;P&gt;Here is my query; I'm trying not to have the "Total_Datapoints" column show up in the table since it has the same value for every row.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;report=hw_use_by_jobs 
orig_host="myhost" |
chart 
   p50(PercentProcessorTime_max) as "p50 CPU", 
   stdev(PercentProcessorTime_max) as "CPU stdev",
   count as DataPoints
over ConcurrentTasks |
eventstats sum(DataPoints) as Total_DataPoints  |
eval "Percent of Time"=100*DataPoints/Total_DataPoints 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I've experimented with calculating the Total_Datapoints value before sending the results to the table, but this has not worked out and I'm not even sure if that's the right overall approach. &lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2013 23:06:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116435#M30917</guid>
      <dc:creator>travis_bear</dc:creator>
      <dc:date>2013-10-25T23:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can I remove or hide a column in a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116436#M30918</link>
      <description>&lt;P&gt;Pretty easy &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;At the very end:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| fields &amp;lt;list of fields you want to be displayed (no commas)&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Oct 2013 23:13:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116436#M30918</guid>
      <dc:creator>ShaneNewman</dc:creator>
      <dc:date>2013-10-25T23:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: How can I remove or hide a column in a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116437#M30919</link>
      <description>&lt;P&gt;That worked!  Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2013 23:16:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116437#M30919</guid>
      <dc:creator>travis_bear</dc:creator>
      <dc:date>2013-10-25T23:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: How can I remove or hide a column in a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116438#M30920</link>
      <description>&lt;P&gt;Not a problem!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2013 23:20:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116438#M30920</guid>
      <dc:creator>ShaneNewman</dc:creator>
      <dc:date>2013-10-25T23:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I remove or hide a column in a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116439#M30921</link>
      <description>&lt;P&gt;What about if you want a field hidden in the query, but you want to use those values in the drilldown?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2016 19:36:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116439#M30921</guid>
      <dc:creator>vicvaughan</dc:creator>
      <dc:date>2016-03-29T19:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can I remove or hide a column in a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116440#M30922</link>
      <description>&lt;P&gt;This solution is not going to work for stats where column names are dynamic, for example stats table produced by timechart. I would rather use ....|fields -column_name_to_exclude&lt;BR /&gt;
BTW, the question is a duplicate of &lt;A href="https://answers.splunk.com/answers/48466/remove-column-name-from-table-result.html" target="_blank"&gt;https://answers.splunk.com/answers/48466/remove-column-name-from-table-result.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:52:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-remove-or-hide-a-column-in-a-table/m-p/116440#M30922</guid>
      <dc:creator>rafajot</dc:creator>
      <dc:date>2020-09-29T21:52:16Z</dc:date>
    </item>
  </channel>
</rss>

