<?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: Dynamic Dimensions in VA in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280679#M4692</link>
    <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope the issue is that while importing from xlsx 2a is getting converted to _x0032_a&lt;/P&gt;</description>
    <pubDate>Tue, 28 Jun 2016 07:04:39 GMT</pubDate>
    <dc:creator>pratikjageera</dc:creator>
    <dc:date>2016-06-28T07:04:39Z</dc:date>
    <item>
      <title>Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280024#M4676</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;There are multiple examples of what I am trying to do here - create dynamic dimensions within VA, to illustrate how a numeric field is broken by different categorical variables:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings15/SAS1854-2015.pdf&amp;nbsp;" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings15/SAS1854-2015.pdf&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/sgf/2016/04/27/use-parameters-to-pick-your-metric-in-visual-analytics-reports/#comment-192050" target="_blank"&gt;http://blogs.sas.com/content/sgf/2016/04/27/use-parameters-to-pick-your-metric-in-visual-analytics-reports/#comment-192050&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but I'm not quite getting the results I want - in step 1: creating a custom category, the field used as a source for the custom category does matter, it subsets the resulting dashboard (whereas the walk-throughs say the source field should not matter so long as the cardinality is large enough to accommodate the results). &amp;nbsp;So I'm going to create a basic example to illustrate my problem... I'm goign to follow the SAS paper, though the blog example is quite similar. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Prelims: Create dummy data... and put it on AUTOLOAD / LASR etc...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dummy Data:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data que; &lt;BR /&gt;input cat1 $ cat2 $ cat3 $ cat4 $ num1 ; &lt;BR /&gt;cards;&lt;BR /&gt;Z S B C 0.296545295&lt;BR /&gt;F X I Q 0.555111915&lt;BR /&gt;D R M V 0.257882082&lt;BR /&gt;C B W R 0.820439665&lt;BR /&gt;L L F J 0.653780736&lt;BR /&gt;F C K K 0.405469842&lt;BR /&gt;O N Y J 0.756141762&lt;BR /&gt;N C K B 0.069636594&lt;BR /&gt;Y R H B 0.166439445&lt;BR /&gt;Z N M Q 0.726950181&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Create a custom Category&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll use cat1. &amp;nbsp;Since it has more than 4 levels, this should be appropriate. &amp;nbsp;The two walk-throughs differ as to whether or not to use "Group remaining values as Other"...I will follow the paper and bin all levels of cat1 to avoid "Group remaining values as Other". &amp;nbsp;(See Custom_Category_VA).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Create button bar, drag Custom_Category_VA on to it (e.g. Roles: Category: "Custom_Category_1"), remove Role:Frequency for aesthetics. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Create a parameter, Type=Character. &amp;nbsp;Click OK. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Create a Calculated Item. &amp;nbsp;This is the hard part and likely where I've made a mistake. &amp;nbsp;The paper provides several pages of interacting with the drag/drop Expression builder. &amp;nbsp;Here, I will use the "Text" option and share the code (following the blog example). &amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF ('Parameter 1'p = 'cat1' ) RETURN 'cat1'n ELSE ( &lt;BR /&gt;&amp;nbsp;IF ( 'Parameter 1'p = 'cat2' ) RETURN 'cat2'n ELSE ( &lt;BR /&gt;&amp;nbsp; IF ( 'Parameter 1'p = 'cat3' ) RETURN 'cat3'n ELSE (&lt;BR /&gt;'cat4'n)))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Putting it all together: Put a barchart&amp;nbsp;in the report, so we have something to look at. &amp;nbsp;Create an interaction from the button bar to the barchart. &amp;nbsp;Barchart: Roles: Category: "Calculated Item (1)" and Measures: "num1"... however, this does not work. &amp;nbsp;The bar chart displays the values contingent on the original Step 1 Custom Category...&lt;/P&gt;
