<?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: Column Percentage in bar in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274004#M4441</link>
    <description>&lt;P&gt;&lt;SPAN class="login-bold"&gt;Ujjawal&lt;/SPAN&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're going to need to pre-summarize your data prior to loading it into SAS VA so that there is 1 line item (1 row) per each Band.&lt;/P&gt;
&lt;P&gt;So that for each Band, you have a GroupACount and a GroupBCount (then you can do those Aggregations I mentioned in earlier post replies).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not a SAS data step programmer ironically but I "Googled" the WWW to get sample code and I ran it on the subset of your raw data you last posted.&amp;nbsp; Proc Freq can get you the counts, then Proc Transpose to a wide dataset.&amp;nbsp; For example ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;freq&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=WORK.UJJAWAL_RAWDATA_SAMPLE &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;noprint&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;table&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; BANDS*GROUP / &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;out&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=temp &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;sparse&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;transpose&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=temp &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;out&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=want (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;drop&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=_:);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;by&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; BANDS;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;id&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; GROUP;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; COUNT;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;IMG title="TransposedSummarizedDataResult.png" alt="TransposedSummarizedDataResult.png" src="https://communities.sas.com/t5/image/serverpage/image-id/3397i0AF6CA8420C7ADF9/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;At this point, if you need continued detailed assistance, I would need to defer you to your local SAS India Tech Support.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;Sincerely,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;Ted Stolarczyk, U.S. SAS Customer Loyalty team&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 31 May 2016 02:26:22 GMT</pubDate>
    <dc:creator>TedStolarczyk</dc:creator>
    <dc:date>2016-05-31T02:26:22Z</dc:date>
    <item>
      <title>Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/272841#M4355</link>
      <description>&lt;P&gt;I want to show column percentages in a bar chart that comprises of two bars. See the image below -&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3319iDEE34F2C962947A5/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="sas vaa.png" title="sas vaa.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am showing frequency distribution of 2 groups in the chart. In SAS VA, it calculates FREQUENCY PERCENT taking total count as base in denominator instead of taking count of a particular group. I am able to figure it out in CROSS TAB but not able to calculate in charts.&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2016 18:45:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/272841#M4355</guid>
      <dc:creator>Ujjawal</dc:creator>
      <dc:date>2016-05-24T18:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273405#M4405</link>
      <description>&lt;P&gt;Ujjawal:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before I answer Yes or No (for out of the box funcitonality) or Yes or No (for customized functionality via something like VA Custom Graph Builder or some other mechanism), I need to ask a clarifying question 1st ...&lt;/P&gt;
