<?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: Need assistance with SAS array’s summing within the by group only in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612521#M178758</link>
    <description>&lt;P&gt;Can you show us part of your data using these instructions:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some of us won't open .xlsx (or other Microsoft Office) files as they are a security risk.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Can you also show us the desired output for a small portion of the data? You talk about totals for all the 160 weights for each grouping by education and gender variables, but yet your code computes number across the columns in a single row, rather than down the columns.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Dec 2019 20:01:47 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2019-12-17T20:01:47Z</dc:date>
    <item>
      <title>Need assistance with SAS array’s summing within the by group only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612503#M178746</link>
      <description>&lt;P&gt;Friends,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently I am working with the Current Population Survey table’s replicate weights. These are used to come up with accurate variances and standard errors for each observation(row).&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am working with a data table that has groups of education level (PEEDUCA) and gender (PESEX).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have summed using PROC MEANS to get the totals for all the 160 weights for each grouping by education and gender variables but now I need to aggregate all 160 weight variables together.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I received the sample code to do this but it only shows how to get the total statistical measures of variance, standard errors, etc. for the whole table and I need to get these measured, mentioned previously, by the education and gender group.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made several attempts to modify the data step DATA3 ‘ s array statement but I did not get any success.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the data file attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&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;&lt;P&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt; &lt;STRONG&gt;IMPORT&lt;/STRONG&gt; OUT= sas2 DATAFILE= "M:\Directory\Datafile.xlsx"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;DBMS=xlsx REPLACE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;GETNAMES=YES;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;sort&lt;/STRONG&gt; data= sas2;&lt;/P&gt;&lt;P&gt;by pesex peeduca; &lt;STRONG&gt;run&lt;/STRONG&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;issue is below &amp;nbsp;*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt; data3;&lt;/P&gt;&lt;P&gt;set data2 end=eof;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if _n_=&lt;STRONG&gt;1&lt;/STRONG&gt; then sdiffsq = &lt;STRONG&gt;0&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;array repwts{&lt;STRONG&gt;161&lt;/STRONG&gt;} est rw1-rw160;&lt;/P&gt;&lt;P&gt;by pesex peeduca;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;do I = &lt;STRONG&gt;2&lt;/STRONG&gt; to &lt;STRONG&gt;161&lt;/STRONG&gt; ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; sdiffsq = sdiffsq + (repwts{i} - repwts{&lt;STRONG&gt;1&lt;/STRONG&gt;})***&lt;STRONG&gt;2&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;if eof then do;&lt;/P&gt;&lt;P&gt;var = (&lt;STRONG&gt;4&lt;/STRONG&gt;/&lt;STRONG&gt;160&lt;/STRONG&gt;) * sdiffsq;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; se = (var)**&lt;STRONG&gt;.5&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cv = se/est;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 18:45:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612503#M178746</guid>
      <dc:creator>yo1</dc:creator>
      <dc:date>2019-12-17T18:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance with SAS array’s summing within the by group only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612519#M178756</link>
      <description>&lt;P&gt;should this&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #f4f4f4; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;set data2 end=eof;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;be this&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #f4f4f4; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;set sas2 end=eof;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #f4f4f4; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;in your datastep&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 19:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612519#M178756</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-12-17T19:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance with SAS array’s summing within the by group only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612521#M178758</link>
      <description>&lt;P&gt;Can you show us part of your data using these instructions:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some of us won't open .xlsx (or other Microsoft Office) files as they are a security risk.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Can you also show us the desired output for a small portion of the data? You talk about totals for all the 160 weights for each grouping by education and gender variables, but yet your code computes number across the columns in a single row, rather than down the columns.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 20:01:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612521#M178758</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-17T20:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance with SAS array’s summing within the by group only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612522#M178759</link>
      <description>&lt;P&gt;Yes.&amp;nbsp; That is correct.&amp;nbsp; Sorry about that.&amp;nbsp; It should be sas2&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 20:03:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612522#M178759</guid>
      <dc:creator>yo1</dc:creator>
      <dc:date>2019-12-17T20:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance with SAS array’s summing within the by group only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612573#M178781</link>
      <description>&lt;P&gt;Your excel table has 35 rows, and 160 columns (rw1-rw160) and columns for PESEX, PEEDUCA, and EST.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You saw you want the "variances and standard errors &lt;EM&gt;&lt;STRONG&gt;for each observation&lt;/STRONG&gt;&lt;/EM&gt;".&amp;nbsp; If so, can't you just use the VAR, STDERR, and CV&amp;nbsp;functions, as below? (untested by me since you haven't provided a DATA step with sample values),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set have;
  var=var(of rw:);
  se=stderr(of rw:);
  cv=cv(of rw:);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The "of rw:" says to use off the variables whose names starts with "rw".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 04:25:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612573#M178781</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2019-12-18T04:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance with SAS array’s summing within the by group only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612768#M178862</link>
      <description>&lt;P&gt;&lt;BR /&gt;Friends,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry about the lack of data.&amp;nbsp; Here is a short sample of the main file.&amp;nbsp; It only uses 5 weight variables instead of the 160.&amp;nbsp; To fix the code in the DATA3 data step just change the value 161 to 6 .&amp;nbsp; and 160 to 5 for the var calculation.&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;data sas;&lt;/P&gt;&lt;P&gt;input PESEX PEEDUCA est rw1 rw2 rw3 rw4 rw5;&lt;/P&gt;&lt;P&gt;datalines;&lt;BR /&gt;-1 -1 -49864 22874350.85 22659945.03 22903624.44 22767723.5 22892043.8&lt;BR /&gt;1 -1 9.34243E+11 7570002.72 7667491.2 7431655.81 7612309.3 7486121.77&lt;BR /&gt;1 31 12564146115 161933.92 167913.27 164331.15 170058.35 172511.73&lt;BR /&gt;1 32 29761571175 408365 419732.95 385364.74 414872.6 381754.14&lt;BR /&gt;1 33 62411106394 957588.79 969276.45 932760.04 976158.82 953027.19&lt;BR /&gt;1 34 1.04873E+11 1654197.28 1624400.43 1644643.08 1662470.12 1711297.02&lt;BR /&gt;1 35 1.23266E+11 1749037.05 1735108.1 1695043.87 1760309.9 1748697.13&lt;BR /&gt;1 36 1.44251E+11 2031777.33 2020457.88 2022012 2019879.09 2015074&lt;BR /&gt;1 37 1.50277E+11 2239705.77 2189660.6 2241284.35 2208840.2 2240355.83&lt;BR /&gt;1 38 55961473747 921086.34 892762.39 921477.7 897491.49 883803.37&lt;BR /&gt;1 39 1.02711E+12 20030575.08 19976286.72 19798599.3 20011243.15 20077031.04&lt;BR /&gt;1 40 6.00395E+11 11207288.37 11025635.7 11215725.14 11171560.08 11266788.19&lt;BR /&gt;1 41 1.24048E+11 2763522.16 2714987.14 2784518.41 2752007.09 2737672.08&lt;BR /&gt;1 42 1.16804E+11 2464708.19 2444951.98 2475915.5 2436125.98 2453272.57&lt;BR /&gt;1 43 5.68552E+11 11689392.43 11528258.03 11681518.29 11632424.83 11904497.23&lt;BR /&gt;1 44 1.96911E+11 4121142.13 4051989.25 4104225.14 4079413.35 4199083.46&lt;BR /&gt;1 45 61289762858 1351959.9 1303424.53 1350133.73 1397382.07 1343791.07&lt;BR /&gt;1 46 50422043835 1117781.09 1111152.04 1082617.42 1070579.19 1126276.84&lt;BR /&gt;2 -1 8.9259E+11 7179549 7329547.62 7224111.69 7118959.08 7165556.47&lt;BR /&gt;2 31 12404504260 171695.04 172210.01 170707.38 161384.89 176091.97&lt;BR /&gt;2 32 26762348751 425065.6 419739.62 390356.52 424182.92 403285.9&lt;BR /&gt;2 33 57288878784 955652.76 946880.29 926261.09 982999.19 945591.93&lt;BR /&gt;2 34 1.00864E+11 1511106.45 1510590.14 1473016.32 1496720.3 1519945.39&lt;BR /&gt;2 35 1.15301E+11 1701413.59 1729956.86 1677755.2 1671733.26 1760323.21&lt;BR /&gt;2 36 1.42934E+11 2067426.21 2068764.82 2093418.24 2084657.61 2110334.71&lt;BR /&gt;2 37 1.48372E+11 2332700.92 2311200.01 2387173.58 2330574.18 2323323.35&lt;BR /&gt;2 38 53328810768 897703.57 905293.56 930043.76 902796.97 894034.63&lt;BR /&gt;2 39 1.09284E+12 20979620.83 20842564.78 20969066.55 20909747.62 21065961.91&lt;BR /&gt;2 40 6.82496E+11 13383992.97 13288555.94 13292152.65 13405753.71 13614158.29&lt;BR /&gt;2 41 1.50574E+11 3204941.8 3174911.37 3230007.46 3208547.63 3276353.74&lt;BR /&gt;2 42 1.62257E+11 3521456.84 3508097.83 3486327.92 3496688.73 3474977.1&lt;BR /&gt;2 43 6.21475E+11 12485087.91 12321917.27 12384763.34 12447795.71 12692836.6&lt;BR /&gt;2 44 2.2571E+11 4612029.8 4498069.7 4560896.58 4576150.31 4643944.89&lt;BR /&gt;2 45 33655882083 737648.65 707857.14 745628.74 737061.2 745185.62&lt;BR /&gt;2 46 25628450446 557320.43 551752.51 560922.02 580039.81 595418.47&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 18:40:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612768#M178862</guid>
      <dc:creator>yo1</dc:creator>
      <dc:date>2019-12-18T18:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance with SAS array’s summing within the by group only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612773#M178865</link>
      <description>&lt;P&gt;Thanks for setting up a DATA step with sample data.&amp;nbsp; This program does what I think you want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sas;
