<?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: Summing content according to variables in one column in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620143#M19504</link>
    <description>&lt;P&gt;Assuming the input data is as follows, did you want something like below? If not then please provide further clarification.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
   infile datalines dsd;

   input
      school  : $2.
      yes     :  8.
      tot     :  8.
      gender  : $5.
      percent :  8.
   ;

   datalines;
1,20,53,boys,0.37736
1,14,61,girls,0.22951
2,13,41,boys,0.31707
2,11,25,girls,0.44000
3,10,53,boys,0.18868
4,14,54,boys,0.25926
4,9,55,girls,0.16364
5,5,41,boys,0.12195
5,13,49,girls,0.26531
6,9,40,boys,0.22500
6,11,34,girls,0.32353
7,7,36,boys,0.19444
7,9,32,girls,0.28125
8,18,55,girls,0.32727
9,12,53,boys,0.22642
9,21,64,girls,0.32813
10,15,61,boys,0.24590
10,23,49,girls,0.46939
11,14,28,boys,0.50000
11,16,28,girls,0.57143
12,8,19,boys,0.42105
12,12,25,girls,0.48000
13,11,38,boys,0.28947
13,6,24,girls,0.25000
;

proc summary data = have nway;
   class gender;
   var yes tot;
   output out = want(drop = _:) sum=sum_of_yes sum_of_tot;
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Amir.&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jan 2020 12:31:17 GMT</pubDate>
    <dc:creator>Amir</dc:creator>
    <dc:date>2020-01-27T12:31:17Z</dc:date>
    <item>
      <title>Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620134#M19498</link>
      <description>&lt;P&gt;Hi everyone! I have a dataset which is divided into columns which has students divided by gender, by the school they go to, and then there a frequencies which describe the total number of each gender per school, together with the frequency of students who consume alcohol per gender, per school. I would somehow like to sum together the values that are in the 'tot' and 'yes' columns according to the genders 'boys' and 'girls' without accounting for the school these students go to. Below you will find the data set:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like a table that has simply the columns 'sum of yes' and sum of tot' according to the genders 'boys' and 'girls' but have no clue how to achieve this- would really appreciate the help!&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;TABLE border="0" cellspacing="1" cellpadding="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;The SAS System&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;P&gt;&amp;nbsp;school&amp;nbsp; &amp;nbsp;yes&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tot&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gender&amp;nbsp; &amp;nbsp;percentage&lt;/P&gt;&lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;53&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.37736&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;61&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.22951&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;41&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.31707&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.44000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;53&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.18868&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;54&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.25926&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;55&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.16364&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;41&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.12195&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;49&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.26531&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.22500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;34&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.32353&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;36&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.19444&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;32&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.28125&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;TD&gt;55&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.32727&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;53&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.22642&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;64&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.32813&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;61&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.24590&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;TD&gt;49&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.46939&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;28&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.50000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;28&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.57143&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;19&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.42105&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;0.48000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;38&lt;/TD&gt;&lt;TD&gt;boys&lt;/TD&gt;&lt;TD&gt;0.28947&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;24&lt;/TD&gt;&lt;TD&gt;girls&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.25000&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like a table that has simply the columns 'sum of yes' and sum of tot' according to the genders 'boys' and 'girls' but have no clue how to achieve this- would really appreciate the help! I would like it to look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gender&amp;nbsp; &amp;nbsp;yes&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;tot&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;girls&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (all cumulative yes from girls) (all cumulative tot from girls)&lt;/P&gt;&lt;P&gt;boys&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(all cumulative yes from boys) (all cumulative tot from boys)&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 27 Jan 2020 14:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620134#M19498</guid>
      <dc:creator>Ebba28</dc:creator>
      <dc:date>2020-01-27T14:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620136#M19499</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/295335"&gt;@Ebba28&lt;/a&gt;&amp;nbsp;and welcome to the SAS Communities forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you might have seen, the layout of your data in your post does not quite line up with your column headings. Please make this clearer by editing your original post as well as showing us what you want the output data to look like for the given input.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; kind regards,&lt;/P&gt;