&lt;P&gt;At the bottom of each bar (respectively) in your provided bar visual, going left to right ... are you expecting 20% (instead of 18%), 48% (instead of 33%), 33% (instead of 5%), and 98% (instead of 44%) respectively?&lt;/P&gt;
&lt;P&gt;Or am I missing the gist of your question?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps a compare/contrast screen capture ... SAS VA vs. something else (e.g. Excel)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sincerely,&lt;/P&gt;
&lt;P&gt;Ted Stolarczyk, SAS Customer Loyalty team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2016 21:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273405#M4405</guid>
      <dc:creator>TedStolarczyk</dc:creator>
      <dc:date>2016-05-26T21:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273697#M4418</link>
      <description>&lt;P&gt;It's my bad i am showing wrong values at the bottom of each bar. I&amp;nbsp;forgot to select "Bands" while preparing chart.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At the bottom of each bar in provided bar visual, going left to right ... i am&amp;nbsp;expecting "AA" "BB" "CC" "DD".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know incase any question(s)&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2016 19:37:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273697#M4418</guid>
      <dc:creator>Ujjawal</dc:creator>
      <dc:date>2016-05-27T19:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273733#M4422</link>
      <description>&lt;P&gt;&lt;SPAN class="login-bold"&gt;Ujjawal&lt;/SPAN&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So is this what you are looking to generate in VA?&amp;nbsp; This was created with basic VA bar chart functionality (no Custom Graph Builder utilized here) ...&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/12597iFE9171A5E21FCBB3/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Directly_Out_Of_VA.jpg" title="Directly_Out_Of_VA.jpg" /&gt;</description>
      <pubDate>Fri, 27 May 2016 22:04:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273733#M4422</guid>
      <dc:creator>TedStolarczyk</dc:creator>
      <dc:date>2016-05-27T22:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273751#M4423</link>
      <description>&lt;P&gt;Thanks! This is what i am looking for. Could you help me with the aggreagated measures you have used? I&amp;nbsp;am new to SAS VA. I am unable to create aggregated measures for each of the groups.&lt;/P&gt;</description>
      <pubDate>Sat, 28 May 2016 06:26:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273751#M4423</guid>
      <dc:creator>Ujjawal</dc:creator>
      <dc:date>2016-05-28T06:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273950#M4434</link>
      <description>&lt;P&gt;I am in urgent need of it. I want to complete the dashboard by end of the day. Can someone please respond on it? How the aggregated measures are built for the chart shown below?The percentages are column percentages of the total as shown in the table below. The percentages add upto 100%.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3393i80498A91BD34F2DA/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="sas_VA.png" title="sas_VA.png" /&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3392iFFCC25B0513D33AA/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Directly_Out_Of_VA (1).jpg" title="Directly_Out_Of_VA (1).jpg" width="521" height="556" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2016 18:41:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273950#M4434</guid>
      <dc:creator>Ujjawal</dc:creator>
      <dc:date>2016-05-30T18:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273954#M4435</link>
      <description>&lt;P&gt;Ujjawal:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See attached PDF file that has screen captures series of steps to take.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In addition, if you are new to custom calculations and aggregations within VA, I'd suggest watching this recorded webinar on the topic (and its corresponding material):&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sas.webex.com/ec0701lsp13/eventcenter/recording/recordAction.do?theAction=poprecord&amp;amp;AT=pb&amp;amp;internalRecordTicket=4832534b00000002b823230f0e97628413d284d3dbf0a2fd16d8a8fad12901b46b743f931946d1e5&amp;amp;renewticket=0&amp;amp;isurlact=true&amp;amp;recordID=97470272&amp;amp;apiname=lsr.php&amp;amp;appid=50459&amp;amp;format=short&amp;amp;needFilter=false&amp;amp;&amp;amp;SP=EC&amp;amp;rID=97470272&amp;amp;RCID=79b47c33ea2b406e9fcc462437ea811f&amp;amp;siteurl=sas&amp;amp;actappname=ec0701lsp13&amp;amp;actname=%2Feventcenter%2Fframe%2Fg.do&amp;amp;EMAIL=ted.stolarczyk%40sas.com&amp;amp;rnd=0079518538&amp;amp;entappname=url0201lsp13&amp;amp;entactname=%2FnbrRecordingURL.do" target="_blank"&gt;view the on-demand version&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://sems.sas.com/bess/get?id=-163842.-1:-ilthnxk4:rzzb.1erfcbafrf0&amp;amp;RZNVY=grq.fgbynepmlx@fnf.pbz&amp;amp;nccvq=50459" target="_blank"&gt;presentation slides&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://sems.sas.com/bess/get?id=-163843.-1:-ilthnxk4:rzzb.1erfcbafrf0&amp;amp;RZNVY=grq.fgbynepmlx@fnf.pbz&amp;amp;nccvq=50459" target="_blank"&gt;Q&amp;amp;A topics&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sincerely,&lt;/P&gt;
&lt;P&gt;Ted&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2016 18:48:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273954#M4435</guid>
      <dc:creator>TedStolarczyk</dc:creator>
      <dc:date>2016-05-30T18:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273956#M4436</link>
      <description>&lt;P&gt;Thank you so much for your reply and providing useful materials about aggregated measure. Unfortunately, i&amp;nbsp;don't have summarized variables - "&lt;SPAN&gt;GrpACount" and 'GrpBCount"&amp;nbsp;&lt;/SPAN&gt;in my data. They are raw values in my data. How can i create these 2 summarized variables? My raw data looks like below -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 96pt;" border="0" width="128" cellspacing="0" cellpadding="0"&gt;&lt;COLGROUP&gt;&lt;COL style="width: 48pt;" span="2" width="64" /&gt; &lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD width="64" height="20" class="xl63" style="height: 15.0pt; width: 48pt;"&gt;Group&lt;/TD&gt;
&lt;TD width="64" class="xl63" style="border-left: none; width: 48pt;"&gt;Bands&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;A&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;AA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;A&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;AA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;B&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;BB&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;A&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;BB&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;A&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;CC&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;B&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;AA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;B&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;BB&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;B&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;CC&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;B&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;AA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;A&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;CC&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;A&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;DD&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;A&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;DD&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;B&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;DD&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl64" style="height: 15.0pt; border-top: none;"&gt;B&lt;/TD&gt;
&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;DD&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Mon, 30 May 2016 19:00:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273956#M4436</guid>
      <dc:creator>Ujjawal</dc:creator>
      <dc:date>2016-05-30T19:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273967#M4437</link>
      <description>&lt;P&gt;&lt;SPAN class="login-bold"&gt;Ujjawal&lt;/SPAN&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you e-mailing from the U.S.?&lt;/P&gt;
