<?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: Multiple drilldowns in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659707#M54297</link>
    <description>&lt;P&gt;In drilldown, you have access to $click.value2$ which is the cell value. &amp;nbsp;You then program &amp;lt;condition/&amp;gt; with exact value.&lt;/P&gt;</description>
    <pubDate>Wed, 04 Oct 2023 19:02:26 GMT</pubDate>
    <dc:creator>yuanliu</dc:creator>
    <dc:date>2023-10-04T19:02:26Z</dc:date>
    <item>
      <title>Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659561#M54292</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;So I have a below dashboard panel which is populated with lookup.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp;Organization&amp;nbsp; &amp;nbsp; Count&lt;BR /&gt;Bob&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; splunk&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;BR /&gt;Matt&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;google&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 15&lt;BR /&gt;smith&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; facebook&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 9&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;What I'm looking for is.&amp;nbsp;&lt;BR /&gt;1. If I click the Bob, it has to open a new search tab with the query&lt;STRONG&gt; "| inputlookup mydetails.csv | search Name=Bob "&lt;BR /&gt;&lt;/STRONG&gt;2. If I click the Splunk, it has to open a new url with &lt;STRONG&gt;"&lt;A href="http://www.splunk.com" target="_blank" rel="noopener"&gt;www.splunk.com&lt;/A&gt;"&lt;BR /&gt;&lt;/STRONG&gt;For all the values respectively.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;How do I achieve this within one ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 04:07:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659561#M54292</guid>
      <dc:creator>Naa_Win</dc:creator>
      <dc:date>2023-10-04T04:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659589#M54293</link>
      <description>&lt;P&gt;One panel can only use one type of drilldown. &amp;nbsp;There can be several ways to hack something out. &amp;nbsp;The most effective is to build a custom Web application to redirect the browser to whichever end URL it outputs based on the variables you send it. &amp;nbsp;Alternative, you may settle with a lesser workaround: drilldown to a custom search (or a dashboard, or even just change another panel on the same dashboard) to display the URL you intend to send the browser to; then ask your user to copy and paste.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 07:16:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659589#M54293</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2023-10-04T07:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659615#M54294</link>
      <description>&lt;P&gt;You can use conditions in drilldowns to determine which field/column has been clicked&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;        &amp;lt;drilldown&amp;gt;
          &amp;lt;condition field="Name"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;your search link&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
          &amp;lt;condition field="Organization"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;your organisation link&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
        &amp;lt;/drilldown&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 04 Oct 2023 08:39:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659615#M54294</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-10-04T08:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659703#M54296</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;That Worked...... BUT !!!&lt;BR /&gt;&lt;BR /&gt;But, it is having some defect... When I click the Splunk/google/facebook its going to "&lt;A href="http://www.splunk.com&amp;quot;" target="_blank"&gt;www.splunk.com"&lt;/A&gt;&amp;nbsp;ONLY.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;link target="_blank"&amp;gt;www.splunk.com&amp;lt;/link&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;I have a url as well in my lookup like, what I'm looking is if i click the splunk it has to go with respective url. same way with other organizations&lt;BR /&gt;&lt;BR /&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp;Organization&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Count&amp;nbsp;&lt;BR /&gt;Bob&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; splunk&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A href="http://www.splunk.com&amp;nbsp;" target="_blank"&gt;www.splunk.com&amp;nbsp;&lt;/A&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;BR /&gt;Matt&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;google&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;A href="http://www.google.com&amp;nbsp;" target="_blank"&gt;www.google.com&amp;nbsp;&lt;/A&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 15&lt;BR /&gt;smith&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; facebook&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A href="http://www.facebook.com&amp;nbsp;" target="_blank"&gt;www.facebook.com&amp;nbsp;&lt;/A&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 9&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 18:43:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659703#M54296</guid>
      <dc:creator>Naa_Win</dc:creator>
      <dc:date>2023-10-04T18:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659707#M54297</link>
      <description>&lt;P&gt;In drilldown, you have access to $click.value2$ which is the cell value. &amp;nbsp;You then program &amp;lt;condition/&amp;gt; with exact value.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 19:02:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659707#M54297</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2023-10-04T19:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659715#M54299</link>
      <description>&lt;LI-CODE lang="markup"&gt;&amp;lt;drilldown&amp;gt;
          &amp;lt;condition field="Name"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;| inputlookup myfile.csv&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
          &amp;lt;condition field="Organization"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;www.Splunk.com&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
        &amp;lt;/drilldown&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;If I select Google in the Name field, it's getting redirect to the &lt;A href="http://www.splunk.com" target="_blank"&gt;www.splunk.com&lt;/A&gt;&amp;nbsp;only&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 20:13:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659715#M54299</guid>
      <dc:creator>Naa_Win</dc:creator>
      <dc:date>2023-10-04T20:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659728#M54301</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/258179"&gt;@Naa_Win&lt;/a&gt;&amp;nbsp;In your drilldown code do&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;condition field="Organization"&amp;gt;
  &amp;lt;link target="_blank"&amp;gt;$row.URL$&amp;lt;/link&amp;gt;
