<?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: Merging multiple datasets reduces no of observations. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764093#M241987</link>
    <description>Thank you, I now understand that duplicates are likely to be represented in one row with the merge statement. Is there a way where I can have separate rows for all the duplicates?&lt;BR /&gt;&lt;BR /&gt;For instance :&lt;BR /&gt;data example1;&lt;BR /&gt;  input enrolid ;&lt;BR /&gt;datalines;&lt;BR /&gt;1 &lt;BR /&gt;2 &lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example2;&lt;BR /&gt;  input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1  11&lt;BR /&gt;1 12&lt;BR /&gt;3 11&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example3;&lt;BR /&gt;  input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1 111&lt;BR /&gt;1 222&lt;BR /&gt;2 411&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example4;&lt;BR /&gt;   input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1 1111&lt;BR /&gt;4 111&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data merged;&lt;BR /&gt;   merge &lt;BR /&gt;      example1 (in=a)&lt;BR /&gt;      example2 (in=b)&lt;BR /&gt;      example3 (in=c)&lt;BR /&gt;      example4 (in=d)&lt;BR /&gt;    ;&lt;BR /&gt;    by enrolid;&lt;BR /&gt;    IF A AND (B OR C OR D) ;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dataset wanted:&lt;BR /&gt;Enrolid      y&lt;BR /&gt;1               11&lt;BR /&gt;1               12&lt;BR /&gt;1               111&lt;BR /&gt;1               222&lt;BR /&gt;1              1111&lt;BR /&gt;2               411&lt;BR /&gt;&lt;BR /&gt;I need all entrees of ids of dataset A present in B,C and D.</description>
    <pubDate>Thu, 26 Aug 2021 03:11:55 GMT</pubDate>
    <dc:creator>ihtishamsultan</dc:creator>
    <dc:date>2021-08-26T03:11:55Z</dc:date>
    <item>
      <title>Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764084#M241979</link>
      <description>&lt;P&gt;Hello community,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to do one is to many datasets merge and used the following code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DATA HB.IPADM;&lt;BR /&gt;MERGE SORT.ALLENRL2(IN=A KEEP=ENROLID)&lt;BR /&gt;IPADM.CCAEI103 (IN=B)&lt;BR /&gt;IPADM.CCAEI113 (IN=C)&lt;BR /&gt;IPADM.CCAEI123 (IN=D)&lt;BR /&gt;;&lt;BR /&gt;BY ENROLID;&lt;BR /&gt;IF A AND (B OR C OR D) ;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;The intent is to get all all data from B,C and D if they have a common enrolid of A.&lt;/P&gt;
&lt;P&gt;When I run the&amp;nbsp; code above I get 455 observation&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;When I run the merge statement individually I get different number of observations.&lt;/P&gt;
&lt;P&gt;I ran the following code:&lt;/P&gt;
&lt;P&gt;DATA HB.IPADM1;&lt;BR /&gt;MERGE SORT.ALLENRL2(IN=A KEEP=ENROLID)&lt;BR /&gt;IPADM.CCAEI103 (IN=B);&lt;BR /&gt;BY ENROLID;&lt;BR /&gt;IF A AND B ;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DATA HB.IPADM2;&lt;BR /&gt;MERGE SORT.ALLENRL2(IN=A KEEP=ENROLID)&lt;BR /&gt;IPADM.CCAEI113 (IN=B);&lt;BR /&gt;BY ENROLID;&lt;BR /&gt;IF A AND B ;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DATA HB.IPADM3;&lt;BR /&gt;MERGE SORT.ALLENRL2(IN=A KEEP=ENROLID)&lt;BR /&gt;IPADM.CCAEI123 (IN=B);&lt;BR /&gt;BY ENROLID;&lt;BR /&gt;IF A AND B ;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After running the above three codes and combining them I get 555 observations. What am I doing incorrectly in the first code of one to many merge?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks for the help.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 02:29:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764084#M241979</guid>
      <dc:creator>ihtishamsultan</dc:creator>
      <dc:date>2021-08-26T02:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764086#M241981</link>
      <description>&lt;P&gt;What happens in your first data step is that whenever more than one of the IPADM.CCAEI sets has the same Enrolid the all of those sets get merged so would have fewer records.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;data example1;
  input enrolid x;
datalines;
1 1
2 2
;

data example2;
  input enrolid y;
datalines;
1  11
;

data example3;
  input enrolid z;
datalines;
1 111
;

data example4;
   input enrolid t;
datalines;
1 1111
;

