<?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: Remove &amp;quot;All&amp;quot; from Multiselect Input in Dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301387#M19203</link>
    <description>&lt;P&gt;tonyca, checkout my answer below. Should do what you want.&lt;/P&gt;</description>
    <pubDate>Tue, 10 Jul 2018 16:54:20 GMT</pubDate>
    <dc:creator>phoenix_down</dc:creator>
    <dc:date>2018-07-10T16:54:20Z</dc:date>
    <item>
      <title>Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301375#M19191</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;I have multiple "&lt;STRONG&gt;Multiselect&lt;/STRONG&gt;" Input on my Dashboard which has search query which populates the result for Multiselect along with a static option of All (*)&lt;/P&gt;
&lt;P&gt;Now, i want that whenever anyone selects any one or Multiple values in Multiselect input, "All" should automatically gets removed. Currently the user has to remove "All" and if user doesn't remove "All" then the result is skewed.&lt;/P&gt;
&lt;P&gt;The results is getting skewed because we are using OR clause.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;For example&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;When only ALL is selected (default) below search query runs&lt;/P&gt;
&lt;P&gt;index=abc | search xzy=* | stats count by xyz&lt;/P&gt;
&lt;P&gt;When other values are also selected along with ALL&lt;/P&gt;
&lt;P&gt;index=abc | search xzy=* OR xzy=hello OR xzy=hi OR xzy=how | stats count by xyz&lt;/P&gt;
&lt;P&gt;Now in the above case since "All" is by default selected, and even person selects other name the results show for all users as xzy=* remains and user has to explicitly remove ALL from the multiselect.&lt;/P&gt;
&lt;P&gt;What i am looking for is whenever any user selects anything from the multiselect input, All should automatically be removed/de-selected.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2020 00:06:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301375#M19191</guid>
      <dc:creator>ashish9433</dc:creator>
      <dc:date>2020-06-08T00:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301376#M19192</link>
      <description>&lt;P&gt;@ashish9433, on similar lines refer to an answer by @jeffland&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/583461/how-can-i-apply-javascript-on-a-multiselect-dropdo.html"&gt;https://answers.splunk.com/answers/583461/how-can-i-apply-javascript-on-a-multiselect-dropdo.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 11:34:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301376#M19192</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-22T11:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301377#M19193</link>
      <description>&lt;P&gt;Thanks @niketnilay though the answer by @jeffland in the above link didn't worked for me, but it gave me a guidance on how to fix it and i was able to get it resolved.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 19:09:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301377#M19193</guid>
      <dc:creator>ashish9433</dc:creator>
      <dc:date>2017-11-23T19:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301378#M19194</link>
      <description>&lt;P&gt;I followed the advice by @jeffland in &lt;A href="https://answers.splunk.com/answers/583461/how-can-i-apply-javascript-on-a-multiselect-dropdo.html"&gt;Link&lt;/A&gt; and using the below JS i was able to achieve what i was looking for.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;require([
     'jquery',
     'splunkjs/mvc',
     'splunkjs/mvc/simplexml/ready!'
 ], function($, mvc){
         $('#multi').on("change",function(){
                 var multi1 = mvc.Components.get("multi");
                 var tokens = mvc.Components.getInstance("default");
                 var mytoken = tokens.get("multi")

                  if (mytoken.length &amp;gt; 1 &amp;amp;&amp;amp; mytoken.includes("All"))
                 {
                     // If "All" was selected before current (more specific) selection, remove it from list
                     if (indexOfAll == 0) 
                     {
                         var temp = mytoken.split(" ")
                         var temp1 = temp[1]
                         multi1.val(temp1);
                     } else 
                     {
                         // "All" was selected last, clear input and leave only "All" in it
                         multi1.val("All");
                     }
                 }


 }); 
 }); 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Nov 2017 19:13:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301378#M19194</guid>
      <dc:creator>ashish9433</dc:creator>
      <dc:date>2017-11-23T19:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301379#M19195</link>
      <description>&lt;P&gt;@ashish9433, please accept your own answer listed here to mark this question as answered. Do upvote the comments that helped. (Even on the original post :))&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 19:16:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301379#M19195</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-23T19:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301380#M19196</link>
      <description>&lt;P&gt;Just thought I'd post an alternative way of doing this. I'm not a big fan of adding javascript to my dashboards, so I've found a way to do this by adjusting the token for the input using the change &amp;amp; eval attributes. See the example below from one of our dashboards:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;input type="multiselect" token="host" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Hosts&amp;lt;/label&amp;gt;
      &amp;lt;search base="lookup"&amp;gt;
        &amp;lt;query&amp;gt;search $env$ | dedup host&amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;valuePrefix&amp;gt;host=&amp;lt;/valuePrefix&amp;gt;
      &amp;lt;delimiter&amp;gt; OR &amp;lt;/delimiter&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;host&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;host&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;eval token="form.host"&amp;gt;if(mvcount('form.host')=0,"*",if(mvcount('form.host')!=1,mvfilter('form.host'!="*"),'form.host'))&amp;lt;/eval&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will reset the token to 'All' if no options are selected, and will remove the 'All' option if more than 1 are selected.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;UPDATE:&lt;/STRONG&gt; &lt;BR /&gt;