&lt;P&gt;Amir.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 11:40:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620136#M19499</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2020-01-27T11:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620137#M19500</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to provide a sample output so that it will be more clear how you would like to output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Kiran Chapidi&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 11:41:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620137#M19500</guid>
      <dc:creator>chapidi99</dc:creator>
      <dc:date>2020-01-27T11:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620138#M19501</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/295335"&gt;@Ebba28&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi everyone! I have a dataset which is divided into columns which has students divided by gender, by the school they go to, and then there a frequencies which describe the total number of each gender per school, together with the frequency of students who consume alcohol per gender, per school. I would somehow like to sum together the values that are in the 'tot' and 'yes' columns according to the genders 'boys' and 'girls' without accounting for the school these students go to. Below you will find the data set:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like a table that has simply the columns 'sum of yes' and sum of tot' according to the genders 'boys' and 'girls' but have no clue how to achieve this- would really appreciate the help!&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This sounds like you want PROC MEANS or PROC SUMMARY with a CLASS statement, but it's really not clear exactly what you want and you ought to fix the data so that it's more readable (as suggested above) and show us the desired output. See if this example helps: &lt;A href="https://documentation.sas.com/?docsetId=proc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=p070bkysj4lkyun0zxj45n643q1i.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=proc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=p070bkysj4lkyun0zxj45n643q1i.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 12:12:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620138#M19501</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-01-27T12:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620143#M19504</link>
      <description>&lt;P&gt;Assuming the input data is as follows, did you want something like below? If not then please provide further clarification.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
   infile datalines dsd;

   input
      school  : $2.
      yes     :  8.
      tot     :  8.
      gender  : $5.
      percent :  8.
   ;

   datalines;
1,20,53,boys,0.37736
1,14,61,girls,0.22951
2,13,41,boys,0.31707
2,11,25,girls,0.44000
3,10,53,boys,0.18868
4,14,54,boys,0.25926
4,9,55,girls,0.16364
5,5,41,boys,0.12195
5,13,49,girls,0.26531
6,9,40,boys,0.22500
6,11,34,girls,0.32353
7,7,36,boys,0.19444
7,9,32,girls,0.28125
8,18,55,girls,0.32727
9,12,53,boys,0.22642
9,21,64,girls,0.32813
10,15,61,boys,0.24590
10,23,49,girls,0.46939
11,14,28,boys,0.50000
11,16,28,girls,0.57143
12,8,19,boys,0.42105
12,12,25,girls,0.48000
13,11,38,boys,0.28947
13,6,24,girls,0.25000
;

proc summary data = have nway;
   class gender;
   var yes tot;
   output out = want(drop = _:) sum=sum_of_yes sum_of_tot;
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Amir.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 12:31:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620143#M19504</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2020-01-27T12:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620178#M19505</link>
      <description>&lt;P&gt;Hi Amir! Thank you for taking a look at this- have tried to arrange labels properly now and have also added an example of what I would like the output to look like! Any help would be super appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 14:40:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620178#M19505</guid>
      <dc:creator>Ebba28</dc:creator>
      <dc:date>2020-01-27T14:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620181#M19506</link>
      <description>&lt;P&gt;Hi Kiran! Thank you for taking your time to look at this- have added a piece on what I would like output to look like, in table format, hopefully it makes sense!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 14:42:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620181#M19506</guid>
      <dc:creator>Ebba28</dc:creator>
      <dc:date>2020-01-27T14:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620184#M19507</link>
      <description>&lt;P&gt;Hi Sienna! Have added an example of what I would like my output to look like in table format- perhaps you can help me with the suggestions you made? Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 14:43:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620184#M19507</guid>
      <dc:creator>Ebba28</dc:creator>
      <dc:date>2020-01-27T14:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Summing content according to variables in one column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620186#M19508</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/295335"&gt;@Ebba28&lt;/a&gt;, thanks for the confirmation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that case the code I have already posted looks like it should work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please respond either way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; kind regards,&lt;/P&gt;
&lt;P&gt;Amir.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 14:48:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Summing-content-according-to-variables-in-one-column/m-p/620186#M19508</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2020-01-27T14:48:32Z</dc:date>
    </item>
  </channel>
</rss>