&lt;P&gt;SAS U.S. Operations is closed for Memorial Holiday.&lt;/P&gt;
&lt;P&gt;I don't have access to SAS Visual Analytics software right now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a local SAS Tech Support # you can call?&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.sas.com/en_us/contact.html#m=international-offices" target="_blank"&gt;http://www.sas.com/en_us/contact.html#m=international-offices&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sincerely,&lt;/P&gt;
&lt;P&gt;Ted&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2016 19:41:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273967#M4437</guid>
      <dc:creator>TedStolarczyk</dc:creator>
      <dc:date>2016-05-30T19:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273969#M4438</link>
      <description>I am emailing from India. The local tech support must be closed at this time as it's mid night in India. You enjoy your holiday. Thank you for your reply. It would be a great help if you solve it tomorrow.</description>
      <pubDate>Mon, 30 May 2016 19:47:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/273969#M4438</guid>
      <dc:creator>Ujjawal</dc:creator>
      <dc:date>2016-05-30T19:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274004#M4441</link>
      <description>&lt;P&gt;&lt;SPAN class="login-bold"&gt;Ujjawal&lt;/SPAN&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're going to need to pre-summarize your data prior to loading it into SAS VA so that there is 1 line item (1 row) per each Band.&lt;/P&gt;
&lt;P&gt;So that for each Band, you have a GroupACount and a GroupBCount (then you can do those Aggregations I mentioned in earlier post replies).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not a SAS data step programmer ironically but I "Googled" the WWW to get sample code and I ran it on the subset of your raw data you last posted.&amp;nbsp; Proc Freq can get you the counts, then Proc Transpose to a wide dataset.&amp;nbsp; For example ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;freq&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=WORK.UJJAWAL_RAWDATA_SAMPLE &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;noprint&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;table&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; BANDS*GROUP / &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;out&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=temp &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;sparse&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;transpose&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=temp &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;out&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=want (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;drop&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=_:);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;by&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; BANDS;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;id&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; GROUP;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; COUNT;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;IMG title="TransposedSummarizedDataResult.png" alt="TransposedSummarizedDataResult.png" src="https://communities.sas.com/t5/image/serverpage/image-id/3397i0AF6CA8420C7ADF9/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;At this point, if you need continued detailed assistance, I would need to defer you to your local SAS India Tech Support.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;Sincerely,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;Ted Stolarczyk, U.S. SAS Customer Loyalty team&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 02:26:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274004#M4441</guid>
      <dc:creator>TedStolarczyk</dc:creator>
      <dc:date>2016-05-31T02:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274007#M4442</link>
      <description>&lt;P&gt;When I copy/paste the PROC TRANSPOSE code, it makes a smiley face for some reason.&lt;/P&gt;
&lt;P&gt;So here's a Print Screen of it ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="CodeUsed.png" alt="CodeUsed.png" src="https://communities.sas.com/t5/image/serverpage/image-id/3398iA57361DD6EDAEB6F/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&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;</description>
      <pubDate>Tue, 31 May 2016 02:32:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274007#M4442</guid>
      <dc:creator>TedStolarczyk</dc:creator>
      <dc:date>2016-05-31T02:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274011#M4443</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4569"&gt;@TedStolarczyk﻿&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What awesome customer service - helping out with SAS code when you're not a programmer and also on your memorial day weekend! &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;
