<?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>NickK Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>NickK Tracker</description>
    <pubDate>Tue, 10 Mar 2026 06:24:41 GMT</pubDate>
    <dc:date>2026-03-10T06:24:41Z</dc:date>
    <item>
      <title>Re: Filter on N digits</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filter-on-N-digits/m-p/729440#M226987</link>
      <description>There's no leading 0s or blanks in this case.</description>
      <pubDate>Fri, 26 Mar 2021 16:25:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filter-on-N-digits/m-p/729440#M226987</guid>
      <dc:creator>NickK</dc:creator>
      <dc:date>2021-03-26T16:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on N digits</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filter-on-N-digits/m-p/729398#M226964</link>
      <description>&lt;P&gt;So now the question is if the variable is character, how do I filter on that?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 14:40:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filter-on-N-digits/m-p/729398#M226964</guid>
      <dc:creator>NickK</dc:creator>
      <dc:date>2021-03-26T14:40:45Z</dc:date>
    </item>
    <item>
      <title>Filter on N digits</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filter-on-N-digits/m-p/729392#M226960</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a numeric variable that is 6 numbers in length. I'd like to use SQL to only keep the numbers that are 3 digits long. So, for example, I would keep 123 but not 1234 or 12345 or 123456.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 14:24:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filter-on-N-digits/m-p/729392#M226960</guid>
      <dc:creator>NickK</dc:creator>
      <dc:date>2021-03-26T14:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Code to identify platform</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Code-to-identify-platform/m-p/729383#M226954</link>
      <description>Some users prefer to use EG, some base SAS. I have a script that send program info to an SQL database. The code works in EG but not in Base SAS</description>
      <pubDate>Fri, 26 Mar 2021 14:05:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Code-to-identify-platform/m-p/729383#M226954</guid>
      <dc:creator>NickK</dc:creator>
      <dc:date>2021-03-26T14:05:11Z</dc:date>
    </item>
    <item>
      <title>Code to identify platform</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Code-to-identify-platform/m-p/711183#M219028</link>
      <description>&lt;P&gt;Is there code that SAS can use to identify whether it's being run on SAS EG or Base SAS.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically, I want to create an condition that says if the user is using Base SAS then run "Code A'. If the user is running SAS EG then run "Code B"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 16:31:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Code-to-identify-platform/m-p/711183#M219028</guid>
      <dc:creator>NickK</dc:creator>
      <dc:date>2021-01-13T16:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting and converting dates in strings to new date string</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Extracting-and-converting-dates-in-strings-to-new-date-string/m-p/618627#M19251</link>
      <description>Thanks. Works perfectly.</description>
      <pubDate>Mon, 20 Jan 2020 17:50:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Extracting-and-converting-dates-in-strings-to-new-date-string/m-p/618627#M19251</guid>
      <dc:creator>NickK</dc:creator>
      <dc:date>2020-01-20T17:50:39Z</dc:date>
    </item>
    <item>
      <title>Extracting and converting dates in strings to new date string</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Extracting-and-converting-dates-in-strings-to-new-date-string/m-p/618602#M19244</link>
      <description>&lt;P&gt;I have some code which works to extract the Last Modified date from an excel file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt; last_mod_date;&lt;/P&gt;&lt;P&gt;&amp;nbsp; rc = filename("onefile","F:\test.xlsx");&lt;/P&gt;&lt;P&gt;&amp;nbsp; fid=fopen("onefile"); /*fid is the file-id*/&lt;/P&gt;&lt;P&gt;&amp;nbsp; Mod_Date=finfo(fid,'Last Modified');&lt;/P&gt;&lt;P&gt;&amp;nbsp; rc = fclose(fid);&lt;/P&gt;&lt;P&gt;&amp;nbsp; rc = filename("onefile");&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data is stored as at 200 character length as the following&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;January 14, 2020 12:25:02&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I want to take the above and convert it to the following string&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;YYYYMMDD_HHMM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried several difference methods to try and extract the month/day/year/hours/minutes individually but none of them seem to work. Any ideas?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Note; I need this to work for any string date I extract (dates will be after January 1, 2020 if that helps)&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 16:39:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Extracting-and-converting-dates-in-strings-to-new-date-string/m-p/618602#M19244</guid>
      <dc:creator>NickK</dc:creator>
      <dc:date>2020-01-20T16:39:46Z</dc:date>
    </item>
  </channel>
</rss>

