<?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: Dashboard conditional drill down with form Input token (not-field/series) in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298518#M40629</link>
    <description>&lt;P&gt;thank you very much for the quick answer Rjthibod&lt;/P&gt;

&lt;P&gt;meanwhile it took me some time to try, but I couldn't make it work.&lt;BR /&gt;
I have an empty new tab (about:blank) in both case database drop-down is selected or * by default value.&lt;/P&gt;

&lt;P&gt;I am inserting below the Database drop-down code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="dropdown" token="field_db_name"&amp;gt;
      &amp;lt;label&amp;gt;Database&amp;lt;/label&amp;gt;
      &amp;lt;prefix&amp;gt;"&amp;lt;/prefix&amp;gt;
      &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;DB_NAME&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;DB_NAME&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;`mc_vln` | DEDUP DB_NAME | FIELDS DB_NAME&amp;lt;/query&amp;gt;
        &amp;lt;earliest&amp;gt;0&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;&amp;lt;/latest&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;set token="db_name_no_quotes"&amp;gt;$value$&amp;lt;/set&amp;gt;
        &amp;lt;unset token="form.field_scan_run_id"&amp;gt;&amp;lt;/unset&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And also my dashboard - as I did apply the match function solution:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Health by Severity&amp;lt;/title&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;`mc_vln` 
| search DB_NAME=$field_db_name$ 
| stats
earliest(_time) as SCAN_DT_START
count(eval(SEVERITY_ID=1 AND CTRL_FIND_ID=0)) as High_Correct,
count(eval(SEVERITY_ID=1 AND CTRL_FIND_ID=1)) as High_Finding,
count(eval(SEVERITY_ID=2 AND CTRL_FIND_ID=0)) as Medium_Correct,
count(eval(SEVERITY_ID=2 AND CTRL_FIND_ID=1)) as Medium_Finding,
count(eval(SEVERITY_ID=3 AND CTRL_FIND_ID=0)) as Low_Correct,
count(eval(SEVERITY_ID=3 AND CTRL_FIND_ID=1)) as Low_Finding
by SCAN_ID
| eval HRT_High   = round(100 * High_Correct / (High_Correct+High_Finding), 2) 
| eval HRT_Medium = round(100 * Medium_Correct / (Medium_Correct+Medium_Finding), 2) 
| eval HRT_Low    = round(100 * Low_Correct / (Low_Correct+Low_Finding), 2) 
| table SCAN_DT_START SCAN_ID HRT_High HRT_Medium HRT_Low
| sort SCAN_DT_START 
| fields - SCAN_DT_START
| rename SCAN_ID as "Scan Id" HRT_High as High HRT_Medium as Medium HRT_Low as Low&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$field1.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$field1.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;collapsed&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;line&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.labels"&amp;gt;["High","Medium","Low"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.placement"&amp;gt;right&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.seriesColors"&amp;gt;[0xFA4343,0xFFA042,0x00579F]&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.masterLegend"&amp;gt;&amp;lt;/option&amp;gt;

              &amp;lt;drilldown target="blank"&amp;gt;

               &amp;lt;condition match="isnull('field_db_name')"&amp;gt;
                 &amp;lt;link&amp;gt;scan_data?form.field_db_name=$db_name_no_quotes$&amp;amp;amp;form.field_scan_id=$row.Scan Id$&amp;amp;amp;form.field_severity_name=$click.name2$&amp;lt;/link&amp;gt;
               &amp;lt;/condition&amp;gt;

               &amp;lt;condition match="isnotnull('field_db_name')"&amp;gt;
                 &amp;lt;link&amp;gt;
                   &amp;lt;link&amp;gt;scan_compare_02?form.field_db_name=$db_name_no_quotes$&amp;amp;amp;form.field_scan_run_id=$row.Scan Id$&amp;lt;/link&amp;gt;
                 &amp;lt;/link&amp;gt;
               &amp;lt;/condition&amp;gt;

             &amp;lt;/drilldown&amp;gt;

      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If I renounce conditioning - ie. use only drill-down to scan_data form whenever the database is selected or not - everything is OK. I do reach the scan_data form with correct variables in the URL.&lt;/P&gt;