&amp;lt;/condition&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;Note that if you want to add any characters to the URL or url string that must be encoded, use&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$row.URL|s$&lt;/STRONG&gt; or if you want to prevent any character encoding use &lt;STRONG&gt;$row.URL|n$&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If you also want to do the same if the URL field is clicked, add a new condition with the field=URL&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 21:42:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659728#M54301</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-10-04T21:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659729#M54302</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;drilldown&amp;gt;
          &amp;lt;condition field="Name"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;| inputlookup myfile.csv&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
          &amp;lt;condition field="Organization"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;$row.URL|n$&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
          &amp;lt;condition field="URL"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;$click.value2|n$&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
        &amp;lt;/drilldown&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 08:27:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659729#M54302</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-10-05T08:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659737#M54303</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&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 code, It didn't worked with my case.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Sorry if it's confusing... I have a dashboard table with below.&amp;nbsp; If i click value in "Organization" or URL, it has to go specific url&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;example: when i click google it has to direct to the url "&lt;SPAN&gt;&amp;nbsp; &lt;A href="https://air222.com/recxGlfW9picLnjwj" target="_blank" rel="noopener"&gt;https://air222.com/recxGlfW9picLnjwj&lt;/A&gt;&lt;/SPAN&gt;" in new tab.&amp;nbsp;&lt;BR /&gt;or if that doesn't work at least if i click url it has to go that url in new tab&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp;Organization&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bob&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; splunk&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A href="https://air222.com/6FBPUQ3Di0FC3T" target="_blank" rel="noopener"&gt;https://air222.com/6FBPUQ3Di0FC3T&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Matt&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;google&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;A href="https://air222.com/recxGlfW9picLnjwj" target="_blank" rel="noopener"&gt;https://air222.com/recxGlfW9picLnjwj&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;smith&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; facebook&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;A href="https://air222.com/recRRoUIFOMxSmjRf" target="_blank" rel="noopener"&gt;https://air222.com/recRRoUIFOMxSmjRf&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 23:19:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659737#M54303</guid>
      <dc:creator>Naa_Win</dc:creator>
      <dc:date>2023-10-04T23:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659738#M54304</link>
      <description>&lt;P&gt;It's not confusing, it should work if configured correctly.&lt;/P&gt;&lt;P&gt;So having changed the &amp;lt;condition&amp;gt;, what does it do when you click google?&lt;/P&gt;&lt;P&gt;What is the config for your&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;option name="drilldown"&amp;gt;XXX&amp;lt;/option&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;for that table?&lt;/P&gt;&lt;P&gt;XXX should be&amp;nbsp;&lt;STRONG&gt;row&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 23:44:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659738#M54304</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-10-04T23:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple drilldowns</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659755#M54307</link>
      <description>&lt;P&gt;If this is not working, please share your exact dashboard source as something might have been lost in converting the answer to your solution.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 08:28:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Multiple-drilldowns/m-p/659755#M54307</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-10-05T08:28:48Z</dc:date>
    </item>
  </channel>
</rss>

