<?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: error 72-185 for year and month function in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447308#M112335</link>
    <description>maybe I am not clear enough,I test your code and get a wrong answer..still thank you for your help and advice..</description>
    <pubDate>Wed, 21 Mar 2018 03:20:23 GMT</pubDate>
    <dc:creator>Geo-</dc:creator>
    <dc:date>2018-03-21T03:20:23Z</dc:date>
    <item>
      <title>error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447288#M112316</link>
      <description>&lt;P&gt;I want to make a variable flag,if the max(date) of three tables— A,B,C&amp;nbsp; are same then let flag=1 else let flag=0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;select max(date) into:date01 from tableA;&lt;/P&gt;&lt;P&gt;select max(date) into:date02 from tableB;&lt;/P&gt;&lt;P&gt;select max(date) into:date03 from tableC;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%put &amp;amp;date01@@&amp;amp;date02@@&amp;amp;date03;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the result:&lt;/P&gt;&lt;P&gt;28FEB2018@@28FEB2018@@31JAN2018&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I am using codes below to set vaule for variable flag,it returns error 72-185 for year and month function,and error22-322 for syntax wrong.why and how should I fix?&lt;BR /&gt;data _null_;&lt;/P&gt;&lt;P&gt;%global flag;&lt;/P&gt;&lt;P&gt;&amp;nbsp;if year(&amp;amp;date01)=year(&amp;amp;date02)=year(&amp;amp;date03)=year(today())&lt;/P&gt;&lt;P&gt;&amp;nbsp;and month(&amp;amp;date01)=month(&amp;amp;date02)=month(&amp;amp;date03)=month(today())&lt;/P&gt;&lt;P&gt;&amp;nbsp;then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let flag=1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let flag=0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 01:14:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447288#M112316</guid>
      <dc:creator>Geo-</dc:creator>
      <dc:date>2018-03-21T01:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447289#M112317</link>
      <description>&lt;P&gt;&lt;SPAN&gt;and I am using codes below to set vaule for variable flag,it returns error 72-185 for year and month function,and error22-322 for syntax wrong.why and how should I fix?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It's wrong because it's invalid syntax:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Assuming literal find/replace:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;if year(&amp;amp;date01)=year(&amp;amp;date02)=year(&amp;amp;date03)=year(today())&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Becomes:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;if year(&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;28FEB2018&lt;/STRONG&gt;&lt;/FONT&gt;)=year(&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;28FEB2018&lt;/FONT&gt;&lt;/STRONG&gt;)=year(&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;31JAN2018&lt;/FONT&gt;&lt;/STRONG&gt;)=year(today())&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is invalid because you specify dates in SAS as a date literal: "date"&lt;STRONG&gt;d&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using something like below will work instead:&lt;/P&gt;
&lt;P&gt;if year("&amp;amp;date01"d)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184018"&gt;@Geo-&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I want to make a variable flag,if the max(date) of three tables— A,B,C&amp;nbsp; are same then let flag=1 else let flag=0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql noprint;&lt;/P&gt;
&lt;P&gt;select max(date) into:date01 from tableA;&lt;/P&gt;
&lt;P&gt;select max(date) into:date02 from tableB;&lt;/P&gt;
&lt;P&gt;select max(date) into:date03 from tableC;&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%put &amp;amp;date01@@&amp;amp;date02@@&amp;amp;date03;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I got the result:&lt;/P&gt;
&lt;P&gt;28FEB2018@@28FEB2018@@31JAN2018&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and I am using codes below to set vaule for variable flag,it returns error 72-185 for year and month function,and error22-322 for syntax wrong.why and how should I fix?&lt;BR /&gt;data _null_;&lt;/P&gt;
&lt;P&gt;%global flag;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;if year(&amp;amp;date01)=year(&amp;amp;date02)=year(&amp;amp;date03)=year(today())&lt;/P&gt;
&lt;P&gt;&amp;nbsp;and month(&amp;amp;date01)=month(&amp;amp;date02)=month(&amp;amp;date03)=month(today())&lt;/P&gt;
&lt;P&gt;&amp;nbsp;then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let flag=1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;else&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let flag=0;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 01:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447289#M112317</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-03-21T01:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447290#M112318</link>
      <description>&lt;P&gt;Even if you fix the syntax as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;suggested, your program will not work.&amp;nbsp; A DATA step is not able to execute a %LET statement.&amp;nbsp; Where your program reads:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let flag = 1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can get the DATA step to create a macro variable named FLAG by switching to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;call symput('flag', '1');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course, the same applies to assigning FLAG a value of 0.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 01:37:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447290#M112318</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-03-21T01:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447291#M112319</link>
      <description>thanks..%put year(today());&lt;BR /&gt;return :year(today())&lt;BR /&gt;how to deal with this?to extract the year of today..</description>
      <pubDate>Wed, 21 Mar 2018 01:41:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447291#M112319</guid>
      <dc:creator>Geo-</dc:creator>
      <dc:date>2018-03-21T01:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447292#M112320</link>
      <description>thank you for your advice,would you please write the exact codes..much appreciated.&lt;BR /&gt;&lt;BR /&gt;and using %put year(today());&lt;BR /&gt;return :year(today())&lt;BR /&gt;how to deal with this?to extract the year of today..</description>
      <pubDate>Wed, 21 Mar 2018 01:44:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447292#M112320</guid>
      <dc:creator>Geo-</dc:creator>
      <dc:date>2018-03-21T01:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447293#M112321</link>
      <description>&lt;P&gt;Do you want all three dates to be equal, or do you want just the year and month to be equal regardless of the day?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 02:04:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447293#M112321</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-03-21T02:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447294#M112322</link>
      <description>I want three dates' year and today's year equal,like:&lt;BR /&gt;year(&amp;amp;date01)=year(&amp;amp;date02)=year(&amp;amp;date03)=year(today())&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Mar 2018 02:08:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447294#M112322</guid>
      <dc:creator>Geo-</dc:creator>
      <dc:date>2018-03-21T02:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447295#M112323</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184018"&gt;@Geo-&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;It appears that you only want to compare year and month but not day. In order to do so just align your dates to the beginning of the month (using the intnx() function) as then you can just compare exact dates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below a code sample for how this could work.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tblA tblB tblC;
  dt=date(); output;
  dt=dt-1; output;
  stop;