data merged;
   merge 
      example1 (in=a)
      example2 (in=b)
      example3 (in=c)
      example4 (in=d)
    ;
    by enrolid;
    IF A AND (B OR C OR D) ;
run;
&lt;/PRE&gt;
&lt;P&gt;All 3 of the "other" datasets match but only one record is in the output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may need to provide some small examples, such as I did above, of your existing data and what you expect the output to look like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If by "combining" the sets you create with the separate merges used a SET statement then you could set those 3 sets together and do a single merge (likely after sorting)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 02:55:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764086#M241981</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-08-26T02:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764087#M241982</link>
      <description>&lt;P&gt;The MERGE statement cannot handle multiple input datasets where there are duplicate ENROLIDs in more than one of those input datasets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Test each of your input datasets for duplicate&amp;nbsp;ENROLIDs and if more than one has this issue then that explains the drop in observation counts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are wanting to keep all duplicate ENROLIDs then you will need to switch to using SQL.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 02:56:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764087#M241982</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-08-26T02:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764088#M241983</link>
      <description>&lt;P&gt;Thank you, I want to keep all the duplicate records as well. Can you please help with the proc sql code. I haven't used sql much.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 02:59:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764088#M241983</guid>
      <dc:creator>ihtishamsultan</dc:creator>
      <dc:date>2021-08-26T02:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764089#M241984</link>
      <description>&lt;P&gt;Do you get any message in the log?&lt;/P&gt;
&lt;P&gt;With so few observations, it should be easy to look at the observations that are duplicated.&lt;/P&gt;
&lt;P&gt;Not knowing what you want, it's is difficult tot comment further.&lt;/P&gt;
&lt;P&gt;Please post code using the appropriate icon.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 03:00:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764089#M241984</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-08-26T03:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764090#M241985</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; I want to keep all the duplicate records as well.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How?&amp;nbsp; What output&amp;nbsp;do you expect if there are duplicates in A and B but not C?&amp;nbsp; Or B and C and not A?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 03:02:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764090#M241985</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-08-26T03:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764093#M241987</link>
      <description>Thank you, I now understand that duplicates are likely to be represented in one row with the merge statement. Is there a way where I can have separate rows for all the duplicates?&lt;BR /&gt;&lt;BR /&gt;For instance :&lt;BR /&gt;data example1;&lt;BR /&gt;  input enrolid ;&lt;BR /&gt;datalines;&lt;BR /&gt;1 &lt;BR /&gt;2 &lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example2;&lt;BR /&gt;  input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1  11&lt;BR /&gt;1 12&lt;BR /&gt;3 11&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example3;&lt;BR /&gt;  input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1 111&lt;BR /&gt;1 222&lt;BR /&gt;2 411&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example4;&lt;BR /&gt;   input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1 1111&lt;BR /&gt;4 111&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data merged;&lt;BR /&gt;   merge &lt;BR /&gt;      example1 (in=a)&lt;BR /&gt;      example2 (in=b)&lt;BR /&gt;      example3 (in=c)&lt;BR /&gt;      example4 (in=d)&lt;BR /&gt;    ;&lt;BR /&gt;    by enrolid;&lt;BR /&gt;    IF A AND (B OR C OR D) ;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dataset wanted:&lt;BR /&gt;Enrolid      y&lt;BR /&gt;1               11&lt;BR /&gt;1               12&lt;BR /&gt;1               111&lt;BR /&gt;1               222&lt;BR /&gt;1              1111&lt;BR /&gt;2               411&lt;BR /&gt;&lt;BR /&gt;I need all entrees of ids of dataset A present in B,C and D.</description>
      <pubDate>Thu, 26 Aug 2021 03:11:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764093#M241987</guid>
      <dc:creator>ihtishamsultan</dc:creator>
      <dc:date>2021-08-26T03:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764096#M241990</link>
      <description>In the code below my dataset example1 represents ids that I need the data for. The needed data is available in b,c and d. &lt;BR /&gt;&lt;BR /&gt;For instance :&lt;BR /&gt;data example1;&lt;BR /&gt;input enrolid ;&lt;BR /&gt;datalines;&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example2;&lt;BR /&gt;input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1 11&lt;BR /&gt;1 12&lt;BR /&gt;3 11&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example3;&lt;BR /&gt;input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1 111&lt;BR /&gt;1 222&lt;BR /&gt;2 411&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data example4;&lt;BR /&gt;input enrolid y;&lt;BR /&gt;datalines;&lt;BR /&gt;1 1111&lt;BR /&gt;4 111&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data merged;&lt;BR /&gt;merge&lt;BR /&gt;example1 (in=a)&lt;BR /&gt;example2 (in=b)&lt;BR /&gt;example3 (in=c)&lt;BR /&gt;example4 (in=d)&lt;BR /&gt;;&lt;BR /&gt;by enrolid;&lt;BR /&gt;IF A AND (B OR C OR D) ;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dataset wanted:&lt;BR /&gt;Enrolid y&lt;BR /&gt;1 11&lt;BR /&gt;1 12&lt;BR /&gt;1 111&lt;BR /&gt;1 222&lt;BR /&gt;1 1111&lt;BR /&gt;2 411&lt;BR /&gt;&lt;BR /&gt;I need all entrees of ids of dataset A present in B,C and D.</description>
      <pubDate>Thu, 26 Aug 2021 03:19:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764096#M241990</guid>
      <dc:creator>ihtishamsultan</dc:creator>
      <dc:date>2021-08-26T03:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764099#M241992</link>
      <description>&lt;P&gt;This could be accomplished by using a SET statement to combine example2, 3 and 4. Then merge with example1.&lt;/P&gt;
