<?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: Data Step to Find Product of Row by Column in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544834#M7943</link>
    <description>&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;Thank you for the reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;For some strange reason, the use of "proc transpose" leads to no SAS errors, but inaccurate calculations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;Values in the actual data set are not integers and vary in complexity.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;Thanks again,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;Jane&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Mar 2019 12:52:14 GMT</pubDate>
    <dc:creator>jawhitmire</dc:creator>
    <dc:date>2019-03-21T12:52:14Z</dc:date>
    <item>
      <title>Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544404#M7836</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Windows 10, Version 9.4, no access to SAS/STATS thus cannot use "proc iml"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just trying to multiply a row of one dataset by the column of another.&amp;nbsp; I would prefer not to use multiple arrays.&amp;nbsp; Totally open to the possibility of using "proc sql".&amp;nbsp; However, the datasets are actually VERY LARGE and this leads to an error message about cross-referencing.&amp;nbsp; I have simplified the problem to gain insight.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the source code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.alpha2;
                infile datalines;
                input fix @@;
                datalines;
            0 
			1 
			23 
			58 
		   ;
               run;

data work.beta2;
                infile datalines;
                input al s zn zr;
                datalines;
             5 7 8 4
               ;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is what I tried;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.gamma;
	merge work.alpha2 work.beta2;
	array nums {*} _numeric_;
	do _n_=2 to dim(nums);
		nums{_n_}=nums{_n_}*fix;
	end;
	drop fix;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is the result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.JPG" style="width: 173px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28049i0EF11089C2382848/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.JPG" alt="1.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want for output in work.gamma is ....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;al&amp;nbsp;&amp;nbsp; s&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zn&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;zr&lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp; 7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 184&amp;nbsp;&amp;nbsp; 234&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assistance is greatly appreciated.&amp;nbsp; Thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jane&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 22:49:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544404#M7836</guid>
      <dc:creator>jawhitmire</dc:creator>
      <dc:date>2019-03-19T22:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544407#M7837</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.alpha2;
                infile datalines;
                input fix @@;
                datalines;
            0 
			1 
			23 
			58 
		   ;
               run;

data work.beta2;
                infile datalines;
                input al s zn zr;
                datalines;
             5 7 8 4
               ;
run;


proc transpose data=alpha2 out=temp(drop=_name_) prefix=fix;
var fix;
run;

data want;
set beta2 ;
if _n_=1 then set temp;
array a(*) al--zr;
array b(*) fix:;
do _n_=1 to dim(a);
a(_n_)=a(_n_)*b(_n_);
end;
drop fix:;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Mar 2019 22:57:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544407#M7837</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-03-19T22:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544409#M7838</link>
      <description>&lt;P&gt;Do you have access to SAS/IML?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 23:05:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544409#M7838</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-19T23:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544411#M7839</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data work.alpha2;
                infile datalines;
                input fix @@;
                datalines;
            0 
			1 
			23 
			58 
		   ;
               run;

data work.beta2;
                infile datalines;
                input al s zn zr;
                datalines;
             5 7 8 4
               ;
run;

data want;
if _n_=1 then do;
 dcl hash H (ordered: "A") ;
   h.definekey  ("_n_") ;
   h.definedata ("fix") ;
   h.definedone () ;
   dcl hiter hh('h');
	do _n_=1 by 1 until(lr);
		set alpha2 end=lr;
	rc=h.add();
end;
end;
set beta2;
array a(*) al--zr;
do _n_=1 by 1 while(hh.next()=0);
a(_n_)=a(_n_)*fix;
end;
drop rc fix;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Mar 2019 23:06:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544411#M7839</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-03-19T23:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544432#M7848</link>
      <description>&lt;P&gt;I would go for:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data gamma;
set beta2;
array _b _numeric_;
do i = 1 to dim(_b) until(done);
    set alpha2 end=done;
    _b{i} = fix * _b{i};
    end;
drop i fix;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;robust against mismatches in dimensions.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 02:38:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544432#M7848</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-03-20T02:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544433#M7849</link>
      <description>&lt;P&gt;You just want to multiple the first value of Alpha by the first value in Beta, and then second value on Alpha by the second value in Beta?&lt;/P&gt;
&lt;P&gt;Given the way your data is structured that is simple with and ARRAY and a SET with POINT= option.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data alpha;
input fix @@;
datalines;
0 1 23 58 
;
proc print; run;

data beta;
input al s zn zr;
datalines;
5 7 8 4
1 1 1 1
;
proc print; run;