&lt;P&gt;* clicking the button bar cat4 gives a bar chart with categories of Z,O,Y &amp;nbsp;(cat1 has 8 distinct levels C,D,F,L,N,O,Y,Z)&lt;/P&gt;
&lt;P&gt;* clicking the button bar cat3 gives &lt;SPAN&gt;a bar chart with categories of &lt;/SPAN&gt;F,L,N&lt;/P&gt;
&lt;P&gt;* clicking the button bar cat2 &lt;SPAN&gt;gives a bar chart with categories of &lt;/SPAN&gt;&amp;nbsp;D&lt;/P&gt;
&lt;P&gt;* clicking the button bar cat1 gives a bar chart with categories of C&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using SAS Visual Analytics Designer Version: 7.3 Hotfix 03&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank-you for any help you might provide,&lt;/P&gt;
&lt;P&gt;Wes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12692i6F39C9682836DF39/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Button_Bar_VA.JPG" title="Button_Bar_VA.JPG" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12693iF6A95A3A7B09D558/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Custom_Category_VA.JPG" title="Custom_Category_VA.JPG" /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 16:40:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280024#M4676</guid>
      <dc:creator>mccl4488</dc:creator>
      <dc:date>2016-06-24T16:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280155#M4681</link>
      <description>&lt;P&gt;Hi Wes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recreated your example - but I'm not sure I understand the issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I * think* you wanted to see the catgories change when you clicked the button bar for it and this was what you meant by dynamic dimensions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's what I did ... you can let&amp;nbsp; me know if this is what you were expecting to happen instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Changed your data so it would be more clear what row and variable was being displayed. &lt;BR /&gt;&lt;BR /&gt;Basically - if you see an X on the x-axis - it's not pulling the dynamic category.&amp;nbsp; It display a letter with number unless its cat1 - then it's just A, B, or C.&amp;nbsp; I changed the number value but it doesn't matter - yours worked just as well.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;/*Dummy Data: */

data que;
input cat1 $ cat2 $ cat3 $ cat4 $ num1 ;
cards;
A X  X  X  0.21
B X  X  X  0.25
C X  X  X  0.29
D 2a X  X  0.81
E 2b X  X  0.89
F X  3a X  0.41
G X  3b X  0.49
H X  X  4a 0.01
I X  X  4b 0.06
J X  X  4c 0.09
;
run;&lt;/PRE&gt;
&lt;OL&gt;
&lt;LI&gt;Here's my Custom Category assignment based on cat1 data item:&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3749i254C0C9423DB3D83/image-size/original?v=v2&amp;amp;px=-1" alt="sascom_para1.png" title="sascom_para1.png" border="0" height="472" width="633" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Created a parameter called Parameter 1.&amp;nbsp;&amp;nbsp; Then created a calculated item called Calc Item.&amp;nbsp; Here's what it looked like:&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3750i2ACA2EDEDD82D0E6/image-size/original?v=v2&amp;amp;px=-1" alt="sascom_para2.png" title="sascom_para2.png" border="0" height="331" width="629" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Here's my report layout:&lt;BR /&gt;&lt;BR /&gt;- Add Button bar to the section area.&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Assign &lt;STRONG&gt;Category&lt;/STRONG&gt; = Custom Cat VA; &lt;STRONG&gt;Frequency&lt;/STRONG&gt; = Empty;&lt;STRONG&gt; Parameter&lt;/STRONG&gt; = Parameter 1&lt;BR /&gt;&lt;BR /&gt;-Add bar chart to the design area:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Assign &lt;STRONG&gt;Category&lt;/STRONG&gt; = Calc Item&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Measures&lt;/STRONG&gt; = num1&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the results when you select each button.&amp;nbsp; Notice that the labels change on the X-Axis. You may need to study the dat to understand what is happening.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3751iF5503FF75AB196B9/image-size/original?v=v2&amp;amp;px=-1" alt="sascom_para3.gif" title="sascom_para3.gif" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2016 16:05:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280155#M4681</guid>
      <dc:creator>TriciaAanderud</dc:creator>
      <dc:date>2016-06-25T16:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280169#M4682</link>
      <description>&lt;P&gt;Thank-you for your time and sorry I was unclear - I ran low on time as I did the write-up. &amp;nbsp;I think you have recreated what I have done (and wrote it up quite nicely!) but this still won't get me where I need to go unless I create a table just for this purpose (which perhaps is the only way to make it work). &amp;nbsp;Each of the tabs you click on only displays a subset of the data. &amp;nbsp;Each "X" in your dataset would be a valid value in a typical dataset. &amp;nbsp;What I would like is to create a *dynamic dimension* and use it as the "Group" variable in a barchart which already has "Category" of Year. &amp;nbsp;Clicking on the button bar would then show the one-way frequencies of a single measure using multiple categorical variables. &amp;nbsp;The numerical measure remains the same, but is broken down by different dimensions, hopefully making the data quite clear. &amp;nbsp;Similarly, if the technique holds, I can include a crosstab with a dynamic dimension. &amp;nbsp;The examples in the links do numeric variables (swap one measure for another), but mention that it should be possible with categorical variables as well. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's easy enough to do this for separate "Sections" but I'd like to reduce clutter / increase clarity:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;"cat1" as Group&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3756i15E32D9CADCE5F1E/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="barchartSAS.png" title="barchartSAS.png" width="685" height="274" /&gt;&lt;/P&gt;
