<?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: New User Coding and Calculations in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619742#M19438</link>
    <description>&lt;P&gt;Don't you also have a grades data set? Just use these two data sets in the SQL as posted by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What happens if you do so and execute the code?&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jan 2020 02:44:44 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2020-01-24T02:44:44Z</dc:date>
    <item>
      <title>New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619722#M19428</link>
      <description>&lt;P&gt;Hello, I am trying to prepare a data set that includes the population of students in my file Data.master_After2001:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data.master_after2001.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35591i139FE1F8D036AA63/image-size/large?v=v2&amp;amp;px=999" role="button" title="data.master_after2001.PNG" alt="data.master_after2001.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking to calculate each students GPA. GPA is calculated as the sum of grades/number of courses and grades can be summed by assigning A=4, B=3, C=2, D=1, and F=0. Each student can have more then one grade. How can I calculate the GPA for each student then join it into the table above?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data set Data.grades:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Data.grades.PNG" style="width: 573px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35592iDF71CCBC3AF6EEB2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Data.grades.PNG" alt="Data.grades.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 00:00:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619722#M19428</guid>
      <dc:creator>cneed</dc:creator>
      <dc:date>2020-01-24T00:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619734#M19430</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data master_after2001;
input studentID $ birthdate :DATE9. gender $ schoolID schoolname $;
format birthdate date9.;
datalines;
11931 11APR2001 M 1001 Field
11421 13FEB2001 M 1001 Field
12411 20OCT2002 F 1001 Field
10871 12AUG2002 F 1001 Field
12581 13JAN2003 F 1001 Field
10851 24AUG2002 F 1001 Field
10001 15JUL2004 M 1001 Field
;
run;&lt;BR /&gt;
data grades;
input studentID $ courseID $ grade $ ;
datalines;
10001 113 F
10001 139 A
10001 118 B
10002 183 B
10002 192 F
10002 148 D
10002 198 D
10002 151 C
;
run;


proc format library=work;
invalue grade
'A'=4
'B'=3
'C'=2
'D'=1
'F'=0
;
run;

proc sql;
create table gpa as
select t1.*, t2.GPA 
from master_after2001 t1 
left join ( select studentID, sum(input(grade,grade.)) as GPA
			from grades 
			group by studentID ) t2 
on t1.studentID = t2.studentID
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I added another row to master_after2001 so that you can see the results if there are IDs that match.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 02:00:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619734#M19430</guid>
      <dc:creator>sustagens</dc:creator>
      <dc:date>2020-01-24T02:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619735#M19431</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;this would be awesome if I only had a few students, however, I have a few thousand students in my file (I just sent a screenshot of a few to get the layout of the data). It there a way to make it so I don't have to type out every row?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 02:12:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619735#M19431</guid>
      <dc:creator>cneed</dc:creator>
      <dc:date>2020-01-24T02:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619736#M19432</link>
      <description>&lt;P&gt;I have a few thousand grades as well.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 02:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619736#M19432</guid>
      <dc:creator>cneed</dc:creator>
      <dc:date>2020-01-24T02:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619738#M19434</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/308061"&gt;@cneed&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;this would be awesome if I only had a few students, however, I have a few thousand students in my file (I just sent a screenshot of a few to get the layout of the data). It there a way to make it so I don't have to type out every row?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;???? Don't you have this data already in SAS data sets?&lt;/P&gt;
