<?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: Select all values from a dropdown input in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288924#M87469</link>
    <description>&lt;P&gt;@santosh_sshanbhag , Glad that you were able to find a working solution. I just noticed that you did not post this question. So you can not Accept the Answer. But you can definitely up vote the answer/comments that helped with the Up Arrow which shows up next to Answer/ comments (on hover).&lt;/P&gt;</description>
    <pubDate>Thu, 05 Apr 2018 05:35:34 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2018-04-05T05:35:34Z</dc:date>
    <item>
      <title>Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288911#M87456</link>
      <description>&lt;P&gt;At the moment I have a final dropdown input which has options for hosts already predetermined in it from previous dropdowns. When I select the "All" option (using *) in the final dropdown , instead of selecting all the hosts in the final dropdown, it selects all the hosts in the index file completely. How can I have an all option for just the hosts determined? &lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2017 15:27:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288911#M87456</guid>
      <dc:creator>danielsavage</dc:creator>
      <dc:date>2017-07-04T15:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288912#M87457</link>
      <description>&lt;P&gt;@danielsavage, you might have to throw light on what kind of data is being added to your dropdown and whether it is static or dynamic through query. You will have to provide more information of the query that populated the dropdown.&lt;/P&gt;

&lt;P&gt;Seems like your intent is to pass on a list of hosts to your query however, dropdown can pass on only one value unless you code dropdown's change event.&lt;/P&gt;

&lt;P&gt;Following is run anywhere example using Splunk's _internal logs. You will notice All (Astrix) will find INFO, WARN and ERROR while All (Dropdown) will set only the values set through query which excludes INFO ie only WARN and ERROR.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Use all Dropdown values for search filter&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="time" token="selTime" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Select Time&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-24h@h&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="dropdown" token="selLogLevel"&amp;gt;
      &amp;lt;label&amp;gt;Select Log Level&amp;lt;/label&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;log_level&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;log_level&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level!=INFO
| dedup log_level
| table log_level&amp;lt;/query&amp;gt;
        &amp;lt;earliest&amp;gt;$selTime.earliest$&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;$selTime.latest$&amp;lt;/latest&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All (Astrix)&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="all_dd"&amp;gt;All (Dropdown)&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition value="all_dd"&amp;gt;
          &amp;lt;set token="queryFilter"&amp;gt;[search index=_internal sourcetype=splunkd log_level!=INFO earliest=$selTime.earliest$ latest=$selTime.latest$| dedup log_level | table log_level]&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition&amp;gt;
          &amp;lt;set token="queryFilter"&amp;gt;log_level="$value$"&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&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;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd $queryFilter$
| stats count by log_level&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;20&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&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;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Jul 2017 17:26:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288912#M87457</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-07-04T17:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288913#M87458</link>
      <description>&lt;P&gt;So the list of hosts in my dropdown is dynamic and always different. I was wondering if that is there any way I can pass the query that was used to determine the list of hosts instead of the * for all? &lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2017 07:38:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288913#M87458</guid>
      <dc:creator>danielsavage</dc:creator>
      <dc:date>2017-07-05T07:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288914#M87459</link>
      <description>&lt;P&gt;Hi, whatever query populates your dynamic list of hosts, the same should be passed on as &lt;CODE&gt;$queryFilter$&lt;/CODE&gt; query when you choose option to use dynamically populated hosts to your actual query.&lt;/P&gt;

&lt;P&gt;I have retained All Asterix (*) to still show all hosts, but you should notice that I have separately coded All (Dropdown) using all_dd value.&lt;/P&gt;

&lt;P&gt;Following condition in dropdown change event is passing the filter query as you have requested (you need to replace with your query used to populate hosts)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;     &amp;lt;condition value="all_dd"&amp;gt;
       &amp;lt;set token="queryFilter"&amp;gt;[search index=_internal sourcetype=splunkd log_level!=INFO earliest=$selTime.earliest$ latest=$selTime.latest$| dedup log_level | table log_level]&amp;lt;/set&amp;gt;
     &amp;lt;/condition&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: If you want to select multiple hosts and pass on multiple host values as concatenated string to your base search you can also evaluate Multi Select input which will allow you to skip coding the change event. However, I dont think that is your use case.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2017 10:25:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288914#M87459</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-07-05T10:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288915#M87460</link>
      <description>&lt;P&gt;@danielsavage, were you able to try suggested code?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2017 17:12:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288915#M87460</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-07-07T17:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288916#M87461</link>
      <description>&lt;P&gt;I tried like above given code but in my case I have to read all items of the drop down using a lookup so used below,  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;label&amp;gt;Select Group Name&amp;lt;/label&amp;gt;
  &amp;lt;fieldForLabel&amp;gt;GroupName&amp;lt;/fieldForLabel&amp;gt;
  &amp;lt;fieldForValue&amp;gt;GroupName&amp;lt;/fieldForValue&amp;gt;
  &amp;lt;search&amp;gt;
   &amp;lt;query&amp;gt;| inputlookup production_site_groups | search Region="$REGION$" SiteName="$SITENAME$" | sort GroupName | table GroupName &amp;lt;/query&amp;gt;
  &amp;lt;/search&amp;gt; 
  &amp;lt;choice value="all_dd"&amp;gt;All&amp;lt;/choice&amp;gt;
   &amp;lt;change&amp;gt;
     &amp;lt;condition value="all_dd"&amp;gt;
       &amp;lt;set token="queryFilter"&amp;gt;[search | inputlookup production_site_groups | search Region="$REGION$" SiteName="$SITENAME$" | sort GroupName | fields GroupName]&amp;lt;/set&amp;gt;
     &amp;lt;/condition&amp;gt;
     &amp;lt;condition&amp;gt;
       &amp;lt;set token="queryFilter"&amp;gt;cn="$value$"&amp;lt;/set&amp;gt;
     &amp;lt;/condition&amp;gt;
   &amp;lt;/change&amp;gt;
&amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but getting below error in this case &lt;BR /&gt;
Error in 'inputlookup' command: This command must be the first command of a search.&lt;/P&gt;

&lt;P&gt;Any suggestion, how I can read the all items using inputlookup command?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 13:44:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288916#M87461</guid>
      <dc:creator>santosh_sshanbh</dc:creator>
      <dc:date>2018-04-03T13:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288917#M87462</link>
      <description>&lt;P&gt;@santosh_sshanbhag, Without having a context of your issue/use case, you don't need to prefix &lt;CODE&gt;search&lt;/CODE&gt; in front of generating commands like &lt;CODE&gt;inputlookup&lt;/CODE&gt;:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;set token="queryFilter"&amp;gt;[| inputlookup production_site_groups | search Region="$REGION$" SiteName="$SITENAME$" | sort GroupName | fields GroupName]&amp;lt;/set&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Please try out and confirm!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 15:16:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288917#M87462</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-04-03T15:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288918#M87463</link>
      <description>&lt;P&gt;Above option didn't worked. Let me give more information on my need. I have a lookup file production_site_groups as below:&lt;/P&gt;

&lt;P&gt;Region      Site         Group&lt;BR /&gt;
ASIA          India       Grpa&lt;BR /&gt;
ASIA          India       Grpb&lt;BR /&gt;
NA             USA        Grpc&lt;BR /&gt;
NA             USA        Grpd&lt;/P&gt;

&lt;P&gt;And 3 drop downs to select Region, Site &amp;amp; Group&lt;/P&gt;

&lt;P&gt;Monitor Groups&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="dropdown" token="REGION" searchWhenChanged="true"&amp;gt;
  &amp;lt;label&amp;gt;Select Region&amp;lt;/label&amp;gt;
  &amp;lt;search&amp;gt;
    &amp;lt;query&amp;gt;| inputlookup production_site_groups | dedup Region | sort Region | fields Region&amp;lt;/query&amp;gt;
  &amp;lt;/search&amp;gt;
  &amp;lt;selectFirstChoice&amp;gt;false&amp;lt;/selectFirstChoice&amp;gt;
  &amp;lt;fieldForLabel&amp;gt;Region&amp;lt;/fieldForLabel&amp;gt;
  &amp;lt;fieldForValue&amp;gt;Region&amp;lt;/fieldForValue&amp;gt;
  &amp;lt;default&amp;gt;NA&amp;lt;/default&amp;gt;
&amp;lt;/input&amp;gt;
&amp;lt;input type="dropdown" token="SITENAME" searchWhenChanged="true"&amp;gt;
  &amp;lt;label&amp;gt;Select Site Name&amp;lt;/label&amp;gt;
  &amp;lt;search&amp;gt;
    &amp;lt;query&amp;gt;| inputlookup production_site_groups | search Region="$REGION$" | dedup SiteName | sort SiteName | fields SiteName AppName GroupName&amp;lt;/query&amp;gt;
  &amp;lt;/search&amp;gt;
  &amp;lt;fieldForLabel&amp;gt;SiteName&amp;lt;/fieldForLabel&amp;gt;
  &amp;lt;fieldForValue&amp;gt;SiteName&amp;lt;/fieldForValue&amp;gt;
&amp;lt;/input&amp;gt;
&amp;lt;input type="time" token="SELECTED_TIME" searchWhenChanged="true"&amp;gt;
  &amp;lt;label&amp;gt;Select Time Range&amp;lt;/label&amp;gt;
  &amp;lt;default&amp;gt;Last 7 days&amp;lt;/default&amp;gt;
