<?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: Appending two datasets in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706650#M216891</link>
    <description>&lt;P&gt;Which file format was used to transfer the data to SAS?&lt;/P&gt;</description>
    <pubDate>Thu, 17 Dec 2020 15:11:50 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2020-12-17T15:11:50Z</dc:date>
    <item>
      <title>Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706649#M216890</link>
      <description>&lt;P&gt;I have one dataset (Arias_View1)that I exported from Arias (At Risk Identification Alerting System) with 26,328 records and a second exported Arias dataset (Arias_View2) with 91,060 records.&amp;nbsp; These datasets have the same number of columns and header names.&amp;nbsp; The only difference is in the first dataset (Arias_View1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These datasets need to be stacked vertically&amp;nbsp;&amp;nbsp; &amp;nbsp; with &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;U&gt; Arias_View1&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Arias View2&lt;/P&gt;
&lt;P&gt;So I ran this code&lt;/P&gt;
&lt;PRE&gt;Proc Sql noprint;
CREATE TABLE SASCDC_2.Arias_County_Race_Ethnicity AS
SELECT *
From SASCDC_2.ARIAS_View_1
OUTER UNION CORR
SELECT * 
FROM SASCDC_2.ARIAS_View_1;
quit;&lt;/PRE&gt;
&lt;P&gt;But the error read that field 6 in the first dataset (Arias_View1) is of different form that field 6 in second data set Arias_View2.&amp;nbsp; The field is DOB and in the first dataset and second dataset DOB is defined as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DOB is defined as NUM&amp;nbsp;&amp;nbsp; length 8&amp;nbsp; format&amp;nbsp; MMDDYY10.&amp;nbsp; and in the second (Arias_View2)&amp;nbsp; DOB is defined as text&amp;nbsp; length 19&amp;nbsp; format $19.&amp;nbsp; informat&amp;nbsp; $19.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To try and correct the problem I ran&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Data SASCDC_2.Arias_VIEW_2;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Set SASCDC_2.Arias_VIEW_2;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; dobchar = put(DOB, $10.);&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; drop DOB;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; rename dobchar = DOB;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;However, this creates a DOB variable that is Text with length 10.&lt;/P&gt;
&lt;P&gt;The SQL query with&amp;nbsp; Outer Union Corr &amp;nbsp; does not execute because it notes that DOB is different in VIew1 than in View2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I solve the DOB issue so that the Outer Union Corr runs successfully?&lt;/P&gt;
&lt;P&gt;Thank you for your assistance again in this problem.&lt;/P&gt;
&lt;P&gt;wlierman&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 15:05:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706649#M216890</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-12-17T15:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706650#M216891</link>
      <description>&lt;P&gt;Which file format was used to transfer the data to SAS?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 15:11:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706650#M216891</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-17T15:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706667#M216901</link>
      <description>&lt;P&gt;I export from the Arias platform (which is a Microsoft product that was developed for the contact tracing effort&lt;/P&gt;
&lt;P&gt;of the covid response and recovery) and there is the old limit of 100,000 records to export into excel (I think base excel takes well over a million now).&amp;nbsp; So I really don't know which file format was used - I think the numeric format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;wlierman&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 15:35:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706667#M216901</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-12-17T15:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706678#M216907</link>
      <description>&lt;P&gt;They will have to be the same data type. Did you also try proc append or data dsname; set ds1 ds2; run;?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 15:54:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706678#M216907</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2020-12-17T15:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706685#M216912</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/65907"&gt;@wlierman&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I export from the Arias platform (which is a Microsoft product that was developed for the contact tracing effort&lt;/P&gt;
&lt;P&gt;of the covid response and recovery) and there is the old limit of 100,000 records to export into excel (I think base excel takes well over a million now).&amp;nbsp; So I really don't know which file format was used - I think the numeric format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;wlierman&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do they have an option to export to CSV (which is NOT Excel) or to TXT (which might be tab delimited?).&lt;/P&gt;
&lt;P&gt;Excel is a lousy interchange platform because Excel is known to change some values when saving files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And in at least one contractor I deal with they will create "templates" for writing out data that are either very poorly designed, corrupted or mangled by programmers such that I get values that are supposed to be "Annual income in dollars" that in the exported Excel file are formatted as Dates, personal identifiers and dates that are formatted as currency. Guess what happens when importing any of that into SAS? The incorrect type is used. So I have to manually change the columns in the spreadsheet to correct type before reading the data into SAS. (Which I do by saving to CSV and reading with a data step to help trap the other garbage they put in the files)&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 16:03:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706685#M216912</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-17T16:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706692#M216913</link>
      <description>&lt;P&gt;What is the extension of the files you imported into SAS? Can they be viewed with a text editor (e.g. Windows Editor)? If yes, copy/paste a few lines (including the header) into a box opened with this button:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg"&gt;&lt;img src="https://communities.sas.com/skins/images/2FD96521DCF95C42FE57BF2A7CB72678/responsive_peak/images/image_not_found.png" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;so we can show you a step that reads this data with consistent structure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do you run SAS? University Edition, On Demand for Academics, locally installed on your PC, or client/server with either Enterprise Guide or SAS Studio?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 16:17:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706692#M216913</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-17T16:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706695#M216915</link>
      <description>Hello,&lt;BR /&gt;Unfortunately, Microsoft provided just the bare bones - export to excel with the xlsx extension no CSV or txt.&amp;nbsp; Arias still has bugs to work out and occasionally Power BI which is in the Microsoft stable.&lt;BR /&gt;wlierman&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Dec 2020 16:28:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706695#M216915</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-12-17T16:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706696#M216916</link>
      <description>No I didn't use proc append. I considered it but Proc sql looked more straight forward.&lt;BR /&gt;How would the append coding look?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Dec 2020 16:34:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706696#M216916</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-12-17T16:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706701#M216920</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/65907"&gt;@wlierman&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hello,&lt;BR /&gt;Unfortunately, Microsoft provided just the bare bones - export to excel with the xlsx extension no CSV or txt.&amp;nbsp; Arias still has bugs to work out and occasionally Power BI which is in the Microsoft stable.&lt;BR /&gt;wlierman&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Understand. My limited experience with Power(less) BI has so far not been very encouraging and less so with stuff built on top of it. But that may be the result of low-bid government contractors...&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 16:43:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706701#M216920</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-17T16:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706713#M216926</link>
      <description>Microsoft has its hands in a lot of different areas. Now I read that Guido von Rossum (Python developer) is working with MS.&lt;BR /&gt;What puzzles me on splitting the data and exporting as xlsx files into SAS is why does DOB come across as both numeric in part and text in the other part?&lt;BR /&gt;Is there a method that reads the two pieces (or more) consistently?&amp;nbsp; I am also concerned that I may lose observations.&lt;BR /&gt;Thank you.&lt;BR /&gt;wlierman&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Dec 2020 17:04:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706713#M216926</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-12-17T17:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706714#M216927</link>
      <description>&lt;P&gt;You can do this but the problematic variable will have to be converted. it has to be the same type in both datasets or it throws errors. Either convert both to character or both to numeric.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set view1 view2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc append do something like:&lt;/P&gt;&lt;P&gt;proc append base=view1 data=view2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 17:05:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706714#M216927</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2020-12-17T17:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706715#M216928</link>
      <description>&lt;P&gt;Then you will have to fix the Excel imports, so that the column attributes (and contents) match. Convert the strings to dates.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 17:05:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706715#M216928</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-17T17:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706716#M216929</link>
      <description>&lt;P&gt;You could open all Excel files with Excel and save as csv, which you then read with a data step.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 17:09:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706716#M216929</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-17T17:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706717#M216930</link>
      <description>I will try that and let you know.&amp;nbsp; Thanks.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Dec 2020 17:09:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706717#M216930</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-12-17T17:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706741#M216942</link>
      <description>&lt;P&gt;Here is the notepad excerpt.&amp;nbsp; There is a word wrap here&lt;/P&gt;
