<?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: Using multi-select input1 results to drive multi-select input2 menu in dashboard studio in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752932#M59170</link>
    <description>&lt;P&gt;Hi Victor,&lt;/P&gt;&lt;P&gt;Thanks for the quick reply. Using $host_filter$ references a token, which doesn't exist. The input for this query is &lt;STRONG&gt;&lt;EM&gt;"$tok_MultiSearch1$"&lt;/EM&gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In this case, $host_filter is being used as a variable intending to represent the output of&amp;nbsp;&lt;BR /&gt;"&lt;STRONG&gt;&lt;EM&gt;| eval host_filter=mvjoin(quoted_hosts, ",")"&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;from earlier in that same query.&lt;/P&gt;&lt;P&gt;Now, whether or not $host_filter is a "legal" variable and can be used in this way is very much part of this mystery.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Wed, 10 Sep 2025 20:42:24 GMT</pubDate>
    <dc:creator>learningmode</dc:creator>
    <dc:date>2025-09-10T20:42:24Z</dc:date>
    <item>
      <title>Using multi-select input1 results to drive multi-select input2 menu in dashboard studio</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752926#M59167</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I've been struggling with this for way too long and it seems like it should be a fairly simple thing to do. I'm hoping someone here can help.&lt;/P&gt;&lt;P&gt;&lt;U&gt;SCENARIO:&lt;/U&gt;&lt;BR /&gt;&lt;BR /&gt;BaseSearch1 generates a table of [host, IsBlocked, IsHF, IsIDX] fields where host=string and the remaining are boolean (0 or 1). This represents a list of hosts that have either seen a queue block since [&lt;EM&gt;&lt;STRONG&gt;earliest=$global_time.earliest$ latest=$global_time.latest$&lt;/STRONG&gt;&lt;/EM&gt;], are a HF/DS, or are named ^idx-*. I will put the base search at the end of this posting to make it easier to read.&lt;BR /&gt;&lt;BR /&gt;MultiSelect1 uses ChainSearch1 linked to BaseSearch1 to present only the hostnames from BaseSearch1 where IsBlocked=1.&lt;/P&gt;&lt;P&gt;Query:&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;| search IsBlocked=1&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;| table host&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Token:&lt;STRONG&gt;&lt;EM&gt;$tok_MultiSelect1$&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;U&gt;OBJECTIVE:&lt;/U&gt;&lt;BR /&gt;&lt;BR /&gt;Create a datasource called ChainSearch2 for MultiSelect2 that will filter the following query using the hosts listed in &lt;STRONG&gt;&lt;EM&gt;$tok_MultiSelect1$&lt;/EM&gt;&lt;/STRONG&gt;, essentially like this&lt;BR /&gt;&lt;BR /&gt;Query:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;index=_internal (sourcetype=metrics OR sourcetype=splunkd) group=queue name=* host IN($tok_MultiSelect1$)&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| fields name&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| dedup name sortby name&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| table name&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;ISSUES:&lt;/U&gt;&lt;BR /&gt;&lt;BR /&gt;Problem1 (Solved, basis for Problem2):&lt;BR /&gt;&lt;BR /&gt;Even though the base search feeding the MultiSelect1 chain search ends with " |&amp;nbsp;table host IsHF IsBlocked IsIDX", I see the fields [&lt;STRONG&gt;&lt;EM&gt;"_time","host"&lt;/EM&gt;&lt;/STRONG&gt;] when using this query to evaluate &lt;STRONG&gt;&lt;EM&gt;$tok_MultiSearch1$&lt;/EM&gt;&lt;/STRONG&gt; by sending it to a table:&lt;BR /&gt;&lt;BR /&gt;CODE:&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| makeresults&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| eval host_list="$tok_MultiSearch1$"&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;...which makes that output invalid for "&lt;STRONG&gt;&lt;EM&gt;host IN()&lt;/EM&gt;&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;This was overcome with this query:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;| makeresults&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| eval host_list="$tok_MultiSearch1$"&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| fields - _time&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| makemv delim="," host_list&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| mvexpand host_list&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;|&lt;/EM&gt;&lt;EM&gt;&amp;nbsp;fields -&amp;nbsp;_mkv_child&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| eval quoted_host="\"" . host_list . "\""&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| stats list(quoted_host) as quoted_hosts&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| eval host_filter=mvjoin(quoted_hosts, ",")&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| fields - quoted_hosts&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The result is that now host_filter = "server1","server2"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Problem2 (unsolved):&lt;BR /&gt;&lt;BR /&gt;This query WILL return the data I am looking for&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;index=_internal earliest=-15m group=queue host IN&lt;U&gt; ("server1","server2")&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| fields name&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| dedup name sortby name&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| table name&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;However, if I use &lt;STRONG&gt;&lt;EM&gt;$host_filter&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;for the server values (shown above in Problem1), even though it's a comma-delimited list of quoted server names, I get an empty output:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;| makeresults&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| eval host_list="$tok_MultiSearch1$"&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| fields - _time&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| makemv delim="," host_list&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| mvexpand host_list&lt;BR /&gt;| fields -&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;EM&gt;_mkv_child&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| eval quoted_host="\"" . host_list . "\""&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| stats list(quoted_host) as quoted_hosts&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;U&gt;&lt;STRONG&gt;&lt;EM&gt;| eval host_filter=mvjoin(quoted_hosts, ",")&lt;/EM&gt;&lt;/STRONG&gt;&lt;/U&gt;&lt;STRONG&gt; &amp;lt; where I get "server1","server2"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| fields - quoted_hosts&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| search index=_internal earliest=-15m group=queue &lt;U&gt;host IN ($host_filter)&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| fields name&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| dedup name sortby name&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;| stats values(name) as Queues&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I cannot seem to get &lt;STRONG&gt;&lt;EM&gt;$tok_MultiSearch1$&lt;/EM&gt;&lt;/STRONG&gt; used properly in ChainSearch2.&lt;/P&gt;&lt;P&gt;Again, I am guessing that this is going to be something simple that I've overlooked, it's just not coming to me.&lt;/P&gt;&lt;P&gt;Thanks in advance for any help that can be offered!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 19:22:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752926#M59167</guid>
      <dc:creator>learningmode</dc:creator>
      <dc:date>2025-09-10T19:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using multi-select input1 results to drive multi-select input2 menu in dashboard studio</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752929#M59169</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247315"&gt;@learningmode&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Let me try to help you here... As per your description the solution should be really straightforward so I'm sure it is just something small left behing.&lt;BR /&gt;Starting with your last search there, the token is like that exactly as you pasted? If so, you missed a "$" after "$host_filter":&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...
