<?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 let dropdown and time inputs share the same tokens? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613657#M50333</link>
    <description>&lt;P&gt;Yes, it's just a token housekeeping issue - the search that calculates earliest/latest always runs, so even if you select another time window, that search always runs, so will calculate the custom time range.&lt;/P&gt;&lt;P&gt;You just need to make the search use depends="$showCustom$" as in the attached, which you will see then prevents the search from running, so it does not overwrite the custom_* tokens if you select any of the non-custom options.&lt;/P&gt;&lt;P&gt;Note that in your definition, "Yesterday" is not actually yesterday - it's actually last 7 days (&lt;A href="mailto:-7d@d+7h" target="_blank"&gt;-7d@d+7h&lt;/A&gt;) and last 7 days is last month...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;TEST&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;Time Selection&amp;lt;/label&amp;gt;
      &amp;lt;choice value="yesterday"&amp;gt;Yesterday&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="-7d"&amp;gt;Last 7 Days&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="mtd"&amp;gt;Month To Date&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="custom"&amp;gt;Custom Time&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition label="Yesterday"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-7d@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Last 7 Days"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-4w@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Month To Date"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-5mon@mon+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Custom Time"&amp;gt;
          &amp;lt;set token="showCustom"&amp;gt;Y&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
      &amp;lt;default&amp;gt;yesterday&amp;lt;/default&amp;gt;
      &amp;lt;initialValue&amp;gt;yesterday&amp;lt;/initialValue&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="time" token="customTime" depends="$showCustom$"&amp;gt;
      &amp;lt;label&amp;gt;Time Range&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-3d@d+7h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;-2d@d+7h&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
       Custom:$customTime$&amp;lt;br/&amp;gt;
       custom_earliest:$custom_earliest$&amp;lt;br/&amp;gt;
       custom_latest  :$custom_latest$&amp;lt;br/&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search depends="$showCustom$"&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;set token="custom_earliest"&amp;gt;$result.info_min_time$&amp;lt;/set&amp;gt;
            &amp;lt;set token="custom_latest"&amp;gt;$result.info_max_time$&amp;lt;/set&amp;gt;
          &amp;lt;/done&amp;gt;
          &amp;lt;query&amp;gt;| makeresults
| addinfo
| eval min=strftime(info_min_time, "%F %T")
| eval max=strftime(info_max_time, "%F %T")
| fields - info_sid&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$customTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$customTime.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&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;</description>
    <pubDate>Mon, 19 Sep 2022 23:30:33 GMT</pubDate>
    <dc:creator>bowesmana</dc:creator>
    <dc:date>2022-09-19T23:30:33Z</dc:date>
    <item>
      <title>How to let dropdown and time inputs share the same tokens?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613542#M50320</link>
      <description>&lt;P&gt;Hi, I would like to set time ranges from 2 different types of inputs, Dropdown and Time, as shared tokens into a panel.&lt;BR /&gt;&lt;BR /&gt;Currently, this is the code I have, the Dropdown has 4 options, and the Time input appears depending on the last dropdown option. I am stuck on passing the time range from the Time input into the "custom_earliest" and "custom_latest" tokens.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;Time Selection&amp;lt;/label&amp;gt;
      &amp;lt;choice value="yesterday"&amp;gt;Yesterday&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="-7d"&amp;gt;Last 7 Days&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="mtd"&amp;gt;Month To Date&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="custom"&amp;gt;Custom Time&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition label="Yesterday"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-7d@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Last 7 Days"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-4w@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Month To Date"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-5mon@mon+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Custom Time"&amp;gt;
          &amp;lt;set token="showCustom"&amp;gt;Y&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
      &amp;lt;default&amp;gt;yesterday&amp;lt;/default&amp;gt;
      &amp;lt;initialValue&amp;gt;yesterday&amp;lt;/initialValue&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="time" token="customTime" depends="$showCustom$"&amp;gt;
      &amp;lt;label&amp;gt;Time Range&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-3d@d+7h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;-2d@d+7h&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated, thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 03:01:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613542#M50320</guid>
      <dc:creator>dzyfer</dc:creator>
      <dc:date>2022-09-19T03:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to let dropdown and time inputs share the same tokens?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613543#M50321</link>
      <description>&lt;P&gt;Use a hidden search (this example shows it in a panel) and set the custom_* tokens in the &amp;lt;done&amp;gt; clause of the search, which is triggered when you select Custom&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;TEST&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;Time Selection&amp;lt;/label&amp;gt;
      &amp;lt;choice value="yesterday"&amp;gt;Yesterday&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="-7d"&amp;gt;Last 7 Days&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="mtd"&amp;gt;Month To Date&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="custom"&amp;gt;Custom Time&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition label="Yesterday"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-7d@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Last 7 Days"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-4w@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Month To Date"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-5mon@mon+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Custom Time"&amp;gt;
          &amp;lt;set token="showCustom"&amp;gt;Y&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
      &amp;lt;default&amp;gt;yesterday&amp;lt;/default&amp;gt;
      &amp;lt;initialValue&amp;gt;yesterday&amp;lt;/initialValue&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="time" token="customTime" depends="$showCustom$"&amp;gt;
      &amp;lt;label&amp;gt;Time Range&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-3d@d+7h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;-2d@d+7h&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
       Custom:$customTime$&amp;lt;br/&amp;gt;
       earliest:$custom_earliest$&amp;lt;br/&amp;gt;
       latest  :$custom_latest$&amp;lt;br/&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
            | makeresults
            | addinfo
      
          &amp;lt;/query&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;set token="custom_earliest"&amp;gt;$result.info_min_time$&amp;lt;/set&amp;gt;
            &amp;lt;set token="custom_latest"&amp;gt;$result.info_max_time$&amp;lt;/set&amp;gt;
          &amp;lt;/done&amp;gt;
          &amp;lt;earliest&amp;gt;$customTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$customTime.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&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;</description>
      <pubDate>Mon, 19 Sep 2022 03:37:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613543#M50321</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2022-09-19T03:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to let dropdown and time inputs share the same tokens?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613570#M50328</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/6367"&gt;@bowesmana&lt;/a&gt;&amp;nbsp;, thanks for the reply, however I realised that doing this causes the dashboard to default to the custom time range upon reset:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;input type="time" token="customTime" depends="$showCustom$"&amp;gt;
 &amp;lt;label&amp;gt;Time Range&amp;lt;/label&amp;gt;
  &amp;lt;default&amp;gt;
    &amp;lt;earliest&amp;gt;-3d@d+7h&amp;lt;/earliest&amp;gt;
    &amp;lt;latest&amp;gt;-2d@d+7h&amp;lt;/latest&amp;gt;
  &amp;lt;/default&amp;gt;
