<?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: Do while time() &amp;lt; '21:40:00't in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Do-while-time-lt-21-40-00-t/m-p/841292#M332647</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro doeveryminute ;
  %do %while (  %sysevalf(%sysfunc(time())&amp;lt;'21:40:00't,boolean)  ) ;

%put  MY CODE.....;

  %end ;
%mend ;

%doeveryminute&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 28 Oct 2022 11:34:59 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2022-10-28T11:34:59Z</dc:date>
    <item>
      <title>Do while time() &lt; '21:40:00't</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-while-time-lt-21-40-00-t/m-p/841247#M332626</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I would like to get SAS running job while time() &amp;lt;&amp;nbsp;'21:40:00't .&lt;/P&gt;
&lt;P&gt;Can you please help to fix it?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;HHC&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro doeveryminute() ;

  %*beware the infinite loop ;
  %do %while ( time() &amp;lt; '21:40:00't) ;

  MY CODE.....

  %end ;

%mend ;

%doeveryminute();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 01:45:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-while-time-lt-21-40-00-t/m-p/841247#M332626</guid>
      <dc:creator>hhchenfx</dc:creator>
      <dc:date>2022-10-28T01:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Do while time() &lt; '21:40:00't</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-while-time-lt-21-40-00-t/m-p/841248#M332627</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro do_while_time;
  %do %while (%sysfunc(time(),time8.0) LE 23:25:29);
    *code here **;
  %end;
%mend;
%do_while_time&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Macro is a TEXT language, so you can't use the time-literal notation&amp;nbsp; ('23:25:59't).&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 03:27:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-while-time-lt-21-40-00-t/m-p/841248#M332627</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-10-28T03:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Do while time() &lt; '21:40:00't</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-while-time-lt-21-40-00-t/m-p/841292#M332647</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro doeveryminute ;
  %do %while (  %sysevalf(%sysfunc(time())&amp;lt;'21:40:00't,boolean)  ) ;

%put  MY CODE.....;

  %end ;
%mend ;

%doeveryminute&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Oct 2022 11:34:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-while-time-lt-21-40-00-t/m-p/841292#M332647</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-10-28T11:34:59Z</dc:date>
    </item>
  </channel>
</rss>