&lt;P&gt;Clarification&lt;BR /&gt;
the db_name_no_quotes token is used and set inside the field_db_name declaration to have it without quotes in the drill URL&lt;/P&gt;

&lt;P&gt;May be I have missed something from your idea during my setup ?&lt;/P&gt;

&lt;P&gt;thank you very much&lt;BR /&gt;
best regards&lt;BR /&gt;
Altin&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 15:25:19 GMT</pubDate>
    <dc:creator>altink</dc:creator>
    <dc:date>2020-09-29T15:25:19Z</dc:date>
    <item>
      <title>Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298516#M40627</link>
      <description>&lt;P&gt;Dear All&lt;/P&gt;

&lt;P&gt;i came around a lot and did not find a solution on the following:&lt;/P&gt;

&lt;P&gt;How to have a dashboard drill-down conditionally to two (2) destination forms, depending not on field/series clicked,&lt;BR /&gt;
but on a simple form drop-down input (token), present in form and named db_name.&lt;/P&gt;

&lt;P&gt;Not the common syntax:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
     &amp;lt;condition field="A"&amp;gt;
       &amp;lt;link&amp;gt; ................&amp;lt;/link&amp;gt;
     &amp;lt;/condition&amp;gt;
    &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But something like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;drilldown&amp;gt;
     &amp;lt;condition $db_name$ = NULL&amp;gt;
       &amp;lt;link&amp;gt; .......form_01.........&amp;lt;/link&amp;gt;
     &amp;lt;/condition&amp;gt;
     &amp;lt;condition $db_name$ &amp;lt;&amp;gt; NULL&amp;gt;
       &amp;lt;link&amp;gt; .......form_02.........&amp;lt;/link&amp;gt;
     &amp;lt;/condition&amp;gt;
    &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;So it is supposed to call two different drilldown target forms, depending on if the input db_name is set or empty (* default)&lt;BR /&gt;
I hope what I am looking for is possible, as in the many docs and answers I browsed saw only field/series for such.&lt;/P&gt;

&lt;P&gt;Any help will be deeply appreciated.&lt;/P&gt;

&lt;P&gt;thank you very much&lt;BR /&gt;
Altin&lt;/P&gt;

&lt;P&gt;PS. I think there is an alternative. Making two identical dashboards, only one shows at a time, depending on the db_name inputted or empty. Each one drills unconditionally to its target. But it would not be practical for more then a few forms, I wish I could see this through in a better way.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 13:10:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298516#M40627</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2017-08-23T13:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298517#M40628</link>
      <description>&lt;P&gt;Yes, this is easily done in Splunk 6.3 or newer.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;drilldown&amp;gt;
          &amp;lt;condition match="isnull('db_name')"&amp;gt;
            &amp;lt;link&amp;gt;
              &amp;lt;![CDATA[...]]&amp;gt;
            &amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
          &amp;lt;condition match="isnotnull('db_name')"&amp;gt;
            &amp;lt;link&amp;gt;
              &amp;lt;![CDATA[...]]&amp;gt;
            &amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
        &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Aug 2017 13:23:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298517#M40628</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2017-08-23T13:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298518#M40629</link>
      <description>&lt;P&gt;thank you very much for the quick answer Rjthibod&lt;/P&gt;

&lt;P&gt;meanwhile it took me some time to try, but I couldn't make it work.&lt;BR /&gt;
I have an empty new tab (about:blank) in both case database drop-down is selected or * by default value.&lt;/P&gt;

&lt;P&gt;I am inserting below the Database drop-down code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="dropdown" token="field_db_name"&amp;gt;
      &amp;lt;label&amp;gt;Database&amp;lt;/label&amp;gt;
      &amp;lt;prefix&amp;gt;"&amp;lt;/prefix&amp;gt;
      &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;DB_NAME&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;DB_NAME&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;`mc_vln` | DEDUP DB_NAME | FIELDS DB_NAME&amp;lt;/query&amp;gt;
        &amp;lt;earliest&amp;gt;0&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;&amp;lt;/latest&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;set token="db_name_no_quotes"&amp;gt;$value$&amp;lt;/set&amp;gt;
        &amp;lt;unset token="form.field_scan_run_id"&amp;gt;&amp;lt;/unset&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And also my dashboard - as I did apply the match function solution:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Health by Severity&amp;lt;/title&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;`mc_vln` 