input PESEX PEEDUCA est rw1 rw2 rw3 rw4 rw5;
datalines;
-1 -1 -49864 22874350.85 22659945.03 22903624.44 22767723.5 22892043.8
1 -1 9.34243E+11 7570002.72 7667491.2 7431655.81 7612309.3 7486121.77
1 31 12564146115 161933.92 167913.27 164331.15 170058.35 172511.73
1 32 29761571175 408365 419732.95 385364.74 414872.6 381754.14
1 33 62411106394 957588.79 969276.45 932760.04 976158.82 953027.19
1 34 1.04873E+11 1654197.28 1624400.43 1644643.08 1662470.12 1711297.02
1 35 1.23266E+11 1749037.05 1735108.1 1695043.87 1760309.9 1748697.13
1 36 1.44251E+11 2031777.33 2020457.88 2022012 2019879.09 2015074
1 37 1.50277E+11 2239705.77 2189660.6 2241284.35 2208840.2 2240355.83
1 38 55961473747 921086.34 892762.39 921477.7 897491.49 883803.37
1 39 1.02711E+12 20030575.08 19976286.72 19798599.3 20011243.15 20077031.04
1 40 6.00395E+11 11207288.37 11025635.7 11215725.14 11171560.08 11266788.19
1 41 1.24048E+11 2763522.16 2714987.14 2784518.41 2752007.09 2737672.08
1 42 1.16804E+11 2464708.19 2444951.98 2475915.5 2436125.98 2453272.57
1 43 5.68552E+11 11689392.43 11528258.03 11681518.29 11632424.83 11904497.23
1 44 1.96911E+11 4121142.13 4051989.25 4104225.14 4079413.35 4199083.46
1 45 61289762858 1351959.9 1303424.53 1350133.73 1397382.07 1343791.07
1 46 50422043835 1117781.09 1111152.04 1082617.42 1070579.19 1126276.84
2 -1 8.9259E+11 7179549 7329547.62 7224111.69 7118959.08 7165556.47
2 31 12404504260 171695.04 172210.01 170707.38 161384.89 176091.97
2 32 26762348751 425065.6 419739.62 390356.52 424182.92 403285.9
2 33 57288878784 955652.76 946880.29 926261.09 982999.19 945591.93
2 34 1.00864E+11 1511106.45 1510590.14 1473016.32 1496720.3 1519945.39
2 35 1.15301E+11 1701413.59 1729956.86 1677755.2 1671733.26 1760323.21
2 36 1.42934E+11 2067426.21 2068764.82 2093418.24 2084657.61 2110334.71
2 37 1.48372E+11 2332700.92 2311200.01 2387173.58 2330574.18 2323323.35
2 38 53328810768 897703.57 905293.56 930043.76 902796.97 894034.63
2 39 1.09284E+12 20979620.83 20842564.78 20969066.55 20909747.62 21065961.91
2 40 6.82496E+11 13383992.97 13288555.94 13292152.65 13405753.71 13614158.29
2 41 1.50574E+11 3204941.8 3174911.37 3230007.46 3208547.63 3276353.74
2 42 1.62257E+11 3521456.84 3508097.83 3486327.92 3496688.73 3474977.1
2 43 6.21475E+11 12485087.91 12321917.27 12384763.34 12447795.71 12692836.6
2 44 2.2571E+11 4612029.8 4498069.7 4560896.58 4576150.31 4643944.89
2 45 33655882083 737648.65 707857.14 745628.74 737061.2 745185.62
2 46 25628450446 557320.43 551752.51 560922.02 580039.81 595418.47
;
data want;
  set sas;
  var=var(of rw:);
  se=stderr(of rw:);
  cv=cv(of rw:);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 18 Dec 2019 18:59:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-assistance-with-SAS-array-s-summing-within-the-by-group/m-p/612773#M178865</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2019-12-18T18:59:43Z</dc:date>
    </item>
  </channel>
</rss>

