<?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: Intck Function - Log WINDOW FULL message in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388013#M93070</link>
    <description>&lt;P&gt;You PUT statement generates one line of output in the log for every record in your data set. If you are testing code I suggest using an option to only put a few values, possibly using a smaller test set or the data set option obs=.&lt;/P&gt;
&lt;P&gt;Or remove the PUT.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Aug 2017 22:43:13 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2017-08-14T22:43:13Z</dc:date>
    <item>
      <title>Intck Function - Log WINDOW FULL message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388007#M93067</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to calculate age using intck function and am getting &lt;STRONG&gt;"Log Window Full"&lt;/STRONG&gt; pop up message (multiple times) during the &amp;nbsp;run, any insights what am I doing wrong here. The date formats are ddmmyy10.&amp;nbsp;&lt;/P&gt;&lt;P&gt;data test2&amp;nbsp;&lt;BR /&gt;set test1;&lt;BR /&gt;AgeR = intck('day',date1, date2);&lt;BR /&gt;put AgeR;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 22:32:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388007#M93067</guid>
      <dc:creator>AZIQ1</dc:creator>
      <dc:date>2017-08-14T22:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Intck Function - Log WINDOW FULL message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388013#M93070</link>
      <description>&lt;P&gt;You PUT statement generates one line of output in the log for every record in your data set. If you are testing code I suggest using an option to only put a few values, possibly using a smaller test set or the data set option obs=.&lt;/P&gt;
&lt;P&gt;Or remove the PUT.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 22:43:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388013#M93070</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-14T22:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Intck Function - Log WINDOW FULL message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388017#M93071</link>
      <description>&lt;P&gt;Secondarily (not affecting your original question), you don't need INTCK to calculate the number of days between two dates. &amp;nbsp;Sufficient:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AgeR = date2 - date1;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 22:52:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388017#M93071</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-08-14T22:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Intck Function - Log WINDOW FULL message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388018#M93072</link>
      <description>This simple formula is not working somehow, do I need to change the format?</description>
      <pubDate>Mon, 14 Aug 2017 23:05:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388018#M93072</guid>
      <dc:creator>AZIQ1</dc:creator>
      <dc:date>2017-08-14T23:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Intck Function - Log WINDOW FULL message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388024#M93073</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/23718"&gt;@AZIQ1&lt;/a&gt; wrote:&lt;BR /&gt;This simple formula is not working somehow, do I need to change the format?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Provide more details.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 23:40:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388024#M93073</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-14T23:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Intck Function - Log WINDOW FULL message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388134#M93094</link>
      <description>&lt;PRE&gt;
options error=0;
data test2;
 ............


&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Aug 2017 13:24:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Intck-Function-Log-WINDOW-FULL-message/m-p/388134#M93094</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-08-15T13:24:38Z</dc:date>
    </item>
  </channel>
</rss>