&amp;lt;/input&amp;gt;
&amp;lt;input type="dropdown" token="GROUPNAME" searchWhenChanged="true"&amp;gt;
  &amp;lt;label&amp;gt;Select Group Name&amp;lt;/label&amp;gt;
  &amp;lt;fieldForLabel&amp;gt;GroupName&amp;lt;/fieldForLabel&amp;gt;
  &amp;lt;fieldForValue&amp;gt;GroupName&amp;lt;/fieldForValue&amp;gt;
  &amp;lt;search&amp;gt;
   &amp;lt;query&amp;gt;| inputlookup production_site_groups | search Region="$REGION$" SiteName="$SITENAME$" | sort GroupName | table GroupName &amp;lt;/query&amp;gt;
  &amp;lt;/search&amp;gt; 
  &amp;lt;choice value="all_dd"&amp;gt;All&amp;lt;/choice&amp;gt;
   &amp;lt;change&amp;gt;
     &amp;lt;condition value="all_dd"&amp;gt;
       &amp;lt;set token="queryFilter"&amp;gt;[| inputlookup production_site_groups | search Region="$REGION$" SiteName="$SITENAME$" | sort GroupName | table GroupName]&amp;lt;/set&amp;gt;
     &amp;lt;/condition&amp;gt;
     &amp;lt;condition&amp;gt;
       &amp;lt;set token="queryFilter"&amp;gt;cn="$value$"&amp;lt;/set&amp;gt;
     &amp;lt;/condition&amp;gt;
   &amp;lt;/change&amp;gt;
&amp;lt;/input&amp;gt;


&amp;lt;panel&amp;gt;
  &amp;lt;title&amp;gt;Group Changes History -&amp;lt;/title&amp;gt;
  &amp;lt;table&amp;gt;
    &amp;lt;search&amp;gt;
      &amp;lt;query&amp;gt;index="main" source="Log" $queryFilter$ | dedup _raw | rex max_match=0 "uid=(?&amp;amp;lt;GG_Event_Members&amp;amp;gt;[a-zA-Z0-9]*)" |  table 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;_time, cn &lt;BR /&gt;
          &lt;EARLIEST&gt;$SELECTED_TIME.earliest$&lt;/EARLIEST&gt;&lt;BR /&gt;
          &lt;LATEST&gt;$SELECTED_TIME.latest$&lt;/LATEST&gt;&lt;BR /&gt;
        &lt;BR /&gt;
        20&lt;BR /&gt;
        none&lt;BR /&gt;
        none&lt;BR /&gt;
        1&lt;BR /&gt;
        0&lt;BR /&gt;
        0&lt;BR /&gt;
        0&lt;BR /&gt;
        1&lt;BR /&gt;
        true&lt;BR /&gt;
        true&lt;BR /&gt;
      &lt;BR /&gt;
    &lt;/P&gt;

&lt;P&gt;This code works fine when individual item in the 3rd drop down is selected but when All is selected, its not returning any data. Ideally for All the search command should look like below when ASIA region and India site is selected in the first 2 drop downs.&lt;/P&gt;

&lt;P&gt;index="main" source="Log" cn="Grpa" OR cn="Grpb" &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 18:51:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288918#M87463</guid>
      <dc:creator>santosh_sshanbh</dc:creator>
      <dc:date>2020-09-29T18:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288919#M87464</link>
      <description>&lt;P&gt;I think the problem I am facinng is due to subsearch which creates AND of all values. Whereas I need to have OR condition for all subquery return values.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 06:25:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288919#M87464</guid>
      <dc:creator>santosh_sshanbh</dc:creator>
      <dc:date>2018-04-04T06:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288920#M87465</link>
      <description>&lt;P&gt;After &lt;CODE&gt;fields GroupName&lt;/CODE&gt; add the following two pipes as well&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [| &amp;lt;yourSearchWithInputLookup&amp;gt;
| fields GroupName
| format
| table search]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Following is a run anywhere search to mimic your inner query similar to inputlookup. Please try out and confirm!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval GroupName="abc;def" 
| makemv GroupName delim=";" 
| mvexpand GroupName 
| sort GroupName 
| fields GroupName 
| format 
| table search
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Apr 2018 07:53:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288920#M87465</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-04-04T07:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288921#M87466</link>
      <description>&lt;P&gt;Thanks a lot. Your solution worked for me. Only change I have to do is rename GroupName to cn which is the field to be checked.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 09:33:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288921#M87466</guid>
      <dc:creator>santosh_sshanbh</dc:creator>
      <dc:date>2018-04-04T09:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288922#M87467</link>
      <description>&lt;P&gt;@santosh_sshanbhag If it worked please do accept the answer and up vote the comments that helped &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 15:01:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288922#M87467</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-04-04T15:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288923#M87468</link>
      <description>&lt;P&gt;Your solution worked. Thanks. How can I accept this as answer?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 05:29:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288923#M87468</guid>
      <dc:creator>santosh_sshanbh</dc:creator>
      <dc:date>2018-04-05T05:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Select all values from a dropdown input</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288924#M87469</link>
      <description>&lt;P&gt;@santosh_sshanbhag , Glad that you were able to find a working solution. I just noticed that you did not post this question. So you can not Accept the Answer. But you can definitely up vote the answer/comments that helped with the Up Arrow which shows up next to Answer/ comments (on hover).&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 05:35:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Select-all-values-from-a-dropdown-input/m-p/288924#M87469</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-04-05T05:35:34Z</dc:date>
    </item>
  </channel>
</rss>