| fields - quoted_hosts
| search index=_internal earliest=-15m group=queue host IN ($host_filter)
| fields name
...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you noticed that?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 20:31:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752929#M59169</guid>
      <dc:creator>victor_menezes</dc:creator>
      <dc:date>2025-09-10T20:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using multi-select input1 results to drive multi-select input2 menu in dashboard studio</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752932#M59170</link>
      <description>&lt;P&gt;Hi Victor,&lt;/P&gt;&lt;P&gt;Thanks for the quick reply. Using $host_filter$ references a token, which doesn't exist. The input for this query is &lt;STRONG&gt;&lt;EM&gt;"$tok_MultiSearch1$"&lt;/EM&gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In this case, $host_filter is being used as a variable intending to represent the output of&amp;nbsp;&lt;BR /&gt;"&lt;STRONG&gt;&lt;EM&gt;| eval host_filter=mvjoin(quoted_hosts, ",")"&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;from earlier in that same query.&lt;/P&gt;&lt;P&gt;Now, whether or not $host_filter is a "legal" variable and can be used in this way is very much part of this mystery.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 20:42:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752932#M59170</guid>
      <dc:creator>learningmode</dc:creator>
      <dc:date>2025-09-10T20:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using multi-select input1 results to drive multi-select input2 menu in dashboard studio</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752938#M59171</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247315"&gt;@learningmode&lt;/a&gt;&amp;nbsp;I'm sorry, I completely overlooked that, you are right, you are using $host_list as a parameter to get the field content, not a token value...&lt;BR /&gt;&lt;BR /&gt;Try this instead:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal earliest=-15m group=queue name=*