| search DB_NAME=$field_db_name$ 
| stats
earliest(_time) as SCAN_DT_START
count(eval(SEVERITY_ID=1 AND CTRL_FIND_ID=0)) as High_Correct,
count(eval(SEVERITY_ID=1 AND CTRL_FIND_ID=1)) as High_Finding,
count(eval(SEVERITY_ID=2 AND CTRL_FIND_ID=0)) as Medium_Correct,
count(eval(SEVERITY_ID=2 AND CTRL_FIND_ID=1)) as Medium_Finding,
count(eval(SEVERITY_ID=3 AND CTRL_FIND_ID=0)) as Low_Correct,
count(eval(SEVERITY_ID=3 AND CTRL_FIND_ID=1)) as Low_Finding
by SCAN_ID
| eval HRT_High   = round(100 * High_Correct / (High_Correct+High_Finding), 2) 
| eval HRT_Medium = round(100 * Medium_Correct / (Medium_Correct+Medium_Finding), 2) 
| eval HRT_Low    = round(100 * Low_Correct / (Low_Correct+Low_Finding), 2) 
| table SCAN_DT_START SCAN_ID HRT_High HRT_Medium HRT_Low
| sort SCAN_DT_START 
| fields - SCAN_DT_START
| rename SCAN_ID as "Scan Id" HRT_High as High HRT_Medium as Medium HRT_Low as Low&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$field1.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$field1.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;collapsed&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;line&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.labels"&amp;gt;["High","Medium","Low"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.placement"&amp;gt;right&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.seriesColors"&amp;gt;[0xFA4343,0xFFA042,0x00579F]&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.masterLegend"&amp;gt;&amp;lt;/option&amp;gt;

              &amp;lt;drilldown target="blank"&amp;gt;

               &amp;lt;condition match="isnull('field_db_name')"&amp;gt;
                 &amp;lt;link&amp;gt;scan_data?form.field_db_name=$db_name_no_quotes$&amp;amp;amp;form.field_scan_id=$row.Scan Id$&amp;amp;amp;form.field_severity_name=$click.name2$&amp;lt;/link&amp;gt;
               &amp;lt;/condition&amp;gt;

               &amp;lt;condition match="isnotnull('field_db_name')"&amp;gt;
                 &amp;lt;link&amp;gt;
                   &amp;lt;link&amp;gt;scan_compare_02?form.field_db_name=$db_name_no_quotes$&amp;amp;amp;form.field_scan_run_id=$row.Scan Id$&amp;lt;/link&amp;gt;
                 &amp;lt;/link&amp;gt;
               &amp;lt;/condition&amp;gt;

             &amp;lt;/drilldown&amp;gt;

      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If I renounce conditioning - ie. use only drill-down to scan_data form whenever the database is selected or not - everything is OK. I do reach the scan_data form with correct variables in the URL.&lt;/P&gt;

&lt;P&gt;Clarification&lt;BR /&gt;
the db_name_no_quotes token is used and set inside the field_db_name declaration to have it without quotes in the drill URL&lt;/P&gt;

&lt;P&gt;May be I have missed something from your idea during my setup ?&lt;/P&gt;

