<?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: adding row to data set, mostly duplicate but some different in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892612#M352552</link>
    <description>&lt;P&gt;Many of us refuse to download Excel files (and I personally refuse to download any files). The proper way to provide data is to provide it as text in your message, as WORKING data step code (&lt;A href="https://blogs.sas.com/content/sastraining/2016/03/11/jedi-sas-tricks-data-to-data-step-macro/" target="_self"&gt;examples and instructions&lt;/A&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, based on your description, here is a method that adds 3 rows at the end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
    set sashelp.class end=eof;
    output;
    if eof then do;
         output;
         name='Albert';
         output;
         name='George';
         height=55;
         output;
    end;
run;
        &lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 04 Sep 2023 17:51:33 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2023-09-04T17:51:33Z</dc:date>
    <item>
      <title>adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892610#M352550</link>
      <description>&lt;P&gt;Hi all. I hope folks are healthy!&lt;/P&gt;
&lt;P&gt;I have a data set and I want to add some rows at the end. The new rows aren't in another data set, so I have to add them manually. I'm attaching an excel file which is a very simplified version of the data set I'm working with. The actual data set has lots more columns (30) and 6k rows, so I'm not sure it would be efficient to use insert into. The added rows would be mostly duplicates of existing rows but with just a couple of changes to values. In the example I'm using, I just want to change the values for sub-group and measure in the new rows.&amp;nbsp; In this particular example data set, row 9 is a duplicate of row 2 except the values for sub-group and measure, and row 10 is a duplicate of row 4&amp;nbsp;except the values for sub-group and measure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm thinking to duplicate specific rows and then change the values where I want to? Is there an easy way to do this? Also, assume the original data set is in SAS. I'm just using excel because it's quick and also I can add in what the new rows would look like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 17:45:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892610#M352550</guid>
      <dc:creator>geneshackman</dc:creator>
      <dc:date>2023-09-04T17:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892612#M352552</link>
      <description>&lt;P&gt;Many of us refuse to download Excel files (and I personally refuse to download any files). The proper way to provide data is to provide it as text in your message, as WORKING data step code (&lt;A href="https://blogs.sas.com/content/sastraining/2016/03/11/jedi-sas-tricks-data-to-data-step-macro/" target="_self"&gt;examples and instructions&lt;/A&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, based on your description, here is a method that adds 3 rows at the end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
    set sashelp.class end=eof;
    output;
    if eof then do;
         output;
         name='Albert';
         output;
         name='George';
         height=55;
         output;
    end;
run;
        &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Sep 2023 17:51:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892612#M352552</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-09-04T17:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892613#M352553</link>
      <description>&lt;P&gt;Hi, this is hard to understand, and many people won't download excel files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please edit your question to post a small example of the data you HAVE as a data step with a CARDS statement providing the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then please describe the rules in terms of data you have shown.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then show the output data you would WANT (also as a data step with CARDS).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then show the code you have tried.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 17:54:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892613#M352553</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2023-09-04T17:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892628#M352560</link>
      <description>&lt;P&gt;Interesting that two people say they won't open excel files. On the community support website for tableau, most people say they won't help you unless you include a tableau file they can download, along with data.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 20:30:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892628#M352560</guid>
      <dc:creator>geneshackman</dc:creator>
      <dc:date>2023-09-04T20:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892629#M352561</link>
      <description>&lt;P&gt;Usually if i put data into text, the columns get all messed up and people can't read the data set in a post using text. But here goes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="537"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="4" width="281"&gt;Original data set&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;RowNum&lt;/TD&gt;
&lt;TD&gt;Geography&lt;/TD&gt;
&lt;TD&gt;Group&lt;/TD&gt;
&lt;TD&gt;Sub-Group&lt;/TD&gt;
&lt;TD&gt;Measure&lt;/TD&gt;
&lt;TD&gt;Footnote1&lt;/TD&gt;
&lt;TD&gt;Parents&lt;/TD&gt;
&lt;TD&gt;PeerGroup&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Hair&lt;/TD&gt;
&lt;TD&gt;Long&lt;/TD&gt;
&lt;TD&gt;18&lt;/TD&gt;
&lt;TD&gt;Inches&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;TD&gt;Different&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Hair&lt;/TD&gt;
&lt;TD&gt;Short&lt;/TD&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;Inches&lt;/TD&gt;
&lt;TD&gt;Different&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Eyes&lt;/TD&gt;
&lt;TD&gt;Brown&lt;/TD&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;1=Brown, 2=Blue,3=Green,4=Combo&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Eyes&lt;/TD&gt;
&lt;TD&gt;Blue&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;1=Brown, 2=Blue,3=Green,4=Combo&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;TD&gt;Different&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;5&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Eyes&lt;/TD&gt;
&lt;TD&gt;Green&lt;/TD&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;1=Brown, 2=Blue,3=Green,4=Combo&lt;/TD&gt;
&lt;TD&gt;Different&lt;/TD&gt;
&lt;TD&gt;Different&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;6&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Height&lt;/TD&gt;
&lt;TD&gt;Above&lt;/TD&gt;
&lt;TD&gt;6.2&lt;/TD&gt;
&lt;TD&gt;Feet&lt;/TD&gt;
&lt;TD&gt;Different&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;7&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Height&lt;/TD&gt;
&lt;TD&gt;Below&lt;/TD&gt;
&lt;TD&gt;5.7&lt;/TD&gt;
&lt;TD&gt;Feet&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;TD&gt;Different&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;8&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Height&lt;/TD&gt;
&lt;TD&gt;Average&lt;/TD&gt;
&lt;TD&gt;5.8&lt;/TD&gt;
&lt;TD&gt;Feet&lt;/TD&gt;
&lt;TD&gt;NA&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="4"&gt;I want to add these rows&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;9&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Hair&lt;/TD&gt;
&lt;TD&gt;None&lt;/TD&gt;
&lt;TD&gt;0&lt;/TD&gt;
&lt;TD&gt;Inches&lt;/TD&gt;
&lt;TD&gt;Different&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;10&lt;/TD&gt;
&lt;TD&gt;NK&lt;/TD&gt;
&lt;TD&gt;Eyes&lt;/TD&gt;
&lt;TD&gt;BlueGreen&lt;/TD&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;TD&gt;1=Brown, 2=Blue,3=Green&lt;/TD&gt;
&lt;TD&gt;Same&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;Different&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 20:35:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892629#M352561</guid>
      <dc:creator>geneshackman</dc:creator>
      <dc:date>2023-09-04T20:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892630#M352562</link>
      <description>&lt;P&gt;Please keep in mind, as I mentioned in my original post, there are about 30 columns, and so it seems not very efficient to list each column and what I want in each column. If the data had fewer columns that might work, but for data with many columns, listing the desired value in each column doesn't seem very useful.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 20:37:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892630#M352562</guid>
      <dc:creator>geneshackman</dc:creator>
      <dc:date>2023-09-04T20:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892636#M352567</link>
      <description>&lt;P&gt;If you want to share data then share it in a USABLE format.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example as a simple data step.&lt;/P&gt;
&lt;P&gt;So you seem to be saying you have a dataset that is something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  infile datalines dsd dlm='|' truncover;
  input RowNum Geography $ Group $ SubGroup $ Measure Footnote :$100. Parents :$10. PeerGroup :$10.;
datalines;
1|NK|Hair|Long|18|Inches|Same|Different
2|NK|Hair|Short|1|Inches|Different|Same
3|NK|Eyes|Brown|1|1=Brown, 2=Blue,3=Green,4=Combo|Same|Same
4|NK|Eyes|Blue|2|1=Brown, 2=Blue,3=Green,4=Combo|Same|Different
5|NK|Eyes|Green|3|1=Brown, 2=Blue,3=Green,4=Combo|Different|Different
6|NK|Height|Above|6.2|Feet|Different|Same
7|NK|Height|Below|5.7|Feet|Same|Different
8|NK|Height|Average|5.8|Feet|NA|Same
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And you want to make a new dataset that is something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
  if 0 then set have;
  infile datalines dsd dlm='|' truncover;
  input RowNum--PeerGroup;
datalines;
9|NK|Hair|None|0|Inches|Different|Same
10|NK|Eyes|BlueGreen|4|1=Brown, 2=Blue,3=Green|Same|Different
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;How are you supposed to derive those two extra rows?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I cannot think of any rule that can go from HAVE to NEW.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or did you just want to TYPE in the data like I did?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that case just append the two rows to the original.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc append base=have data=new ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or if you don't want to mess up your original dataset use a simple data step to make another dataset.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set have new;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 22:05:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892636#M352567</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-09-04T22:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892649#M352574</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31988"&gt;@geneshackman&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Interesting that two people say they won't open excel files. On the community support website for tableau, most people say they won't help you unless you include a tableau file they can download, along with data.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The general approach when asking for help from a community is to do as much work as possible to make it easy for people to help you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if you describe your data, that doesn't really help me help you.&amp;nbsp; Because if I want to try something, I have to create data myself to play with it. And I might guess wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you post data as text, it helps a little more, but not much. Because I have to write SAS code to read that text data into a SAS dataset, and after 25 years I'm still pretty bad at that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you post an actual SAS data step that creates a small amount of example data that illustrates your problem (does not need all 30 variables), that is helpful. Because I can just run the code you posted, and have data to start with.&lt;/P&gt;
&lt;P&gt;So basically you want to post an actual SAS data step, like Tom wrote for you, formatted as a code block.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For tableau folks sharing a tableau file might be the easiest way to share data.&amp;nbsp; But there have been so many excel / VBA viruses over the years, it's too risky to download Excel files from the internet.&amp;nbsp; Definitely for sharing a small amount of data with the SAS community, you want to share code to create that data.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 22:54:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892649#M352574</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2023-09-04T22:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892651#M352575</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31988"&gt;@geneshackman&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Interesting that two people say they won't open excel files. On the community support website for tableau, most people say they won't help you unless you include a tableau file they can download, along with data.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It wouldn't be a problem if you add a SAS file/table. It's about safety concerns with MS Office files like Excel and there are quite a few companies that block such downloads.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 23:26:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892651#M352575</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2023-09-04T23:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892653#M352577</link>
      <description>&lt;P&gt;Thanks for explaining, nicely.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 23:44:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892653#M352577</guid>
      <dc:creator>geneshackman</dc:creator>
      <dc:date>2023-09-04T23:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892654#M352578</link>
      <description>&lt;P&gt;Okay, never mind any more. I figured it out. I don't need any more responses.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 23:56:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892654#M352578</guid>
      <dc:creator>geneshackman</dc:creator>
      <dc:date>2023-09-04T23:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: adding row to data set, mostly duplicate but some different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892759#M352629</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31988"&gt;@geneshackman&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Interesting that two people say they won't open excel files. On the community support website for tableau, most people say they won't help you unless you include a tableau file they can download, along with data.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Different forum, different culture.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some of us belong to organizations with rules about accessing files. Some, like Excel, are notorious for a number of problems for security.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another, Excel is a crappy data interchange method. For one thing, it isn't possible to tell if a column should be treated as numeric or character data because columns in&amp;nbsp; Excel can, and entirely too often, do contain mixes of such. So we would have to clean up your example data, as to variable types as a minimum before doing anything. Not to mention getting usable variable names.&amp;nbsp; I've received Excel files with as many as 20 columns named "Total". I just love guessing total of what.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You haven't lived until you get to clean up data provided in Excel that started out as a "fillable PDF" form. &lt;span class="lia-unicode-emoji" title=":anxious_face_with_sweat:"&gt;😰&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 15:17:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adding-row-to-data-set-mostly-duplicate-but-some-different/m-p/892759#M352629</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-09-05T15:17:23Z</dc:date>
    </item>
  </channel>
</rss>