&lt;P&gt;"cat2" as Group&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3757iBB0AD01FE7AC8D56/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="barchartSAS2.png" title="barchartSAS2.png" width="693" height="253" /&gt;&lt;/P&gt;
&lt;P&gt;...etc...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2016 17:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280169#M4682</guid>
      <dc:creator>mccl4488</dc:creator>
      <dc:date>2016-06-25T17:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280193#M4683</link>
      <description>&lt;P&gt;You are correct - that's exactly what is happening. When you add the cat1 custom category to the button bar - you are essentially asking for filter on the data. &amp;nbsp;Even with the parameter - it's still part of a filter. &amp;nbsp;It's what I'm trying illustrate here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3759i6E2D6713F71E8F55/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="va_param05.png" title="va_param05.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To implement your idea - you have to have some way to filter the dataset that doesn't change the data results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could stack the data multiple times. &amp;nbsp;Essentially it is what I'm showing above but it would just be a column of categories and a measure.Based on how your data looks - it might create duplicate values. You would just have to be aware that everything has to be filtered when you want to show the data (to avoid the dups).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the data was pre-summarized it could work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let us know what you work out. &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jun 2016 10:50:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280193#M4683</guid>
      <dc:creator>TriciaAanderud</dc:creator>
      <dc:date>2016-06-26T10:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280470#M4685</link>
      <description>&lt;P&gt;After watching the youtube video (available through the links above) I found my mistake. &amp;nbsp;I was using interactions between the button bar and the barplot and I may not have assigned the parameter to the button bar. &amp;nbsp;At any rate, the video provides a very good overview if anyone is interested. &amp;nbsp;Problem solved.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 16:02:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280470#M4685</guid>
      <dc:creator>mccl4488</dc:creator>
      <dc:date>2016-06-27T16:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280668#M4691</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Tricia ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried replicating the scenario but the Bar Chart is not displaying properly. I check with all aspect but could not find the reason. Can you help. Please find the attached screens and let me know if anything else is required.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3811i1364B5ACF8B48FF2/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Calc Item.PNG" title="Calc Item.PNG" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3812i9BEF699D64D8794A/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Bar Chart.PNG" title="Bar Chart.PNG" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3813i4788E021010B8EA2/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Custom Cat.PNG" title="Custom Cat.PNG" /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 06:21:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280668#M4691</guid>
      <dc:creator>pratikjageera</dc:creator>
      <dc:date>2016-06-28T06:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280679#M4692</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope the issue is that while importing from xlsx 2a is getting converted to _x0032_a&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 07:04:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280679#M4692</guid>
      <dc:creator>pratikjageera</dc:creator>
      <dc:date>2016-06-28T07:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280713#M4693</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I think you are correct - looks like the import wasn't clean.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your resulting data set should resemble this one (without the colors).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3759i6E2D6713F71E8F55/image-size/original?v=v2&amp;amp;px=-1" alt="va_param05.png" title="va_param05.png" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See you are close to genius already today!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 10:11:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280713#M4693</guid>
      <dc:creator>TriciaAanderud</dc:creator>
      <dc:date>2016-06-28T10:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Dimensions in VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280978#M4697</link>
      <description>Thanks Tricia &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 29 Jun 2016 03:52:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Dimensions-in-VA/m-p/280978#M4697</guid>
      <dc:creator>pratikjageera</dc:creator>
      <dc:date>2016-06-29T03:52:42Z</dc:date>
    </item>
  </channel>
</rss>