&lt;P&gt;However, this will fail if you have duplicates of the By variable in both example1 and the combined data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data example1;
   input enrolid ;
datalines;
1
2
;

data example2;
   input enrolid y;
datalines;
1 11
1 12
3 11
;

data example3;
   input enrolid y;
datalines;
1 111
1 222
2 411
;

data example4;
   input enrolid y;
datalines;
1 1111
4 111
;

Data stacked;
   set example2
       example3
       example4
   ;
run;

proc sort data=stacked;
  by enrolid;
run;

data merged;
   merge
      example1 (in=a)
      stacked (in=b)
   ;
   by enrolid;
   IF A AND B ;
run;&lt;/PRE&gt;
&lt;P&gt;Please post code in either a text box, opened on the forum with the &amp;lt;/&amp;gt; icon that appears above the message window, or the code box opened with the "running man" icon. It helps to tell when something is code or part of a question or comment and they will not reformat pasted text like the main message window. The main message windows reformat text making any code indenting go away as well as other things that can result in not-seen characters that can impact whether code will run.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 03:25:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764099#M241992</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-08-26T03:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764100#M241993</link>
      <description>Apologies. I will use that from now on.&lt;BR /&gt;&lt;BR /&gt;My problem with using the set statement to combine B,C and D is that the dataset B,C and D are too big to be combined on my computer (almost 200GB). Also there are no duplicates in dataset A but there are duplicates in B,C and D.&lt;BR /&gt;&lt;BR /&gt;Is there an alternative?</description>
      <pubDate>Thu, 26 Aug 2021 03:31:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764100#M241993</guid>
      <dc:creator>ihtishamsultan</dc:creator>
      <dc:date>2021-08-26T03:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764101#M241994</link>
      <description>&lt;P&gt;Use a VIEW.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data all / view=all;
   set b c d ;
   by enrolid;
run;

data want;
  merge a(in=ina) all (in=inall);
  by enrolid;
  if ina and inall;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If A is tiny pull the list of ENROLID values into a macro variable and use it in a WHERE statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql noprint;
select distinct quote(trim(enrolid)) into :list separated by ' ' from A;
quit;
data want;
  set b c d ;
  by enrolid;
  where enrolid in (&amp;amp;list);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If A is small enough load it into a hash and use the FIND() method to check if the value is found.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If A is too large to load into a hash then create an index for A and use that in the data step to test if the id is in the A dataset.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set b c d ;
  by enrolid;
  set a key=enrolid;&lt;BR /&gt;  _error_=0;
  if _iorc_ then delete;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Aug 2021 04:03:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764101#M241994</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-08-26T04:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764119#M242001</link>
      <description>&lt;P&gt;So you want to use example1 as a lookup table to filter data out of the others. This is easily done with a hash object:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set
  example2
  example3
  example4
;
if _n_ = 1
then do;
  declare hash ex1 (dataset:"example1");
  ex1.definekey("enrolid");
  ex1.definedone();
end;
if ex1.check() = 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Aug 2021 07:56:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764119#M242001</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-08-26T07:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple datasets reduces no of observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764213#M242035</link>
      <description>&lt;P&gt;Set before or three data steps with merge and then set (or proc append which would be faster generally). There is likely to be a Proc SQL solution but if your data sets are "too big" to combine first then likely the performance in SQL is going to be slower.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 14:19:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-multiple-datasets-reduces-no-of-observations/m-p/764213#M242035</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-08-26T14:19:33Z</dc:date>
    </item>
  </channel>
</rss>