[
  | makeresults
  | eval host_list="$tok_MultiSearch1$"
  | makemv delim="," host_list
  | eval host_list=mvmap(host_list, "\"" . trim(host_list) . "\"")
  | eval search = "host IN (" . mvjoin(host_list, ",") . ")"
  | return $search
]
| fields name
| dedup name sortby name
| stats values(name) as Queues&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm suggesting here:&lt;BR /&gt;Run the makeresults that gets the token value to run as subsearch, which takes priority and runs first. The "return" clause will return a field to the parent search context, that can then be accessed and evaluated properly.&lt;BR /&gt;&lt;BR /&gt;Give it a try and see if that works. Also, you can customize the "search" field's return format by editing line 7 to adhere to your expectations.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 22:58:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752938#M59171</guid>
      <dc:creator>victor_menezes</dc:creator>
      <dc:date>2025-09-10T22:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using multi-select input1 results to drive multi-select input2 menu in dashboard studio</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752942#M59172</link>
      <description>&lt;P&gt;Hi Victor,&lt;/P&gt;&lt;P&gt;I recognize that approach and I know I've tried it before and failed. However, knowing that it's likely something I am overlooking, I tried this again. This time though, I set up a table and mirrored your query to that too (trust, but verify inline with the actual token)&lt;/P&gt;&lt;P&gt;What I didn't expect to see is that in the TABLE, the list of queues ARE being returned (see below). My problem was actually that MultiSelect2 seems to be refusing to publish them. This is true regardless if I select "Queues(array)" for the menu label and value fields in the MultiSelect2 properties.&lt;/P&gt;&lt;P&gt;I deleted and recreated MultiSelect2, same problem. &lt;STRONG&gt;Perhaps this has been the issue all along:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MultiSearch2Failed.JPG" style="width: 248px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/40225i7BBF363C0FC452F8/image-size/large?v=v2&amp;amp;px=999" role="button" title="MultiSearch2Failed.JPG" alt="MultiSearch2Failed.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Same exact query but sending the output to a table instead:&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Queues&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="1125px" height="NaNpx"&gt;&lt;DIV&gt;aggqueue&lt;/DIV&gt;&lt;DIV&gt;auditqueue&lt;/DIV&gt;&lt;DIV&gt;fschangemanager_queue&lt;/DIV&gt;&lt;DIV&gt;httpinputq&lt;/DIV&gt;&lt;DIV&gt;indexqueue&lt;/DIV&gt;&lt;DIV&gt;nullqueue&lt;/DIV&gt;&lt;DIV&gt;parsingqueue&lt;/DIV&gt;&lt;DIV&gt;rulesetqueue&lt;/DIV&gt;&lt;DIV&gt;splunktcpin&lt;/DIV&gt;&lt;DIV&gt;tcpout&lt;/DIV&gt;&lt;DIV&gt;typingqueue&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not solved, but making great progress in that it looks like the real problem may have just shown itself. If this is the case, I can only imagine how many attempts copilot and I have made before that actually &lt;U&gt;&lt;EM&gt;should&lt;/EM&gt; &lt;/U&gt;have worked...&lt;/P&gt;&lt;P&gt;Any thoughts on this new direction?&lt;/P&gt;&lt;P&gt;I appreciate your help with this!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 23:32:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752942#M59172</guid>
      <dc:creator>learningmode</dc:creator>
      <dc:date>2025-09-10T23:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using multi-select input1 results to drive multi-select input2 menu in dashboard studio</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752944#M59173</link>
      <description>&lt;P&gt;Okay, let's try to replace stats values with stats count and remove the count field.. Like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...
| dedup name sortby name
| stats count by name
| rename name as Queues
| table Queues&lt;/LI-CODE&gt;&lt;P&gt;I could simulate the same behavior as you are facing, and this workaround seems to have worked for me:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="victor_menezes_0-1757549056198.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/40226i5B2A193D81D12378/image-size/medium?v=v2&amp;amp;px=400" role="button" title="victor_menezes_0-1757549056198.png" alt="victor_menezes_0-1757549056198.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Let's see if that works.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I thought about it as the DS is showing "Queues (Array)" so understanding the return as an array while dropdown expects individual values, and if you think about it is actually expected and it makes sense.&lt;BR /&gt;So it is easier to "transform" it as multiple events rather than unpack the MV field that stats values create, but I guess it would work also.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 00:06:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752944#M59173</guid>
      <dc:creator>victor_menezes</dc:creator>
      <dc:date>2025-09-11T00:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using multi-select input1 results to drive multi-select input2 menu in dashboard studio</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752954#M59175</link>
      <description>&lt;P&gt;Hi Victor,&lt;/P&gt;&lt;P&gt;And there is the little thing I was missing...understanding that the multi-select was looking for a list and I was sending an array. I would probably never had figured that out. Thank you so much for your quick replies and working solution!&amp;nbsp;&lt;/P&gt;&lt;P&gt;To anyone reading this later, adding that table to the dashboard and duplicating the search results for the multi-select object to visually inspect the format and values of the token being passed was very helpful. I highly recommend it as a troubleshooting step.&lt;/P&gt;&lt;P&gt;Final working query:&lt;/P&gt;&lt;P&gt;index=_internal earliest=-15m group=queue name=*&lt;BR /&gt;[&lt;BR /&gt;| makeresults&lt;BR /&gt;| eval host_list="$tok_MultiSelect1$"&lt;BR /&gt;| makemv delim="," host_list&lt;BR /&gt;| eval host_list=mvmap(host_list, "\"" . trim(host_list) . "\"")&lt;BR /&gt;| eval search = "host IN (" . mvjoin(host_list, ",") . ")"&lt;BR /&gt;| return $search&lt;BR /&gt;]&lt;BR /&gt;| fields name&lt;BR /&gt;| dedup name sortby name&lt;BR /&gt;| stats count by name&lt;BR /&gt;| rename name as Queues&lt;BR /&gt;| table Queues&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 04:59:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-multi-select-input1-results-to-drive-multi-select-input2/m-p/752954#M59175</guid>
      <dc:creator>learningmode</dc:creator>
      <dc:date>2025-09-11T04:59:56Z</dc:date>
    </item>
  </channel>
</rss>