&amp;lt;/input&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;instead of the first option from the dropdown (Yesterday):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;      &amp;lt;condition label="Yesterday"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-7d@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
      &amp;lt;default&amp;gt;yesterday&amp;lt;/default&amp;gt;
      &amp;lt;initialValue&amp;gt;yesterday&amp;lt;/initialValue&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;Any idea why? Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 09:27:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613570#M50328</guid>
      <dc:creator>dzyfer</dc:creator>
      <dc:date>2022-09-19T09:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to let dropdown and time inputs share the same tokens?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613657#M50333</link>
      <description>&lt;P&gt;Yes, it's just a token housekeeping issue - the search that calculates earliest/latest always runs, so even if you select another time window, that search always runs, so will calculate the custom time range.&lt;/P&gt;&lt;P&gt;You just need to make the search use depends="$showCustom$" as in the attached, which you will see then prevents the search from running, so it does not overwrite the custom_* tokens if you select any of the non-custom options.&lt;/P&gt;&lt;P&gt;Note that in your definition, "Yesterday" is not actually yesterday - it's actually last 7 days (&lt;A href="mailto:-7d@d+7h" target="_blank"&gt;-7d@d+7h&lt;/A&gt;) and last 7 days is last month...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;TEST&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;Time Selection&amp;lt;/label&amp;gt;
      &amp;lt;choice value="yesterday"&amp;gt;Yesterday&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="-7d"&amp;gt;Last 7 Days&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="mtd"&amp;gt;Month To Date&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="custom"&amp;gt;Custom Time&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition label="Yesterday"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-7d@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Last 7 Days"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-4w@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Month To Date"&amp;gt;
          &amp;lt;set token="custom_earliest"&amp;gt;-5mon@mon+7h&amp;lt;/set&amp;gt;
          &amp;lt;set token="custom_latest"&amp;gt;@d+7h&amp;lt;/set&amp;gt;
          &amp;lt;unset token="showCustom"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Custom Time"&amp;gt;
          &amp;lt;set token="showCustom"&amp;gt;Y&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
      &amp;lt;default&amp;gt;yesterday&amp;lt;/default&amp;gt;
      &amp;lt;initialValue&amp;gt;yesterday&amp;lt;/initialValue&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="time" token="customTime" depends="$showCustom$"&amp;gt;
      &amp;lt;label&amp;gt;Time Range&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-3d@d+7h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;-2d@d+7h&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
       Custom:$customTime$&amp;lt;br/&amp;gt;
       custom_earliest:$custom_earliest$&amp;lt;br/&amp;gt;
       custom_latest  :$custom_latest$&amp;lt;br/&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search depends="$showCustom$"&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;set token="custom_earliest"&amp;gt;$result.info_min_time$&amp;lt;/set&amp;gt;
            &amp;lt;set token="custom_latest"&amp;gt;$result.info_max_time$&amp;lt;/set&amp;gt;
          &amp;lt;/done&amp;gt;
          &amp;lt;query&amp;gt;| makeresults
| addinfo
| eval min=strftime(info_min_time, "%F %T")
| eval max=strftime(info_max_time, "%F %T")
| fields - info_sid&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$customTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$customTime.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&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;</description>
      <pubDate>Mon, 19 Sep 2022 23:30:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-let-dropdown-and-time-inputs-share-the-same-tokens/m-p/613657#M50333</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2022-09-19T23:30:33Z</dc:date>
    </item>
  </channel>
</rss>

