<?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 drill down from visual SAS Visual analytics in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/drill-down-from-visual-SAS-Visual-analytics/m-p/796038#M15817</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a vertical bar chart and on the horizontal axis there are months (1-12).&lt;/P&gt;&lt;P&gt;What I would like to do is create a functionality for users that if they double click on the bar for month 9 for instance that it leads them to a table in a different report section with details of month 9 in it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Billybob73_0-1644842977113.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68445i78533C97E69785EC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Billybob73_0-1644842977113.png" alt="Billybob73_0-1644842977113.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I know things can be done with parameters, but I can't see how I can use one in this case.&lt;/P&gt;&lt;P&gt;Thanks for help or suggestions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;BB&lt;/P&gt;</description>
    <pubDate>Mon, 14 Feb 2022 12:52:21 GMT</pubDate>
    <dc:creator>Billybob73</dc:creator>
    <dc:date>2022-02-14T12:52:21Z</dc:date>
    <item>
      <title>drill down from visual SAS Visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/drill-down-from-visual-SAS-Visual-analytics/m-p/796038#M15817</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a vertical bar chart and on the horizontal axis there are months (1-12).&lt;/P&gt;&lt;P&gt;What I would like to do is create a functionality for users that if they double click on the bar for month 9 for instance that it leads them to a table in a different report section with details of month 9 in it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Billybob73_0-1644842977113.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68445i78533C97E69785EC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Billybob73_0-1644842977113.png" alt="Billybob73_0-1644842977113.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I know things can be done with parameters, but I can't see how I can use one in this case.&lt;/P&gt;&lt;P&gt;Thanks for help or suggestions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;BB&lt;/P&gt;</description>
      <pubDate>Mon, 14 Feb 2022 12:52:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/drill-down-from-visual-SAS-Visual-analytics/m-p/796038#M15817</guid>
      <dc:creator>Billybob73</dc:creator>
      <dc:date>2022-02-14T12:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: drill down from visual SAS Visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/drill-down-from-visual-SAS-Visual-analytics/m-p/796102#M15819</link>
      <description>&lt;P&gt;This is done using linking.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, you create a second page, which includes *all* of your detail data.&amp;nbsp; Here, I use a separate dataset that has the detail data; you could do this entire report with just one dataset if you had a computed total, but this is slightly easier - I like to do summaries outside of VA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data htemp.bike_usage;
input month miles;
datalines;
1 100
2 200
3 300
4 400
5 500
6 600
7 500
8 500
9 800
10 1200
11 1100
12 1200
;;;;
run;

data htemp.month_detail;
input month means_of_transport $ miles;
datalines;
9 Bicycle 200
9 Bus 200
9 Car 200
9 Van 200
10 Bicycle 300
10 Bus 400
10 Car 200
10 Van 300
;;;;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then load these to CAS if you haven't already, and then I make a report, using the month summary dataset for the chart you made (the bar chart), titled "Overview", and then a second tab, "Detail", which is a list table.&amp;nbsp; You can of course do something other than list table, but the important thing is that it needs to have "month" as a field somewhere - it can be a "hidden" field, but it has to be associated with the chart somehow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="miles_detail_tab.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68450iB05747612C602C72/image-size/large?v=v2&amp;amp;px=999" role="button" title="miles_detail_tab.png" alt="miles_detail_tab.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, go to the Overview report and select Actions, then the bar chart, and open Page Links.&amp;nbsp; There should be a selection for Detail, and a note that you need to map the data (since it's from a different dataset).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="miles_actions_mustmap.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68451i4EB1308FD9466853/image-size/large?v=v2&amp;amp;px=999" role="button" title="miles_actions_mustmap.png" alt="miles_actions_mustmap.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Click on Map, and if the month variable is the same name in both datasets it'll auto-select as the mapping criteria - if not, pick the right mapping variable (think the variable which tells SAS which row should be mapped to which row from the left and right datasets).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you've mapped the variable, then bars should become clickable, and you'll get the drilldown you wanted!&amp;nbsp; It will filter the Detail tab with the Month value from the bar.&amp;nbsp; Note the breadcrumb at the top which lets you go back easily, and the filter button showing what was filtered by.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="miles_filtered.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68452i1BBE5672A366D774/image-size/large?v=v2&amp;amp;px=999" role="button" title="miles_filtered.png" alt="miles_filtered.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Feb 2022 18:01:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/drill-down-from-visual-SAS-Visual-analytics/m-p/796102#M15819</guid>
      <dc:creator>snoopy369</dc:creator>
      <dc:date>2022-02-14T18:01:05Z</dc:date>
    </item>
  </channel>
</rss>

