<?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 to disable drilldown for the last row of the table ? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469321#M30821</link>
    <description>&lt;P&gt;@pgadhari&lt;/P&gt;

&lt;P&gt;Can you please try this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;           
  &amp;lt;condition match="match('click.value',&amp;amp;quot;Average&amp;amp;quot;)"&amp;gt;

  &amp;lt;/condition&amp;gt;
  &amp;lt;condition&amp;gt;
    &amp;lt;set token="tok_sas_cat"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
    &amp;lt;unset token="tok_fm_cat"&amp;gt;&amp;lt;/unset&amp;gt;
    &amp;lt;unset token="tok_al_cat"&amp;gt;&amp;lt;/unset&amp;gt;
  &amp;lt;/condition&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 01 Jun 2020 15:18:44 GMT</pubDate>
    <dc:creator>kamlesh_vaghela</dc:creator>
    <dc:date>2020-06-01T15:18:44Z</dc:date>
    <item>
      <title>how to disable drilldown for the last row of the table ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469317#M30817</link>
      <description>&lt;P&gt;In my table the last row is the "Average" of all the columns which is calculated based on the query. I want to disable the drilldown click for it. how it can be done ? Attaching image for your reference.&lt;/P&gt;
&lt;P&gt;Below is the snippet of query I am using for the table :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;| transpose header_field=Category 10 | addtotals | eval Average=round(Total/8,0)| fields - Total | table column "Availability Management" "Identity Access &amp;amp; AD" "Information Security Management" "Monitoring &amp;amp; Analysis" "Server &amp;amp; Storage" "Service Asset &amp;amp; Configuration Mangement" "Service Management" Others Average | transpose header_field=column 25 | rename column as Category
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9020iE2E4A1462CD58060/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2020 23:42:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469317#M30817</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2020-06-07T23:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable drilldown for the last row of the table ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469318#M30818</link>
      <description>&lt;P&gt;@pgadhari &lt;/P&gt;

&lt;P&gt;You can ignore the click using the below code. Can you please try this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
    &amp;lt;condition match="match('click.value',&amp;amp;quot;Average&amp;amp;quot;)"&amp;gt;
        &amp;lt;!--  Intentionally Kept Blank--&amp;gt;
    &amp;lt;/condition&amp;gt;
    &amp;lt;!-- Put here other values's condition--&amp;gt;
    &amp;lt;!-- OR put single condition for all values --&amp;gt;
    &amp;lt;condition&amp;gt;
    &amp;lt;/condition&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 06:59:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469318#M30818</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2020-06-01T06:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable drilldown for the last row of the table ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469319#M30819</link>
      <description>&lt;P&gt;@kamlesh_vaghela - when I try to add that conditional-drilldown, it gives following warning :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;invalid child="set" is not allowed in node=conditional-drilldown"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;below is my XML code, I am already using  for that row (table)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="tok_sas_cat"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
          &amp;lt;unset token="tok_fm_cat"&amp;gt;&amp;lt;/unset&amp;gt;
          &amp;lt;unset token="tok_al_cat"&amp;gt;&amp;lt;/unset&amp;gt;
          &amp;lt;condition match="match('click.value',&amp;amp;quot;Average&amp;amp;quot;)"&amp;gt;

          &amp;lt;/condition&amp;gt;
          &amp;lt;!-- Put here other values's condition--&amp;gt;
          &amp;lt;!-- OR put single condition for all values --&amp;gt;
          &amp;lt;condition&amp;gt;
          &amp;lt;/condition&amp;gt;
 &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Also, do I need to put any values where you have written "Put here other value's condition" ??&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 09:42:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469319#M30819</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2020-06-01T09:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable drilldown for the last row of the table ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469320#M30820</link>
      <description>&lt;P&gt;some how the set token word did not come. I am already using "set" token in my drilldown option, due to which it is not allowing to put the conditional-drilldown ? please advise ?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 09:57:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469320#M30820</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2020-06-01T09:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable drilldown for the last row of the table ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469321#M30821</link>
      <description>&lt;P&gt;@pgadhari&lt;/P&gt;

&lt;P&gt;Can you please try this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;           
  &amp;lt;condition match="match('click.value',&amp;amp;quot;Average&amp;amp;quot;)"&amp;gt;

  &amp;lt;/condition&amp;gt;
  &amp;lt;condition&amp;gt;
    &amp;lt;set token="tok_sas_cat"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
    &amp;lt;unset token="tok_fm_cat"&amp;gt;&amp;lt;/unset&amp;gt;
    &amp;lt;unset token="tok_al_cat"&amp;gt;&amp;lt;/unset&amp;gt;
  &amp;lt;/condition&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Jun 2020 15:18:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469321#M30821</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2020-06-01T15:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable drilldown for the last row of the table ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469322#M30822</link>
      <description>&lt;P&gt;yes it worked. That was easy. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thank you very much.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 17:08:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-disable-drilldown-for-the-last-row-of-the-table/m-p/469322#M30822</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2020-06-01T17:08:56Z</dc:date>
    </item>
  </channel>
</rss>