run;

%let flg=;
proc sql noprint;
  select 
    case
      when a.mdt=b.mdt and a.mdt=c.mdt then '1'
      else '0'
      end
    into :flg
  from
    (select intnx('month',max(dt),0,'b') as mdt from tblA) as a,
    (select intnx('month',max(dt),0,'b') as mdt from tblB) as b,
    (select intnx('month',max(dt),0,'b') as mdt from tblC) as c
  ;
quit;
%put &amp;amp;=flg;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Mar 2018 02:15:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447295#M112323</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-03-21T02:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447297#M112325</link>
      <description>&lt;P&gt;None of that requires a DATA step.&amp;nbsp; It does require a macro definition to be able to use %IF %THEN:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%if %substr(&amp;amp;date01, 6) = %substr(&amp;amp;date02, 6)&lt;/P&gt;
&lt;P&gt;and %substr(&amp;amp;date01, 6) = %substr(&amp;amp;date03, 6)&lt;/P&gt;
&lt;P&gt;and %substr(&amp;amp;date01, 6) = %substr(&amp;amp;sysdate9, 6) %then %let flag=1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you actually want to compare both the year and the month, change 6 to 3 within all the %SUBSTR functions.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 02:21:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447297#M112325</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-03-21T02:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447301#M112329</link>
      <description>would you please use my code to finish a syntax right version..?</description>
      <pubDate>Wed, 21 Mar 2018 02:30:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447301#M112329</guid>
      <dc:creator>Geo-</dc:creator>
      <dc:date>2018-03-21T02:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447304#M112331</link>
      <description>would you please use my code to finish a syntax right version..?</description>
      <pubDate>Wed, 21 Mar 2018 02:33:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447304#M112331</guid>
      <dc:creator>Geo-</dc:creator>
      <dc:date>2018-03-21T02:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447305#M112332</link>
      <description>&lt;P&gt;Within a DATA step:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if substr("&amp;amp;date01", 6) = substr("&amp;amp;date02", 6) = substr("&amp;amp;date03", 6) = substr("&amp;amp;sysdate9", 6) then call symput('flag', '1');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Don't make it harder than it has to be.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 02:41:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447305#M112332</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-03-21T02:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447307#M112334</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184018"&gt;@Geo-&lt;/a&gt; wrote:&lt;BR /&gt;would you please use my code to finish a syntax right version..?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184018"&gt;@Geo-&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;The code I've posted implements the logic you're after based on your initial post.&lt;/P&gt;
&lt;P&gt;If you're looking for a developer working for you then start offering payment!&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 03:13:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447307#M112334</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-03-21T03:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447308#M112335</link>
      <description>maybe I am not clear enough,I test your code and get a wrong answer..still thank you for your help and advice..</description>
      <pubDate>Wed, 21 Mar 2018 03:20:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447308#M112335</guid>
      <dc:creator>Geo-</dc:creator>
      <dc:date>2018-03-21T03:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447334#M112355</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184018"&gt;@Geo-&lt;/a&gt; wrote:&lt;BR /&gt;maybe I am not clear enough,I test your code and get a wrong answer..still thank you for your help and advice..&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184018"&gt;@Geo-&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Your initial requirement was: "I want to make a variable flag,if the max(date) of three tables— A,B,C are same then let flag=1 else let flag=0"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code I've posted using the sample data I've posted does exactly that. If the sample data is not representative for your real case then you should post sample data (data steps creating such data), describe the logic you need and then show us the desired result.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 06:44:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447334#M112355</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-03-21T06:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: error 72-185 for year and month function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447363#M112366</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184018"&gt;@Geo-&lt;/a&gt; wrote:&lt;BR /&gt;thanks..%put year(today());&lt;BR /&gt;return :year(today())&lt;BR /&gt;how to deal with this?to extract the year of today..&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;To use data step functions in macro statements, you need the &lt;A href="http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#z3514sysfunc.htm" target="_blank"&gt;%sysfunc&lt;/A&gt;&amp;nbsp;macro function.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 10:35:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-72-185-for-year-and-month-function/m-p/447363#M112366</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-21T10:35:20Z</dc:date>
    </item>
  </channel>
</rss>