One of my colleagues found this didn't work properly. When you select a couple of hosts, the only way to get back to 'All' is to remove all your previous selections, at which point 'All' will re-appear. Below is the fix he added, this is the commentary from our internal Jira system:&lt;/P&gt;

&lt;P&gt;Basically, because of the '*', the regex doesn't quite work, so we need to change the&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;choice value="All"&amp;gt;All&amp;lt;/choice&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;so the regex mvfind works as expected. Then, set a second token dependent on the value of 'form.blah', which is then used in any post-process search [decided to change the name of the original multi-select form token, and then set a token with the old name, so it remains transparent to the post-process searches that use the original token]. &lt;/P&gt;

&lt;P&gt;So:&lt;BR /&gt;
- it defaults to 'All' (All is alone at the start, index=0)&lt;BR /&gt;
- if another env is chosen, 'All' is removed&lt;BR /&gt;
- if 'All' is chosen, all other envs are removed (ie All is always alone at the start, index=0)&lt;BR /&gt;
- if everything is removed, 'All' reappears (ie All is always alone at the start, index=0)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="multiselect" token="env2" searchWhenChanged="true"&amp;gt;
  &amp;lt;label&amp;gt;Environment&amp;lt;/label&amp;gt;
  &amp;lt;search base="lookup"&amp;gt;
    &amp;lt;query&amp;gt;dedup environment&amp;lt;/query&amp;gt;
  &amp;lt;/search&amp;gt;
  &amp;lt;default&amp;gt;All&amp;lt;/default&amp;gt;
  &amp;lt;valuePrefix&amp;gt;environment=&amp;lt;/valuePrefix&amp;gt;
  &amp;lt;delimiter&amp;gt; OR &amp;lt;/delimiter&amp;gt;
  &amp;lt;choice value="All"&amp;gt;All&amp;lt;/choice&amp;gt;
  &amp;lt;fieldForLabel&amp;gt;environment&amp;lt;/fieldForLabel&amp;gt;
  &amp;lt;fieldForValue&amp;gt;environment&amp;lt;/fieldForValue&amp;gt;
  &amp;lt;change&amp;gt;
    &amp;lt;eval token="form.env2"&amp;gt;case(mvcount('form.env2')=0,"All",mvcount('form.env2')&amp;amp;gt;1 AND mvfind('form.env2',"All")&amp;amp;gt;0,"All",mvcount('form.env2')&amp;amp;gt;1 AND mvfind('form.env2',"All")=0,mvfilter('form.env2'!="All"),1==1,'form.env2')&amp;lt;/eval&amp;gt;
    &amp;lt;eval token="env"&amp;gt;if(mvfind('form.env2',"All")=0,"environment=*",$env2$)&amp;lt;/eval&amp;gt;
  &amp;lt;/change&amp;gt;
&amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;...still use $env$ where appropriate&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="dropdown" token="host" searchWhenChanged="true"&amp;gt;
&amp;lt;label&amp;gt;Select a Host:&amp;lt;/label&amp;gt;
&amp;lt;selectFirstChoice&amp;gt;true&amp;lt;/selectFirstChoice&amp;gt;
&amp;lt;search base="lookup"&amp;gt;
&amp;lt;query&amp;gt;search $env$ | dedup host&amp;lt;/query&amp;gt;
&amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps, cheers.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2018 04:19:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301380#M19196</guid>
      <dc:creator>ashleyherbert</dc:creator>
      <dc:date>2018-02-17T04:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301381#M19197</link>
      <description>&lt;P&gt;looks like easy and innovative way of doing it! Thanks @ashleyherbert&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2018 05:41:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301381#M19197</guid>
      <dc:creator>ashish9433</dc:creator>
      <dc:date>2018-02-17T05:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301382#M19198</link>
      <description>&lt;P&gt;@ashleyherbert, is your code still working for you? I tried (for several hours) to get it to work in Splunk 6.6.1 and was not able to. With your code as shown, the multi-select input doesn't allow me to remove the default "All" choice, nor does it allow me to add any additional choices.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2018 04:43:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301382#M19198</guid>
      <dc:creator>phoenix_down</dc:creator>
      <dc:date>2018-03-01T04:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301383#M19199</link>
      <description>&lt;P&gt;If i have more than one Multi select Input in Dashboard .Is there any generic solution to   Remove "All" from all Multi select Input, instead of writing separate JS for all multi select input.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 11:43:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301383#M19199</guid>
      <dc:creator>tonyca</dc:creator>
      <dc:date>2018-07-05T11:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301384#M19200</link>
      <description>&lt;P&gt;@tonyca, you can use jQuery &lt;CODE&gt;each()&lt;/CODE&gt; selector for iterating through all the multiselect inputs and then place above code: &lt;A href="https://api.jquery.com/each/"&gt;https://api.jquery.com/each/&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$(this).on("change",function(){
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This is theoretical approach. So let me know if it does not work.&lt;/P&gt;

