<?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: data type conversion in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/data-type-conversion/m-p/717205#M221769</link>
    <description>Thank you. worked very well.</description>
    <pubDate>Fri, 05 Feb 2021 20:43:52 GMT</pubDate>
    <dc:creator>SASAna</dc:creator>
    <dc:date>2021-02-05T20:43:52Z</dc:date>
    <item>
      <title>data type conversion</title>
      <link>https://communities.sas.com/t5/SAS-Programming/data-type-conversion/m-p/717195#M221766</link>
      <description>&lt;P&gt;Hi SAS users,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS dataset1 has&amp;nbsp; &amp;nbsp;a field&amp;nbsp; clm_date&amp;nbsp; &amp;nbsp;with&amp;nbsp; num 8 mmddyy10. format&amp;nbsp; ( data&amp;nbsp; Ex :&amp;nbsp;11/20/2019 )&lt;/P&gt;
&lt;P&gt;SAS dataset1 has&amp;nbsp; &amp;nbsp;a field&amp;nbsp; claim_FDOS with char10&amp;nbsp; $10 format. (data EX :&amp;nbsp;11/20/2019 )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need help to merge these 2 datasets&amp;nbsp; &amp;nbsp;by clm_date = claim_FDOS. How to convert the data type and merge them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Ana&amp;nbsp;&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;</description>
      <pubDate>Fri, 05 Feb 2021 20:10:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/data-type-conversion/m-p/717195#M221766</guid>
      <dc:creator>SASAna</dc:creator>
      <dc:date>2021-02-05T20:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: data type conversion</title>
      <link>https://communities.sas.com/t5/SAS-Programming/data-type-conversion/m-p/717203#M221768</link>
      <description>&lt;P&gt;Convert the character using an input:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;
    set have;
    newvar=input(claim_fdos,mmddyy10.);
    format newvar mmddyy10.;
run;&lt;/PRE&gt;
&lt;P&gt;You need to provide a few more details on what you mean by "merge". &lt;BR /&gt;Best is to provide small examples of both sets AND what the desired result would be.&lt;/P&gt;
&lt;P&gt;Typically merging by dates means that there are also other identification items involved because the same date can be associated with many people/activities/claims or what not.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 20:26:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/data-type-conversion/m-p/717203#M221768</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-02-05T20:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: data type conversion</title>
      <link>https://communities.sas.com/t5/SAS-Programming/data-type-conversion/m-p/717205#M221769</link>
      <description>Thank you. worked very well.</description>
      <pubDate>Fri, 05 Feb 2021 20:43:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/data-type-conversion/m-p/717205#M221769</guid>
      <dc:creator>SASAna</dc:creator>
      <dc:date>2021-02-05T20:43:52Z</dc:date>
    </item>
  </channel>
</rss>