&lt;P&gt;FYI, the smiley face appears as you have the characters : and ) next to each other.&amp;nbsp; To avoid this, it is best to use the SAS code formatting block when pasting SAS code into the SAS Support Community. When replying using the Rich Text mode, you'll see the running man icon on a notepad. Use this icon to bring up the "Insert SAS code" dialog to paste your SAS code. There is some information on this at &lt;A href="https://communities.sas.com/t5/Getting-Started/How-to-add-SAS-syntax-to-your-post/ta-p/224394" target="_blank"&gt;https://communities.sas.com/t5/Getting-Started/How-to-add-SAS-syntax-to-your-post/ta-p/224394&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind Regards,&lt;/P&gt;
&lt;P&gt;Michelle&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 02:45:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274011#M4443</guid>
      <dc:creator>MichelleHomes</dc:creator>
      <dc:date>2016-05-31T02:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274082#M4452</link>
      <description>&lt;P&gt;I'll second my thanks to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4569"&gt;@TedStolarczyk﻿&lt;/a&gt;&amp;nbsp;for responding here. &amp;nbsp;For&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52588"&gt;@Ujjawal﻿&lt;/a&gt;&amp;nbsp;and anyone else getting started with SAS Visual Analytics, I think it's worth spending the time to learn from the experts in the recorded (and sometimes LIVE) Ask the Expert sessions. &amp;nbsp;There are several available right now for SAS Visual Analytics:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="3"&gt;&lt;STRONG&gt;SAS Visual Statistics: Getting Started &lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;
&lt;P&gt;This session introduces SAS Visual Statistics and its capabilities. You see how you can apply statistical modeling techniques to explore data visually.&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR valign="bottom"&gt;
&lt;TD width="200"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="200"&gt;&lt;A href="http://www.sas.com/en_us/webinars/getting-started-visual-statistics/register.html" target="_blank"&gt;&lt;STRONG&gt;Watch on-demand&lt;/STRONG&gt;&lt;/A&gt; &lt;IMG src="http://support.sas.com/training/images/arrowcircle.jpg" border="0" /&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="3"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="3"&gt;&lt;STRONG&gt;SAS Visual Analytics: An Introduction to Custom Calculations and Aggregations &lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;
&lt;P&gt;The interface of SAS Visual Analytics enables you to calculate new data items from your existing data items using an expression builder; you can calculate a company’s profits by subtracting expenses from revenues. In addition to performing calculations on numeric values, you can use calculated data items to create date and time values.&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR valign="bottom"&gt;
&lt;TD width="200"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="200"&gt;&lt;A href="http://www.sas.com/en_us/webinars/sas-visual-analytics-custom-calculations-aggregations/register.html" target="_blank"&gt;&lt;STRONG&gt;Watch on-demand&lt;/STRONG&gt;&lt;/A&gt; &lt;IMG src="http://support.sas.com/training/images/arrowcircle.jpg" border="0" /&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="3"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="3"&gt;&lt;STRONG&gt;SAS Visual Analytics: Getting Started &lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;
&lt;P&gt;This session introduces you to the components of SAS Visual Analytics, including the Home Page, the Explorer, and the Designer. It also introduces the Viewer and Mobile BI, the interfaces for viewing SAS Visual Analytics reports.&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR valign="bottom"&gt;
&lt;TD width="200"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="200"&gt;&lt;A href="http://www.sas.com/apps/webnet/video-sharing.html?bcid=4262691713001" target="_blank"&gt;&lt;STRONG&gt;Watch on-demand&lt;/STRONG&gt;&lt;/A&gt; &lt;IMG src="http://support.sas.com/training/images/arrowcircle.jpg" border="0" /&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="3"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="3"&gt;&lt;STRONG&gt;SAS Visual Analytics: Tips and Tricks for Users &lt;/STRONG&gt;&amp;nbsp;
&lt;P&gt;This session will provide you with options, tips &amp;amp; tricks, and best practices when using SAS Visual Analytics for data exploration and report design.&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR valign="bottom"&gt;
&lt;TD width="200"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="200"&gt;&lt;A href="http://www.sas.com/en_us/webinars/tips-tricks-sas-va/register.html" target="_blank"&gt;&lt;STRONG&gt;Watch on-demand&lt;/STRONG&gt;&lt;/A&gt; &lt;IMG src="http://support.sas.com/training/images/arrowcircle.jpg" border="0" /&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find these and many other Expert sessions at &lt;A href="http://support.sas.com/training/askexpert.html" target="_self"&gt;the Ask The Expert site on support.sas.com.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 13:05:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274082#M4452</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2016-05-31T13:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Column Percentage in bar</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274139#M4458</link>
      <description>Thank you everyone for reply. I appreciate such an awesome customer support. I thought it would not be so Complex. I would like this functionality to be added in coming version of SAS Visual analytics product  as it's a common feature in dashboard.</description>
      <pubDate>Tue, 31 May 2016 16:11:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Column-Percentage-in-bar/m-p/274139#M4458</guid>
      <dc:creator>Ujjawal</dc:creator>
      <dc:date>2016-05-31T16:11:27Z</dc:date>
    </item>
  </channel>
</rss>

