<?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 hide cloumns in the table the basis of multiselect choices? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-hide-cloumns-in-the-table-the-basis-of-multiselect/m-p/568977#M46723</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi Team, How to hide cloumns in the table the basis of multiselect choices?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, I have options in multiselect , Critical, high,medium and Low. When i select high and low from multiselect, critical and low column should be hide from table.Only I need to show High and low column and there respective total in table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please give me solution on this.Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Sep 2021 16:39:04 GMT</pubDate>
    <dc:creator>snehal</dc:creator>
    <dc:date>2021-09-29T16:39:04Z</dc:date>
    <item>
      <title>How to hide cloumns in the table the basis of multiselect choices?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-hide-cloumns-in-the-table-the-basis-of-multiselect/m-p/568977#M46723</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Team, How to hide cloumns in the table the basis of multiselect choices?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, I have options in multiselect , Critical, high,medium and Low. When i select high and low from multiselect, critical and low column should be hide from table.Only I need to show High and low column and there respective total in table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please give me solution on this.Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 16:39:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-hide-cloumns-in-the-table-the-basis-of-multiselect/m-p/568977#M46723</guid>
      <dc:creator>snehal</dc:creator>
      <dc:date>2021-09-29T16:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide cloumns in the table the basis of multiselect choices?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-hide-cloumns-in-the-table-the-basis-of-multiselect/m-p/569437#M46773</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231570"&gt;@snehal&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;We can implement this thing by making use of Splunk tokens. Can you refer to below sample code?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Sample Dashboard&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="time" token="time_token"&amp;gt;
      &amp;lt;label&amp;gt;Time range&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" token="severity_token"&amp;gt;
      &amp;lt;label&amp;gt;Select Severity&amp;lt;/label&amp;gt;
      &amp;lt;choice value="critical"&amp;gt;critical&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="high"&amp;gt;high&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="low"&amp;gt;low&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="medium"&amp;gt;medium&amp;lt;/choice&amp;gt;
      &amp;lt;initialValue&amp;gt;critical&amp;lt;/initialValue&amp;gt;
      &amp;lt;delimiter&amp;gt;,&amp;lt;/delimiter&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;My Table&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" | rename date_hour as high | rename date_month as low | rename date_year as critical | rename date_zone as medium | dedup $severity_token$ | table $severity_token$&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$time_token.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$time_token.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you find my solution fruitful, then an upvote would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Oct 2021 10:01:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-hide-cloumns-in-the-table-the-basis-of-multiselect/m-p/569437#M46773</guid>
      <dc:creator>jhanvidattani</dc:creator>
      <dc:date>2021-10-02T10:01:54Z</dc:date>
    </item>
  </channel>
</rss>

