<?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>HenryFeldman Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>HenryFeldman Tracker</description>
    <pubDate>Sun, 10 May 2026 23:43:21 GMT</pubDate>
    <dc:date>2026-05-10T23:43:21Z</dc:date>
    <item>
      <title>Re: write to excel without need for named range</title>
      <link>https://communities.sas.com/t5/SASware-Ballot-Ideas/write-to-excel-without-need-for-named-range/idc-p/439749#M2953</link>
      <description>Correct, the code currently doesn't support inserting cells into an existing sheet.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Feb 2018 16:11:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SASware-Ballot-Ideas/write-to-excel-without-need-for-named-range/idc-p/439749#M2953</guid>
      <dc:creator>HenryFeldman</dc:creator>
      <dc:date>2018-02-23T16:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: write to excel without need for named range</title>
      <link>https://communities.sas.com/t5/SASware-Ballot-Ideas/write-to-excel-without-need-for-named-range/idc-p/439724#M2949</link>
      <description>&lt;P&gt;The XLSX export code builds a range with the same name as the sheet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You want to specify the name?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Henry&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2018 14:49:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SASware-Ballot-Ideas/write-to-excel-without-need-for-named-range/idc-p/439724#M2949</guid>
      <dc:creator>HenryFeldman</dc:creator>
      <dc:date>2018-02-23T14:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-date/m-p/161116#M31340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The 39813 is the underlying value in excel spreadsheet cell.&amp;nbsp;&amp;nbsp; (Try entering a date value and then changing the format to number.)&amp;nbsp; It is the number of days since 1/1/1900.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2015 17:15:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-date/m-p/161116#M31340</guid>
      <dc:creator>HenryFeldman</dc:creator>
      <dc:date>2015-02-11T17:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-date/m-p/161114#M31338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yup 1960.&amp;nbsp;&amp;nbsp; But the correction factor is right.&amp;nbsp;&amp;nbsp; about 60 * 365&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2015 17:09:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-date/m-p/161114#M31338</guid>
      <dc:creator>HenryFeldman</dc:creator>
      <dc:date>2015-02-11T17:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-date/m-p/161112#M31336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the proc import dbms=xls code looks at the indvidual cell contents.&amp;nbsp; If a column has both numeric and character cells then it will be a character field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excel is # of days since 1/1/1900.&amp;nbsp;&amp;nbsp; SAS is # of days since 1/1/1970.&amp;nbsp;&amp;nbsp; So if you convert the character string to a numeric and apply a date format, the number will be 70 years in the future.&amp;nbsp; The following equation needs to be applied to each date variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; numdate = input(chardate,best.) - 21915;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(BTW, if your dates still 4 years in the past, then the spreadsheet has a 1904 base date and you'll need to ADD back in 1462.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my entire test program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; chardate = "39000";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; numdate = input(chardate,best.) - 21915;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format numdate date.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; put numdate;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that is helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Henry&lt;/P&gt;&lt;P&gt;(developer of the sas/acccess for pc files&amp;nbsp; dbms=xls code)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2015 15:51:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-date/m-p/161112#M31336</guid>
      <dc:creator>HenryFeldman</dc:creator>
      <dc:date>2015-02-10T15:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-date/m-p/161109#M31333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are you reading in the excel spreadsheet? The code that reads spreadsheets scans the column to determine the field type.&amp;nbsp; The implication is that it is seeing mixed numeric (formatted as dates) and character data.&amp;nbsp; The 39000 number is the number of days since 1/1/1900.&amp;nbsp; If you don't have many fields , I can give you an equation to get that Ito a SAS date. Henry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2015 15:12:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-date/m-p/161109#M31333</guid>
      <dc:creator>HenryFeldman</dc:creator>
      <dc:date>2015-02-10T15:12:44Z</dc:date>
    </item>
  </channel>
</rss>

