<?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: How to add new data to an existing dataset in EG? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-add-new-data-to-an-existing-dataset-in-EG/m-p/773879#M39724</link>
    <description>&lt;P&gt;Create a new dataset, and append it:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile datalines truncover;
input type $ model $;
datalines;
XX-1 Light
XX-2 Heavy
XX-3 Heavy
XX-4 Heavy
XX-5 Slim
XX-6 Light
XX-7 Heavy
;

data new;
infile datalines truncover;
input type $ model $;
datalines;
XX-8 Light
XX-9 Slim
;

proc append
  base=have
  data=new
;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 13 Oct 2021 10:20:51 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2021-10-13T10:20:51Z</dc:date>
    <item>
      <title>How to add new data to an existing dataset in EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-add-new-data-to-an-existing-dataset-in-EG/m-p/773874#M39723</link>
      <description>&lt;P&gt;This is my current dataset (an example so you can reproduce my case, the real one is much bigger):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile datalines truncover;
input type $ model $;
datalines;
XX-1 Light
XX-2 Heavy
XX-3 Heavy
XX-4 Heavy
XX-5 Slim
XX-6 Light
XX-7 Heavy
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I want to add two lines of data to it:&lt;/P&gt;
&lt;PRE&gt;XX-8 Light
XX-9 Slim&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Oct 2021 09:35:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-add-new-data-to-an-existing-dataset-in-EG/m-p/773874#M39723</guid>
      <dc:creator>Andalusia</dc:creator>
      <dc:date>2021-10-13T09:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to add new data to an existing dataset in EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-add-new-data-to-an-existing-dataset-in-EG/m-p/773879#M39724</link>
      <description>&lt;P&gt;Create a new dataset, and append it:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile datalines truncover;
input type $ model $;
datalines;
XX-1 Light
XX-2 Heavy
XX-3 Heavy
XX-4 Heavy
XX-5 Slim
XX-6 Light
XX-7 Heavy
;

data new;
infile datalines truncover;
input type $ model $;
datalines;
XX-8 Light
XX-9 Slim
;

proc append
  base=have
  data=new
;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Oct 2021 10:20:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-add-new-data-to-an-existing-dataset-in-EG/m-p/773879#M39724</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-10-13T10:20:51Z</dc:date>
    </item>
  </channel>
</rss>