data want ;
  set beta ;
  array vars _numeric_;
  do p=1 to dim(vars);
    set alpha point=p nobs=nobs;
    vars(p)=vars(p)*fix;
  end;
  drop fix;
run;

proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 216px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28054iBF4D162EDB2EF85D/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 02:55:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544433#M7849</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-03-20T02:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544826#M7941</link>
      <description>&lt;P&gt;No.&amp;nbsp; I do not have access to SAS/IML.&lt;/P&gt;&lt;P&gt;I regret not mentioning that important aspect.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do, however, have "proc fcmp" for multiplying matrices.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jane&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 12:35:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544826#M7941</guid>
      <dc:creator>jawhitmire</dc:creator>
      <dc:date>2019-03-21T12:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544832#M7942</link>
      <description>&lt;P&gt;Brilliant!&amp;nbsp; Thank you!&lt;/P&gt;&lt;P&gt;This worked without creating math miscalculations -&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some strange reason, the use of "proc transpose" leads to no SAS errors, but inaccurate calculations.&lt;/P&gt;&lt;P&gt;The comment about being robust to mismatches in dimension is interesting.&lt;/P&gt;&lt;P&gt;Do you know where I could learn more about this?&amp;nbsp; Is there a fix within "proc transpose" that will correct the issue?&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Jane&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 12:49:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544832#M7942</guid>
      <dc:creator>jawhitmire</dc:creator>
      <dc:date>2019-03-21T12:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544834#M7943</link>
      <description>&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;Thank you for the reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;For some strange reason, the use of "proc transpose" leads to no SAS errors, but inaccurate calculations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;Values in the actual data set are not integers and vary in complexity.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;Thanks again,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; 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: 21.33px; 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;Jane&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 12:52:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544834#M7943</guid>
      <dc:creator>jawhitmire</dc:creator>
      <dc:date>2019-03-21T12:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544838#M7944</link>
      <description>&lt;P&gt;Tom,&lt;/P&gt;&lt;P&gt;Thank you for the reply. &amp;nbsp;&lt;/P&gt;&lt;P&gt;This works perfectly when the first dataset is actually the same length of each observation of the second dataset.&lt;/P&gt;&lt;P&gt;There is a dimension issue that I failed to mention in the original question.&lt;/P&gt;&lt;P&gt;Nevertheless, this reply is a keeper for my notes and use.&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Jane&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 13:03:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544838#M7944</guid>
      <dc:creator>jawhitmire</dc:creator>
      <dc:date>2019-03-21T13:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544839#M7945</link>
      <description>&lt;P&gt;PROC SCORE will do this row by column multiplication without a lot of programming.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 13:05:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544839#M7945</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-03-21T13:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544846#M7946</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/248885"&gt;@jawhitmire&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Tom,&lt;/P&gt;
&lt;P&gt;Thank you for the reply. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;This works perfectly when the first dataset is actually the same length of each observation of the second dataset.&lt;/P&gt;
&lt;P&gt;There is a dimension issue that I failed to mention in the original question.&lt;/P&gt;
&lt;P&gt;Nevertheless, this reply is a keeper for my notes and use.&lt;/P&gt;
&lt;P&gt;Thanks again,&lt;/P&gt;
&lt;P&gt;Jane&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Not sure how the different observations could have different dimensions.&amp;nbsp; Perhaps there is a counter variable that indicates how many of the values to use?&lt;/P&gt;
&lt;P&gt;You can use the NOBS= option on the second SET statement to get a variable with the number of observations in ALPHA.&amp;nbsp; You could then check that to make sure your DO loop doesn't index beyond the length of ALPHA.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 13:26:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544846#M7946</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-03-21T13:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step to Find Product of Row by Column</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544847#M7947</link>
      <description>&lt;P&gt;Oh yes, it would be wonderful to use "proc score" - but it appears it requires the SAS/STAT library.&lt;/P&gt;&lt;P&gt;Without this and without SAS/IML, it sometimes feels like re-inventing the wheel.&lt;/P&gt;&lt;P&gt;Very happy to have assistance from the SAS Community.&lt;/P&gt;&lt;P&gt;Thank you for the reply.&lt;/P&gt;&lt;P&gt;Jane&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 13:26:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-Step-to-Find-Product-of-Row-by-Column/m-p/544847#M7947</guid>
      <dc:creator>jawhitmire</dc:creator>
      <dc:date>2019-03-21T13:26:25Z</dc:date>
    </item>
  </channel>
</rss>