&lt;P&gt;thank you very much&lt;BR /&gt;
best regards&lt;BR /&gt;
Altin&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:25:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298518#M40629</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2020-09-29T15:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298519#M40630</link>
      <description>&lt;P&gt;I am sorry, but I misunderstood what you needed based on your original post. Try this instead.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown target="blank"&amp;gt;
  &amp;lt;condition match="&amp;amp;quot;'field_db_name'&amp;amp;quot; == &amp;amp;quot;*&amp;amp;quot;"&amp;gt;
    &amp;lt;link&amp;gt;
      &amp;lt;![CDATA[
        scan_data?form.field_db_name=*&amp;amp;form.field_scan_id=$row.Scan Id$&amp;amp;form.field_severity_name=$click.name2$
      ]]&amp;gt;
    &amp;lt;/link&amp;gt;
  &amp;lt;/condition&amp;gt;
  &amp;lt;condition&amp;gt;
    &amp;lt;link&amp;gt;
      &amp;lt;![CDATA[
        scan_compare_02?form.field_db_name=$db_name_no_quotes$&amp;amp;form.field_scan_run_id=$row.Scan Id$
      ]]&amp;gt;
    &amp;lt;/link&amp;gt;
  &amp;lt;/condition&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Aug 2017 14:58:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298519#M40630</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2017-08-23T14:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298520#M40631</link>
      <description>&lt;P&gt;thank you very much again&lt;/P&gt;

&lt;P&gt;I will test and let you know ASAP.&lt;/P&gt;

&lt;P&gt;One question(confirmation) before:&lt;BR /&gt;
The second condition does not have a "match" (alias condition), because is the last on list ?&lt;BR /&gt;
and if the first fires - it logically does not count ?&lt;/P&gt;

&lt;P&gt;best regards&lt;BR /&gt;
Altin&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 15:10:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298520#M40631</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2017-08-23T15:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298521#M40632</link>
      <description>&lt;P&gt;The second condition fires if the first one doesn't. Also, please respond in the comments of the answer (I moved your first response and now I am moving this one). Don't post your response as an answer.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 15:56:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298521#M40632</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2017-08-23T15:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298522#M40633</link>
      <description>&lt;P&gt;I tested,&lt;/P&gt;

&lt;P&gt;but it always gets to the second condition whenever input field_db_name is set or no.&lt;/P&gt;

&lt;P&gt;can you help?&lt;/P&gt;

&lt;P&gt;thanks and regards&lt;BR /&gt;
Altin&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:25:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298522#M40633</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2020-09-29T15:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298523#M40634</link>
      <description>&lt;P&gt;Sorry, missed something. Try this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;drilldown target="blank"&amp;gt;
   &amp;lt;condition match="'field_db_name' == &amp;amp;quot;*&amp;amp;quot;"&amp;gt;
     &amp;lt;link&amp;gt;
       &amp;lt;![CDATA[
         scan_data?form.field_db_name=*&amp;amp;form.field_scan_id=$row.Scan Id$&amp;amp;form.field_severity_name=$click.name2$
       ]]&amp;gt;
     &amp;lt;/link&amp;gt;
   &amp;lt;/condition&amp;gt;
   &amp;lt;condition&amp;gt;
     &amp;lt;link&amp;gt;
       &amp;lt;![CDATA[
         scan_compare_02?form.field_db_name=$db_name_no_quotes$&amp;amp;form.field_scan_run_id=$row.Scan Id$
       ]]&amp;gt;
     &amp;lt;/link&amp;gt;
   &amp;lt;/condition&amp;gt;
 &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Aug 2017 17:57:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298523#M40634</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2017-08-23T17:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298524#M40635</link>
      <description>&lt;P&gt;sorry, but it still goes only to the second choice scan_compare_02.&lt;/P&gt;

&lt;P&gt;I can paste the whole code if you need. or at least until this dashboard.&lt;/P&gt;

&lt;P&gt;thank you very much&lt;BR /&gt;
Altin&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:25:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298524#M40635</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2020-09-29T15:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard conditional drill down with form Input token (not-field/series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298525#M40636</link>
      <description>&lt;P&gt;I did fixed it by replacing the field_db_name input with the un-quoted one:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;condition match="'db_name_no_quotes' == &amp;amp;quot;*&amp;amp;quot;"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;this made the switching of forms!&lt;/P&gt;

&lt;P&gt;I would be curious to see how this would work with the original input token - field_db_name&lt;/P&gt;

&lt;P&gt;thank you very much for your help, &lt;BR /&gt;
best regards&lt;BR /&gt;
Altin&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:25:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-conditional-drill-down-with-form-Input-token-not-field/m-p/298525#M40636</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2020-09-29T15:25:34Z</dc:date>
    </item>
  </channel>
</rss>

