<?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: Mutliselect dropdown in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/673909#M55187</link>
    <description>&lt;P&gt;Thank you &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt; , I'll try using lookup.&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2024 08:49:14 GMT</pubDate>
    <dc:creator>anooshac</dc:creator>
    <dc:date>2024-01-11T08:49:14Z</dc:date>
    <item>
      <title>Mutliselect dropdown</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/669414#M54783</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have 2 multiselect dropdowns. One is dependent on other dropdown.&lt;/P&gt;&lt;P&gt;The first drop down has groups and second has sub groups. I am facing some problem in appending the subgroup value to the respective group.&lt;/P&gt;&lt;P&gt;For example, lets assume that group has values a b c and only c has subgroup that is x ,y. I want to append that subgroup as c_x and c_y and pass it to the query.&lt;/P&gt;&lt;P&gt;I tried adding suffix in dropdown itself. But when the tokens are selected in any order it is adding the sub group to whole token, that is if i select b,c,a it will add subgroup as b,c,a_x and b,c,a_y.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions on how can i correctly append the sub group to respective groups and use it in the query.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 05:55:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/669414#M54783</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2023-11-22T05:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Mutliselect dropdown</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/669423#M54786</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;you can use in the first multivalue the following search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults
| eval group="a"
| append [| makeresults | eval group="b"]
| append [| makeresults | eval group="c", subgroup="x"]
| append [| makeresults | eval group="c", subgroup="y"]
| dedup group
| sort group
| table group&lt;/LI-CODE&gt;&lt;P&gt;and in the second multivalue the following search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults
| eval group="a"
| append [| makeresults | eval group="b"]
| append [| makeresults | eval group="c", subgroup="x"]
| append [| makeresults | eval group="c", subgroup="y"]
| table group subgroup
| search group=$group$
| eval value=group.if(isnotnull(subgroup),"_".subgroup,"")&lt;/LI-CODE&gt;&lt;P&gt;then you can use the second value in your panels.&lt;/P&gt;&lt;P&gt;Obviously thgis is a sample to adapt to your search.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 07:42:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/669423#M54786</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-22T07:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Mutliselect dropdown</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/669448#M54793</link>
      <description>&lt;P&gt;Hi, &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. I have one concern, in the mutliselect dropdown the values selected will be a,b,c or b,c,a etc which will be comma separated.&lt;/P&gt;&lt;P&gt;In such conditions will this logic will work?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 10:38:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/669448#M54793</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2023-11-22T10:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Mutliselect dropdown</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/669482#M54804</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;my sample is a sample without any logic except the one you described.&lt;/P&gt;&lt;P&gt;So the order of values isn't relevant and can also be different.&lt;/P&gt;&lt;P&gt;If you have many values, I hint to use a lookup.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 14:05:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/669482#M54804</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-22T14:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Mutliselect dropdown</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/673909#M55187</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt; , I'll try using lookup.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 08:49:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/673909#M55187</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2024-01-11T08:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Mutliselect dropdown</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/673915#M55189</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;let me know if I can help you more, or, please, accept one answer for the other people of Community.&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 10:10:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mutliselect-dropdown/m-p/673915#M55189</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-01-11T10:10:52Z</dc:date>
    </item>
  </channel>
</rss>