&lt;P&gt;The data steps &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;&amp;nbsp;posted are only creating sample data (as you haven't provided these in a usable form) to allow providing fully tested solution code.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 02:28:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619738#M19434</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-01-24T02:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619740#M19436</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;&amp;nbsp; thanks for the input! I have attached the data for reference.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 02:41:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619740#M19436</guid>
      <dc:creator>cneed</dc:creator>
      <dc:date>2020-01-24T02:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619741#M19437</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;&amp;nbsp; here is the second file. It didnt attach to the first.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 02:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619741#M19437</guid>
      <dc:creator>cneed</dc:creator>
      <dc:date>2020-01-24T02:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619742#M19438</link>
      <description>&lt;P&gt;Don't you also have a grades data set? Just use these two data sets in the SQL as posted by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What happens if you do so and execute the code?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 02:44:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619742#M19438</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-01-24T02:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619743#M19439</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/308061"&gt;@cneed&lt;/a&gt;, you dont have to type your data out row by row. I just created a sample dataset, as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt; mentioned, based on your screenshots so I can write up code for it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your case you can do without with the first two blocks, because your data already exists as SAS datasets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will be what you would use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format library=work;
invalue grade
'A'=4
'B'=3
'C'=2
'D'=1
'F'=0
;
run;

proc sql;
create table gpa as
select t1.*, t2.GPA 
from Data.master_After2001 t1 
left join ( select studentID, sum(input(grade,grade.)) as GPA
			from Data.grades
			group by studentID ) t2 
on t1.studentID = t2.studentID
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Jan 2020 02:45:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619743#M19439</guid>
      <dc:creator>sustagens</dc:creator>
      <dc:date>2020-01-24T02:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619761#M19443</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;&amp;nbsp; Thanks! It came out great! The only thing is the the GPA is calculated by the sum divided by the number of courses taken (number of grades provided). How can I incorporate this in?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 04:07:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619761#M19443</guid>
      <dc:creator>cneed</dc:creator>
      <dc:date>2020-01-24T04:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619770#M19444</link>
      <description>&lt;P&gt;GPA would then be:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;(sum(input(grade,grade.))/count(courseID)) as GPA&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead of just:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;sum(input(grade,grade.)) as GPA&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Jan 2020 06:18:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619770#M19444</guid>
      <dc:creator>sustagens</dc:creator>
      <dc:date>2020-01-24T06:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619807#M19450</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281550"&gt;@sustagens&lt;/a&gt;&amp;nbsp; I am now showing blanks in the GPA column. I am getting a few notes that are saying t1.studentID = t2.studentID is invalid:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;82 proc sql;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 create table Data.gpa as&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 select t1.*, t2.GPA&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85 from Data.master_after2001 as t1&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86 left join ( select studentID, (sum(input(grade,grade.))/count(courseID)) as GPA&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87 from Data.grades&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88 group by studentID ) as t2&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89 on t1.studentID = t2.studentID;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid string.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid argument to function INPUT. Missing values may be generated.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Table DATA.GPA created, with 3427 rows and 6 columns.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;90 quit;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 1.11 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 1.19 seconds&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;proc format library=Data;&lt;BR /&gt;invalue grade&lt;BR /&gt;'A'=4&lt;BR /&gt;'B'=3&lt;BR /&gt;'C'=2&lt;BR /&gt;'D'=1&lt;BR /&gt;'F'=0;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table Data.gpa as&lt;BR /&gt;select t1.*, t2.GPA&lt;BR /&gt;from Data.master_after2001 as t1&lt;BR /&gt;left join ( select studentID, (sum(input(grade,grade.))/count(courseID)) as GPA&lt;BR /&gt;from Data.grades&lt;BR /&gt;group by studentID ) as t2&lt;BR /&gt;on t1.studentID = t2.studentID;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 12:56:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619807#M19450</guid>
      <dc:creator>cneed</dc:creator>
      <dc:date>2020-01-24T12:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619830#M19457</link>
      <description>Is the variable grades non-missing in each obs? Adding other=. To the informat should help</description>
      <pubDate>Fri, 24 Jan 2020 14:47:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619830#M19457</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-01-24T14:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619836#M19458</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15475"&gt;@andreas_lds&lt;/a&gt;&amp;nbsp; Yes, all of the GPAs are missing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gpa.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35597i20FA81D97B7B94B5/image-size/large?v=v2&amp;amp;px=999" role="button" title="gpa.PNG" alt="gpa.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you mean adding other =. instead of library Data like this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc format library other=.;&lt;BR /&gt;invalue grade&lt;BR /&gt;'A'=4&lt;BR /&gt;'B'=3&lt;BR /&gt;'C'=2&lt;BR /&gt;'D'=1&lt;BR /&gt;'F'=0;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table Data.gpa as&lt;BR /&gt;select t1.*, t2.GPA&lt;BR /&gt;from Data.master_after2001 t1&lt;BR /&gt;left join ( select studentID, (sum(input(grade,grade.))/count(courseID)) as GPA&lt;BR /&gt;from Data.grades&lt;BR /&gt;group by studentID ) t2&lt;BR /&gt;on t1.studentID = t2.studentID;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 15:03:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/619836#M19458</guid>
      <dc:creator>cneed</dc:creator>
      <dc:date>2020-01-24T15:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: New User Coding and Calculations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/620107#M19492</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/308061"&gt;@cneed&lt;/a&gt;, looking at the actual datasets you attached, not all of the studentIDs are in both tables. You have 55 students that are in &lt;U&gt;master_after2001&lt;/U&gt; but not in &lt;U&gt;grades&lt;/U&gt;. Because we are looking up (left join) the grades based on all the studentIDs in the master table, any studentID it can't find in grades will return null.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may run this query to view the 55 rows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
   CREATE TABLE studentIDs_not_in_grades_table AS 
   SELECT t1.studentID, 
          t1.birthdate, 
          t1.gender, 
          t1.schoolID, 
          t1.schoolname
      FROM Data.master_after2001 t1
      WHERE (t1.studentID NOT IN (select distinct studentID from Data.grades))
      ORDER BY t1.studentID;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may follow&amp;nbsp;@andreas_lds' advice to add&amp;nbsp;&lt;SPAN&gt;other=. to the informat.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Otherwise if you only want to keep studentIDs that exist in both tables, switch to an inner join instead of a left join.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 01:56:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/New-User-Coding-and-Calculations/m-p/620107#M19492</guid>
      <dc:creator>sustagens</dc:creator>
      <dc:date>2020-01-27T01:56:51Z</dc:date>
    </item>
  </channel>
</rss>