&lt;P&gt;The &lt;CODE&gt;Table Row Highlight&lt;/CODE&gt; example in &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;Splunk Dashboard Example App&lt;/A&gt; uses the same &lt;CODE&gt;each()&lt;/CODE&gt; approach to color each row based on individual cell content/class.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 13:19:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301384#M19200</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-07-05T13:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301385#M19201</link>
      <description>&lt;P&gt;can i have some more elaborative solution.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jul 2018 08:50:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301385#M19201</guid>
      <dc:creator>tonyca</dc:creator>
      <dc:date>2018-07-10T08:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301386#M19202</link>
      <description>&lt;P&gt;I was not able to get either of the above answers to work for me in Splunk 6.6.1, so I wrote my own using plain Javascript without the need for jQuery. This is also a generic solution that works for any number of multi-selects on the page.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;require([
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
], function(mvc) {

    function setupMultiInput(instance_id) {

      // Get multiselect
      var multi = mvc.Components.get(instance_id);

      // On change, check selection
      multi.on("change", (selectedValues) =&amp;gt; {

        if (selectedValues.length &amp;gt; 1 &amp;amp;&amp;amp; selectedValues.includes("*")) {
          var indexOfAll = selectedValues.indexOf("*");

          // If "ALL" was selected before current (more specific) selection, remove it from list
          if (indexOfAll == 0) {
            selectedValues.splice(indexOfAll, 1);
            multi.val(selectedValues);
            multi.render();
          } else {
            // "ALL" was selected last, clear input and leave only "ALL" in it
            multi.val("*");
            multi.render();
          }
        }

      });
    }

    var all_multi_selects = document.getElementsByClassName("input-multiselect");
    for (j = 0; j &amp;lt; all_multi_selects.length; j++) {
      setupMultiInput(all_multi_selects[j].id);
    }

});
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The assumption is that the default value is "*". But you can easily modify the code if you use something different for the default value.&lt;/P&gt;

&lt;P&gt;Then all you have to do is to include the script at the top of your dashboard code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form script="path/to/multiselect.js"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 10 Jul 2018 15:35:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301386#M19202</guid>
      <dc:creator>phoenix_down</dc:creator>
      <dc:date>2018-07-10T15:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301387#M19203</link>
      <description>&lt;P&gt;tonyca, checkout my answer below. Should do what you want.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jul 2018 16:54:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301387#M19203</guid>
      <dc:creator>phoenix_down</dc:creator>
      <dc:date>2018-07-10T16:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301388#M19204</link>
      <description>&lt;P&gt;Thanks @phoenix-down .it is working for all multi select inputs.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 06:34:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301388#M19204</guid>
      <dc:creator>tonyca</dc:creator>
      <dc:date>2018-07-11T06:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301389#M19205</link>
      <description>&lt;P&gt;@tonyca, do up-vote this answer if it has helped &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 07:03:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301389#M19205</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-07-11T07:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301390#M19206</link>
      <description>&lt;P&gt;I did it and I'd rather this answer. I worked for me. &lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 12:23:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301390#M19206</guid>
      <dc:creator>jrballesteros05</dc:creator>
      <dc:date>2018-07-31T12:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301391#M19207</link>
      <description>&lt;P&gt;Can confirm, this works. Thank you so much.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 16:04:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301391#M19207</guid>
      <dc:creator>Zakary_n</dc:creator>
      <dc:date>2019-02-22T16:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301392#M19208</link>
      <description>&lt;P&gt;Works for me too, thank you very much!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 11:59:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301392#M19208</guid>
      <dc:creator>alai</dc:creator>
      <dc:date>2019-03-21T11:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301393#M19209</link>
      <description>&lt;P&gt;@ashleyherbert - this is working well when using on a dashboard interactively. When have multiple selections working well. But if refresh the page selections go back to "All". If save as a book mark and open from the bookmark the multiple selections are not selected, back to "All".&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 15:49:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301393#M19209</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2019-03-27T15:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove "All" from Multiselect Input in Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301394#M19210</link>
      <description>&lt;P&gt;Haven't noticed this before, but yes I can see it happening on mine as well. For some reason when the dashboard is refreshing, it's running through the  functions and not finding any pre-populated tokens. I'm not sure why this is, I'll do some playing around and see if I can get it working.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 22:42:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Remove-quot-All-quot-from-Multiselect-Input-in-Dashboard/m-p/301394#M19210</guid>
      <dc:creator>ashleyherbert</dc:creator>
      <dc:date>2019-03-27T22:42:08Z</dc:date>
    </item>
  </channel>
</rss>

