<?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 Report with 1000 days from now in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982698#M43632</link>
    <description>&lt;P&gt;Generate a report for a 15-day period starting exactly 1,000 days before today. The report title should include the start date (Day 1) and end date (Day 15) of this period.&lt;BR /&gt;&lt;BR /&gt;Expected output:&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rahulpatil6886_0-1769737014634.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/112890i28CE3C19C9710AEC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rahulpatil6886_0-1769737014634.png" alt="rahulpatil6886_0-1769737014634.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Jan 2026 11:22:53 GMT</pubDate>
    <dc:creator>rahulpatil6886</dc:creator>
    <dc:date>2026-01-30T11:22:53Z</dc:date>
    <item>
      <title>Report with 1000 days from now</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982698#M43632</link>
      <description>&lt;P&gt;Generate a report for a 15-day period starting exactly 1,000 days before today. The report title should include the start date (Day 1) and end date (Day 15) of this period.&lt;BR /&gt;&lt;BR /&gt;Expected output:&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rahulpatil6886_0-1769737014634.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/112890i28CE3C19C9710AEC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rahulpatil6886_0-1769737014634.png" alt="rahulpatil6886_0-1769737014634.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jan 2026 11:22:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982698#M43632</guid>
      <dc:creator>rahulpatil6886</dc:creator>
      <dc:date>2026-01-30T11:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem 1</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982701#M43633</link>
      <description>&lt;P&gt;Show what you have already tried and where your problems are. Note: SAS date values are counts of days, so the 1000-day and 15-day intervals are simple to build.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jan 2026 06:23:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982701#M43633</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2026-01-30T06:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem 1</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982709#M43634</link>
      <description>&lt;P&gt;Once you get these start and end date like the following, that would be very easy thing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data start_end;
do start=date()-1000 to date() by 15;
 end=start+14;
 output;
end;
format start end date9.;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Jan 2026 08:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982709#M43634</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-01-30T08:32:33Z</dc:date>
    </item>
    <item>
      <title>Better Subject Line Needed</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982718#M43635</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/472388"&gt;@rahulpatil6886&lt;/a&gt;&amp;nbsp;Please go back to your original post and modify the subject line to briefly describe the problem. When you use a subject line like "Problem 1", no one knows if this is a problem they will be interested in or not.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jan 2026 11:22:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982718#M43635</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2026-01-30T11:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: Report with 1000 days from now</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982721#M43636</link>
      <description>&lt;P&gt;Not sure if you're asking about how to generate the title, or the WHERE statement for filtering your data.&amp;nbsp; Can you show an example of the code you have tried?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would likely use the macro variables to store the start and end of the interval.&amp;nbsp; You could calculate those like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let start= %sysfunc(intnx(day,%sysfunc(today()),-1000),date9) ;
%let end=   %sysfunc(intnx(day,%sysfunc(today()),-1000+15),date9) ;
%put &amp;amp;=start &amp;amp;=end ;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jan 2026 13:51:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Report-with-1000-days-from-now/m-p/982721#M43636</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2026-01-30T13:51:54Z</dc:date>
    </item>
  </channel>
</rss>