&lt;PRE&gt;Last Name	First Name	DOB	Monitoring Status	Status	Address 1	City	County	Preferred Method of Contact
Cruz Nunez	Samuel	5/16/1992	Completed Monitoring	Inactive	"33685 NW Vadis Rd #13
Cornelius, OR 97113"	Cornelius	Washington	Phone
Cruz Nunez	Saul	1/29/1997	Completed Monitoring	Inactive	"33685 NW Vadis Rd #13
Cornelius, OR 97113"	Cornelius	Washington	Phone
Cruz Nunez	Armando	12/4/1988	Completed Monitoring	Inactive	"33685 NW Vadis Rd #13
Cornelius, OR 97113"	Cornelius	Washington	Phone
Garcia Zamora	Teresa	10/1/1992	Completed Monitoring	Inactive	"33685 NW Vadis Rd #13
Cornelius, OR 97113"	Cornelius	Washington	Phone
Garcia	Humberto	7/20/1994	Completed Monitoring	Inactive	"33685 NW Vadis Rd #13
Cornelius, OR 97113"	Cornelius	Washington	Phone
Garcia Carrada	Celso	4/6/1988	Completed Monitoring	Inactive	"33685 NW Vadis Rd #13
Cornelius, OR 97113"	Cornelius	Washington	Phone
Nunez Reyes	Bernardina	5/20/1977	Completed Monitoring	Inactive	"33685 NW Vadis Rd #13
Cornelius, OR 97113"	Cornelius	Washington	Phone
Estrada Dolores	Yessica	3/29/1990	Completed Monitoring	Inactive	"33685 NW Vadis Rd #17
Cornelius, OR 97113"	Cornelius	Washington	Phone
Garcia Zamora	Teresa	10/1/1992	Completed Monitoring	Inactive	"33685 NW Vadis Rd #13
Cornelius, OR 97113"	Cornelius	Washington	Phone
&lt;/PRE&gt;
&lt;P&gt;If you can help solve the problem of how to get the DOB format consistent between the two pieces Arias_view1 and rias_view2 it will be much appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;wlierman&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 18:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706741#M216942</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-12-17T18:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706746#M216946</link>
      <description>&lt;P&gt;What is the desired format of DOB? You will have to use the conversion functions, either input or put to convert it to the same type. Once you do that you should be able to concatenate your datasets.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 18:51:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706746#M216946</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2020-12-17T18:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706750#M216947</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Please try this. First convert DOB to mmddyy10 in view2 then stack it together with view1 in a data step.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data view2(drop=tempvar);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set SASCDC_2.Arias_VIEW_2(rename=(dob=tempvar));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;dob = input(tempvar, mmddyy10.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set&amp;nbsp;&lt;STRONG&gt;SASCDC_2.Arias_VIEW_1 view2;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 18:58:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706750#M216947</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2020-12-17T18:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Appending two datasets</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706761#M216957</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your coding worked in that the two datasets stacked vertically and the DOB - numeric and text - issue has been solved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to recommend your method as a Solution but don't see where I can - because I had already designated a solution but your answer is complete.&amp;nbsp; I will indicate that this is a Solution, if you could direct me to how to do so.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you again for this help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;wlierman&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 19:15:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Appending-two-datasets/m-p/706761#M216957</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-12-17T19:15:52Z</dc:date>
    </item>
  </channel>
</rss>

