<?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 Row total, not percent not total in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Row-total-not-percent-not-total/m-p/665651#M13929</link>
    <description>&lt;P&gt;Hey everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am at a loss here and need help. This seems like it should be something very easy to, and it probably is, but I am completely missing it.&lt;/P&gt;&lt;P&gt;I simply need to add a calculation that takes the "Failed" value and divides it by the "Passed" value in the attached document for each semester (fall and spring) down the column. In other words each row should have a percent for each year and semester.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a field in the attached document titled "Calculated Item 2" which is where this calculated value should go and appear to the end user. I have several years across the top with semesters under those.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks everyone, very frustrated here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gary&lt;/P&gt;</description>
    <pubDate>Sun, 28 Jun 2020 19:17:05 GMT</pubDate>
    <dc:creator>ghartge</dc:creator>
    <dc:date>2020-06-28T19:17:05Z</dc:date>
    <item>
      <title>Row total, not percent not total</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Row-total-not-percent-not-total/m-p/665651#M13929</link>
      <description>&lt;P&gt;Hey everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am at a loss here and need help. This seems like it should be something very easy to, and it probably is, but I am completely missing it.&lt;/P&gt;&lt;P&gt;I simply need to add a calculation that takes the "Failed" value and divides it by the "Passed" value in the attached document for each semester (fall and spring) down the column. In other words each row should have a percent for each year and semester.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a field in the attached document titled "Calculated Item 2" which is where this calculated value should go and appear to the end user. I have several years across the top with semesters under those.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks everyone, very frustrated here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gary&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2020 19:17:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Row-total-not-percent-not-total/m-p/665651#M13929</guid>
      <dc:creator>ghartge</dc:creator>
      <dc:date>2020-06-28T19:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Row total, not percent not total</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Row-total-not-percent-not-total/m-p/665714#M13931</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/99545"&gt;@ghartge&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need to use Aggregated Measure. Please try this:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sum [_ByGroup_] ('Failed'n) / Sum [_ByGroup_] ('Passed'n)&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Comm_Capture.PNG" style="width: 697px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/46749i10DD46ADB64B4727/image-size/large?v=v2&amp;amp;px=999" role="button" title="Comm_Capture.PNG" alt="Comm_Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Below is a picture showing the difference between using simple calculated measure &lt;FONT face="courier new,courier"&gt;Failed / Passed&lt;/FONT&gt; and aggregated measure &lt;FONT face="courier new,courier"&gt;Sum ByGroup Failed / Sum ByGroup Passed&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Comm_Capture2.PNG" style="width: 703px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/46750iAE55DE06D05D8969/image-size/large?v=v2&amp;amp;px=999" role="button" title="Comm_Capture2.PNG" alt="Comm_Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Petri&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 07:14:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Row-total-not-percent-not-total/m-p/665714#M13931</guid>
      <dc:creator>PetriRoine</dc:creator>
      <dc:date>2020-06-29T07:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Row total, not percent not total</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Row-total-not-percent-not-total/m-p/665777#M13937</link>
      <description>&lt;P&gt;Thank you PetriRoine!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I swear I tried that and it produced very odd values, but I obviously did something incorrectly. Thank you for the clarity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gary&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 12:44:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Row-total-not-percent-not-total/m-p/665777#M13937</guid>
      <dc:creator>ghartge</dc:creator>
      <dc:date>2020-06-29T12:44:07Z</dc:date>
    </item>
  </channel>
</rss>

